From 0d67eb4c739589d1282a6f499c5ce4264a56438d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Luthi?= Date: Tue, 4 Jul 2023 20:56:41 +0200 Subject: [PATCH] Fix ODBC_LIBS for unixODBC (#415) Using `$libdir` doesn't work and produces an error when configuring with ` ./configure --with-unixodbc=$(brew --prefix)` > configure:21209: gcc -o conftest -g -O2 -Wall -Werror -L/opt/homebrew/${exec_prefix}/lib conftest.c -lodbcinst >&5 > ld: warning: directory not found for option '-L/opt/homebrew/${exec_prefix}/lib' > ld: library not found for -lodbcinst > clang: error: linker command failed with exit code 1 (use -v to see invocation) Note that `warning: directory not found for option '-L/.../${exec_prefix}/lib'` is always emitted but if unixodbc is installed in `/usr/local/lib` linking would still work. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a43ba8c..1383545 100644 --- a/configure.ac +++ b/configure.ac @@ -167,7 +167,7 @@ AC_ARG_WITH(unixodbc, if test "$with_unixodbc"; then HAVE_ODBC=true ODBC_CFLAGS="-I$with_unixodbc/include" - ODBC_LIBS="-L$with_unixodbc/$libdir" + ODBC_LIBS="-L$with_unixodbc/lib" dnl SIZEOF_LONG_INT and HAVE_LONG_LONG are required by some versions of unixODBC dnl https://github.com/lurcher/unixODBC/issues/40