Small changes for backwards compatibility with older gnustep-make/base

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@22296 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2006-01-11 14:27:36 +00:00
parent 3bde04197d
commit f1e4b002a3
3 changed files with 569 additions and 837 deletions

View file

@ -1,3 +1,10 @@
2006-01-11 Nicola Pero <nicola@brainstorm.co.uk>
* configure.ac: Do not source GNUSTEP_CONFIG_FILE if it doesn't
exist, so that the library can be used with older versions of
gnustep-make/gnustep-base too. :-)
* configure: Regenerated.
2005-11-23 Richard Frith-Macdonald <rfm@gnu.org>
Added SQLite backend support.

1389
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -9,7 +9,15 @@ fi
# Fetch basic path information from config file.
GNUSTEP_CONFIG_FILE=`grep '^GNUSTEP_CONFIG_FILE *=' $GNUSTEP_MAKEFILES/config.make | sed -e 's/GNUSTEP_CONFIG_FILE *= *\(.*\)/\1/'`
. "$GNUSTEP_CONFIG_FILE"
# This is for backwards compatibility with older gnustep releases,
# which have no GNUSTEP_CONFIG_FILE -- but it can be dropped in a year
# or so ;-) -- NB: We could do better here, like checking the
# GNUSTEP_MAKE_VERSION or emitting a warning if no config file is
# found etc.
if test -n "$GNUSTEP_CONFIG_FILE"; then
. "$GNUSTEP_CONFIG_FILE"
fi
#--------------------------------------------------------------------
AC_ARG_WITH(additional-include,