mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-14 15:40:59 +00:00
workaround autoconf bug
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@28763 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ae4c868169
commit
799c2de9f2
3 changed files with 2941 additions and 3123 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-10-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac: workaround autoconf bug.
|
||||
* configure: regenerate
|
||||
|
||||
2009-09-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* SQLClient.h:
|
||||
|
|
|
@ -60,6 +60,11 @@ if test "$postgres_topdir" != "no"; then
|
|||
LIBD="$LIBD -L$postgres_topdir/lib"
|
||||
fi
|
||||
|
||||
# Call AC_CHECK_HEADERS here as a workaround for a configure bug/feature
|
||||
# which messes up all subsequent tests if the first occurrence in the
|
||||
# file does not get called ... as would otherwise be the case if jdbc
|
||||
# support is disabled.
|
||||
AC_CHECK_HEADERS(stdio.h)
|
||||
|
||||
AC_MSG_CHECKING([if Jdbc support was manually disabled])
|
||||
AC_ARG_ENABLE(jdbc-bundle, [
|
||||
|
@ -73,7 +78,6 @@ AC_ARG_ENABLE(jdbc-bundle, [
|
|||
|
||||
if test "$ac_cv_jdbc_bundle" = "no"; then
|
||||
AC_MSG_RESULT([yes: disabled from the command-line])
|
||||
JDBC=
|
||||
else
|
||||
AC_MSG_RESULT([no: build if possible])
|
||||
|
||||
|
|
Loading…
Reference in a new issue