Fixed typo in --with-sqlite3-library=xxx, was setting sqlite3 variable instead of sqlite3_libdir

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@27746 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nicola 2009-01-31 20:37:24 +00:00
parent bd2cc57c83
commit 36252d24eb
3 changed files with 12 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2009-01-31 Nicola Pero <nicola.pero@meta-innovation.com>
* config/sqlite3.m4: Fixed typo in implementation of
--with-sqlite3-library=xxx.
* configure: Regenerated.
2009-01-29 Matt Rice <ratmice@gmail.com>
* EOControl/EODefines.h: switch BUILD_libgnustep-db2control_DLL define

View file

@ -1,12 +1,12 @@
dnl AM_PATH_SQLITE3([, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
AC_DEFUN(AM_PATH_SQLITE3,[
AC_ARG_WITH(sqlite3-include,
[ --with-sqlite3-include=PATH include path for sqlite3 headers],
[ --with-sqlite3-include=-I{PATH} include path for sqlite3 headers],
sqlite3_incdir="$withval", sqlite3_incdir=)
AC_ARG_WITH(sqlite3-library,
[ --with-sqlite3-library=PATH library path for sqlite3 libraries],
sqlite3="$withval", sqlite3_libdir=)
[ --with-sqlite3-library=-L{PATH} library path for sqlite3 libraries],
sqlite3_libdir="$withval", sqlite3_libdir=)
cppflags_temp="$CPPFLAGS"
libs_temp=$LIBS

6
configure vendored
View file

@ -1263,8 +1263,8 @@ Optional Packages:
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-pgsql-include=PATH include path for postgres headers
--with-pgsql-library=PATH library path for pgsql libraries
--with-sqlite3-include=PATH include path for sqlite3 headers
--with-sqlite3-library=PATH library path for sqlite3 libraries
--with-sqlite3-include=-I{PATH} include path for sqlite3 headers
--with-sqlite3-library=-L{PATH} library path for sqlite3 libraries
Some influential environment variables:
CC C compiler command
@ -3752,7 +3752,7 @@ fi
# Check whether --with-sqlite3-library was given.
if test "${with_sqlite3_library+set}" = set; then
withval=$with_sqlite3_library; sqlite3="$withval"
withval=$with_sqlite3_library; sqlite3_libdir="$withval"
else
sqlite3_libdir=
fi