Skip to content

Commit

Permalink
Updated configure
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed May 7, 2024
1 parent dbc35a6 commit 619f056
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4026,11 +4026,11 @@ fi
if test x"${ODBC}" == x"yes" ; then
ODBC_CFLAGS = `odbc_config --cflags`
ODBC_LIBS = `odbc_config --libs`
ODBC_CFLAGS=`odbc_config --cflags`
ODBC_LIBS=`odbc_config --libs`
else
ODBC_CFLAGS = ""
ODBC_LIBS = "-lodbc"
ODBC_CFLAGS=""
ODBC_LIBS="-lodbc"
fi
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ echo "OpenSSL: ${OPENSSL_INCLUDES}"
## Setup ODBC
AC_CHECK_PROG(ODBC,odbc_config,yes)
if test x"${ODBC}" == x"yes" ; then
ODBC_CFLAGS = `odbc_config --cflags`
ODBC_LIBS = `odbc_config --libs`
ODBC_CFLAGS=`odbc_config --cflags`
ODBC_LIBS=`odbc_config --libs`
else
ODBC_CFLAGS = ""
ODBC_LIBS = "-lodbc"
ODBC_CFLAGS=""
ODBC_LIBS="-lodbc"
fi


Expand Down

0 comments on commit 619f056

Please sign in to comment.