mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-16 00:21:39 +00:00
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:
parent
3bde04197d
commit
f1e4b002a3
3 changed files with 569 additions and 837 deletions
|
@ -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.
|
||||
|
|
10
configure.ac
10
configure.ac
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue