mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
* 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:
parent
9ab8685d13
commit
868cbc0b01
3 changed files with 547 additions and 1080 deletions
|
@ -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>
|
||||
|
||||
* Source/x11/XGServerEvent.m: Changed mapping of GNUstep modifier
|
||||
|
|
|
@ -32,6 +32,9 @@ if test -z "$GNUSTEP_SYSTEM_ROOT"; then
|
|||
AC_MSG_ERROR([You must run the GNUstep.sh script before configuring])
|
||||
fi
|
||||
|
||||
GRAPHIC_CFLAGS="$CPPFLAGS"
|
||||
GRAPHIC_LFLAGS="$LDFLAGS"
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Use config.guess, config.sub and install-sh provided by gnustep-make
|
||||
#--------------------------------------------------------------------
|
||||
|
@ -81,8 +84,8 @@ if test "x$no_x" = xyes; then
|
|||
fi
|
||||
|
||||
if test $set_x_paths = yes; then
|
||||
GRAPHIC_CFLAGS="$X_CFLAGS"
|
||||
GRAPHIC_LFLAGS="$X_LIBS"
|
||||
GRAPHIC_CFLAGS="$GRAPHIC_CFLAGS $X_CFLAGS"
|
||||
GRAPHIC_LFLAGS="$GRAPHIC_LFLAGS $X_LIBS"
|
||||
GRAPHIC_LIBS="$X_EXTRA_LIBS"
|
||||
|
||||
lib_save_header=${CPPFLAGS}
|
||||
|
|
Loading…
Reference in a new issue