diff options
author | Ingela Anderton Andin <[email protected]> | 2016-11-17 11:36:14 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-11-18 10:21:06 +0100 |
commit | cd8eea1ef091b9268eae2e19a85c72cab25129f5 (patch) | |
tree | 6a384a4ff666bd16a3a9d25a14b911ff0437c561 /lib | |
parent | 67d73aaab491792359959b48935213b530146811 (diff) | |
download | otp-cd8eea1ef091b9268eae2e19a85c72cab25129f5.tar.gz otp-cd8eea1ef091b9268eae2e19a85c72cab25129f5.tar.bz2 otp-cd8eea1ef091b9268eae2e19a85c72cab25129f5.zip |
odbc: Remove support for old MACs
Change configure to skip odbc for old MACs, the change in
PR-1227 is not backwards compatible with old MACs, and we do not
see a need to continue support for such old versions. However
it is still possible to make it work on such machines using
the --with-odbc configure option.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/odbc/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/odbc/configure.in b/lib/odbc/configure.in index 4deda13c8b..2dec6e5abf 100644 --- a/lib/odbc/configure.in +++ b/lib/odbc/configure.in @@ -146,8 +146,8 @@ AC_SUBST(THR_LIBS) odbc_lib_link_success=no AC_SUBST(TARGET_FLAGS) - case $host_os in - darwin*) + case $host_os in + darwin1[[0-9]].*) TARGET_FLAGS="-DUNIX" if test ! -d "$with_odbc" || test "$with_odbc" = "yes"; then ODBC_LIB= -L"/usr/local/lib" |