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:
Richard Frith-MacDonald 2009-10-02 18:34:28 +00:00
parent ae4c868169
commit 799c2de9f2
3 changed files with 2941 additions and 3123 deletions

View file

@ -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:

6053
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -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])