From: Wolfgang T. <wth...@us...> - 2005-04-18 00:52:38
|
Update of /cvsroot/hoc/hoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19156 Modified Files: configure.ac Log Message: Don't configure Mac OS specific .conf files anymore, they are now generated using the C preprocessor. Index: configure.ac =================================================================== RCS file: /cvsroot/hoc/hoc/configure.ac,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- configure.ac 1 Apr 2005 03:24:24 -0000 1.12 +++ configure.ac 18 Apr 2005 00:52:21 -0000 1.13 @@ -135,14 +135,17 @@ if test "x$platform" = "xgnustep"; then HOC_LD_ALL_LOAD='--whole-archive' HOC_MAKE_STATIC_LIB='ar cqs' - HOC_FOUNDATION_INCLUDES='-I/usr/GNUstep/System/Library/Headers/' - HOC_FOUNDATION_LIBS='-L/usr/GNUstep/System/Library/Libraries \ - -L/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.3 \ + HOC_FOUNDATION_INCLUDES='-I/usr/lib/GNUstep/System/Library/Headers/' + HOC_FOUNDATION_LIBS='-L/usr/lib/GNUstep/System/Library/Libraries \\\ + -L/usr/lib/gcc-lib/i486-linux/3.3.5 \\\ -lobjc -lgnustep-base' HOC_DEFINES='-DGNUSTEP' - HOC_CFLAGS='$(FOUNDATION_INCLUDES) $(DEFINES) \ - -fconstant-string-class=NSConstantString \ + HOC_CFLAGS='$(FOUNDATION_INCLUDES) $(DEFINES) \\\ + -fconstant-string-class=NSConstantString \\\ -Wno-import' + + HOC_FOUNDATION_LIB_DIRS="/usr/lib/GNUstep/System/Library/Libraries\ /usr/lib/gcc-lib/i486-linux/3.3.5" + else HOC_LD_ALL_LOAD='-all_load' HOC_MAKE_STATIC_LIB='libtool -static -o' @@ -150,6 +153,7 @@ HOC_FOUNDATION_LIBS='-framework Foundation' HOC_DEFINES='' HOC_CFLAGS='$(FOUNDATION_INCLUDES) $(DEFINES)' + HOC_FOUNDATION_LIB_DIRS='' fi HOC_PLATFORM="$platform" AC_SUBST(HOC_PLATFORM) @@ -159,7 +163,7 @@ AC_SUBST(HOC_FOUNDATION_LIBS) AC_SUBST(HOC_DEFINES) AC_SUBST(HOC_CFLAGS) - +AC_SUBST(HOC_FOUNDATION_LIB_DIRS) # # Output configuration files and Makefiles @@ -170,13 +174,10 @@ AC_CONFIG_FILES([config.mk Makefile AppKit/Makefile - AppKit/AppKit-macos.conf Bindings/Makefile docs/Makefile Foundation/Makefile - Foundation/Foundation-macos.conf HOC/Makefile - HOC/HOC-macos.conf HOC_cbits/Makefile InterfaceGenerator/Makefile Tools/Makefile |