libs-gsweb/config.mak.in
David Ayers e59b95fcfc * config.mak.in: Added EOCONTROL_LIBRARY_NAME,
EOACCESS_LIBRARY_NAME and HAVE_NATIVE_FRAMEWORK_SUPPORT.
        * GSWeb.framework/Makefile.preamble.in: Added support for
        buildings on OS X and improve support for others.
        * GSWExtensions.framework/Makefile.preamble: Ditto.
        * GSWExtensionsGSW.framework/Makefile.preamble: Ditto.
        * GSWeb.framework/GNUmakefile: Remove GNUSTEP_MAKEFILES.

        * GSWeb.framework/GSWMultiKeyDictionary.m
        ([GSWMultiKeyDictionary initWithNodeSize:capacity:]): Replace
        usage of GSObjCZone with -zone for OS X compatibility.
        ([GSWMultiKeyDictionary dealloc]): Ditto.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18773 72102866-910b-0410-8b05-ffd578937521
2004-03-04 18:36:50 +00:00

41 lines
597 B
Makefile

#
#
#
DYNAMIC_LINKER=simple
GDL2=@GDL2@
LIBWRAP=@LIBWRAP@
#EOControl dependancy
ifeq ($(GDL2),yes)
EOCONTROL_LIBRARY_NAME=gnustep-db2control
EOACCESS_LIBRARY_NAME=gnustep-db2
endif
#Native Framework support
ifeq ($(OBJC_RUNTIME_LIB),apple)
HAVE_NATIVE_FRAMEWORK_SUPPORT=yes
else
ifeq ($(OBJC_RUNTIME_LIB),nx)
HAVE_NATIVE_FRAMEWORK_SUPPORT=yes
else
HAVE_NATIVE_FRAMEWORK_SUPPORT=no
endif
endif
#Log
GSWDEBUG=no
#Log Memory Alloc/Dealloc
GSWDEBUG_MEM=no
#Log Locks
GSWDEBUG_LOCK=no
#Deep logs
GSWDEBUG_DEEP=no
# Default (generated by configure)
ifeq ($(gswnames),)
gswnames=@GSWNAMES@
endif