mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
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:
parent
bd2cc57c83
commit
36252d24eb
3 changed files with 12 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
6
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue