|
From: Martin R. <ru...@us...> - 2004-08-02 00:30:16
|
Update of /cvsroot/foo/foo/libfoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30815 Modified Files: configure.ac Log Message: added FOO_GNUSTEP und FOO_COCOA defines to config.h Index: configure.ac =================================================================== RCS file: /cvsroot/foo/foo/libfoo/configure.ac,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure.ac 31 Jul 2004 08:10:20 -0000 1.5 --- configure.ac 2 Aug 2004 00:30:06 -0000 1.6 *************** *** 58,61 **** --- 58,62 ---- ;; *linux*) + AC_DEFINE(SYS_LINUX, 1, Define if the system is Linux) enable_gnustep=yes; ;; *************** *** 97,100 **** --- 98,102 ---- use_foundation="GNUstep" + AC_DEFINE(FOO_GNUSTEP, 1, Define if we are using GNUstep) FOO_GNUSTEP_OBJCFLAGS="\$(GNUSTEP_HEADERS_FLAGS) \$(AUXILIARY_OBJCFLAGS)" FOO_GNUSTEP_LDFLAGS="\$(GNUSTEP_LIBRARIES_FLAGS)" *************** *** 105,108 **** --- 107,111 ---- use_foundation="Cocoa" + AC_DEFINE(FOO_COCOA, 1, Define if we are using Cocoa) fi AM_CONDITIONAL(USE_GNUSTEP_BASE, test "$use_gnustep_base" = yes) |