* configure.ac: Prepend don't overwrite CFLAGS and LDFLAGS given

in environment.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@19969 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2004-09-02 02:56:10 +00:00
parent 9ab8685d13
commit 868cbc0b01
3 changed files with 547 additions and 1080 deletions

View file

@ -1,3 +1,8 @@
2004-09-01 Adam Fedor <fedor@gnu.org>
* configure.ac: Prepend don't overwrite CFLAGS and LDFLAGS given
in environment.
2004-08-31 Adrian Robert <arobert@cogsci.ucsd.edu> 2004-08-31 Adrian Robert <arobert@cogsci.ucsd.edu>
* Source/x11/XGServerEvent.m: Changed mapping of GNUstep modifier * Source/x11/XGServerEvent.m: Changed mapping of GNUstep modifier

1615
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -32,6 +32,9 @@ if test -z "$GNUSTEP_SYSTEM_ROOT"; then
AC_MSG_ERROR([You must run the GNUstep.sh script before configuring]) AC_MSG_ERROR([You must run the GNUstep.sh script before configuring])
fi fi
GRAPHIC_CFLAGS="$CPPFLAGS"
GRAPHIC_LFLAGS="$LDFLAGS"
#-------------------------------------------------------------------- #--------------------------------------------------------------------
# Use config.guess, config.sub and install-sh provided by gnustep-make # Use config.guess, config.sub and install-sh provided by gnustep-make
#-------------------------------------------------------------------- #--------------------------------------------------------------------
@ -81,8 +84,8 @@ if test "x$no_x" = xyes; then
fi fi
if test $set_x_paths = yes; then if test $set_x_paths = yes; then
GRAPHIC_CFLAGS="$X_CFLAGS" GRAPHIC_CFLAGS="$GRAPHIC_CFLAGS $X_CFLAGS"
GRAPHIC_LFLAGS="$X_LIBS" GRAPHIC_LFLAGS="$GRAPHIC_LFLAGS $X_LIBS"
GRAPHIC_LIBS="$X_EXTRA_LIBS" GRAPHIC_LIBS="$X_EXTRA_LIBS"
lib_save_header=${CPPFLAGS} lib_save_header=${CPPFLAGS}