mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* gsweb.make.in
* Examples/hello/GNUmakefile * Examples/hello/Makefile.preamble * Testing/DynamicElements/GNUmakefile * Testing/DynamicElements/Makefile.preamble: Rely on Auxiliary/gdl2.make and Auxiliary/gsweb.make to set compiler and linker flags. * Examples/hello/config.mak: Removed. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16852 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a536c0ab84
commit
5232fe00f6
8 changed files with 42 additions and 51 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
|||
2003-06-01 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* gsweb.make.in
|
||||
* Examples/hello/GNUmakefile
|
||||
* Examples/hello/Makefile.preamble
|
||||
* Testing/DynamicElements/GNUmakefile
|
||||
* Testing/DynamicElements/Makefile.preamble: Rely on
|
||||
Auxiliary/gdl2.make and Auxiliary/gsweb.make to set compiler and
|
||||
linker flags.
|
||||
* Examples/hello/config.mak: Removed.
|
||||
|
||||
2003-06-01 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* Testing/DynamicElements/GNUMakefile: Corrected inclusion path of
|
||||
config.make.
|
||||
|
||||
2003-05-29 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* GSWeb.framework/GSWUtils.m ([NSUserDefaults -description]):
|
||||
|
|
|
@ -29,7 +29,6 @@ GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
|||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
include $(GNUSTEP_MAKEFILES)/Auxiliary/gsweb.make
|
||||
include config.mak
|
||||
|
||||
|
||||
GSWAPP_NAME=Hello
|
||||
|
|
|
@ -2,20 +2,18 @@ To install this little application:
|
|||
o install GNUstep, GNUstepWeb (including apache module),..
|
||||
o do a make install in this directory
|
||||
o add entry for this application in your apache module configuration file:
|
||||
hello = {
|
||||
adaptorTemplatesPath = "/home/httpd/GSWAdaptorTemplates";
|
||||
GSWExtensionsFrameworkWebServerResources="/GSW/GSWExtensions/WebServerResources";
|
||||
canDump = YES;
|
||||
instances = {
|
||||
1 = {
|
||||
host=YourHostName;
|
||||
port=9001;
|
||||
parameters= {
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
hello = {
|
||||
adaptorTemplatesPath = "/home/httpd/GSWAdaptorTemplates";
|
||||
GSWExtensionsFrameworkWebServerResources="/GSW/GSWExtensions/WebServerResources";
|
||||
canDump = YES;
|
||||
instances = {
|
||||
1 = {
|
||||
host=YourHostName;
|
||||
port=9001;
|
||||
parameters = { transport=socket; };
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
o cd /usr/GNUstep/System/GSWApps/Hello.gswa
|
||||
o run ./ix86/linux-gnu/gnu-gnu-gnu/Hello
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*-makefile-*-
|
||||
# Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
#
|
||||
# Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
|
@ -42,22 +43,13 @@ ADDITIONAL_OBJCFLAGS =
|
|||
ADDITIONAL_CFLAGS =
|
||||
|
||||
# Additional flags to pass to the Objective-C compiler
|
||||
#new
|
||||
ifeq ($(GDL2), yes)
|
||||
ADDITIONAL_OBJCFLAGS = -DUSE_BUILTIN -DGDL2
|
||||
else
|
||||
ADDITIONAL_OBJCFLAGS = -DUSE_BUILTIN
|
||||
endif
|
||||
ADDITIONAL_OBJCFLAGS =
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS = -I$(GNUSTEP_SYSTEM_ROOT)/db -I../..
|
||||
ADDITIONAL_INCLUDE_DIRS =
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ifeq ($(debug), yes)
|
||||
ADDITIONAL_LDFLAGS = -lGSWeb -lGSANTLR_d -lgnustep-db2_d -lgnustep-db2control_d
|
||||
else
|
||||
ADDITIONAL_LDFLAGS = -lGSWeb -lGSANTLR -lgnustep-db2 -lgnustep-db2control
|
||||
endif
|
||||
ADDITIONAL_LDFLAGS =
|
||||
|
||||
#-lgnustep-xraw
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
DYNAMIC_LINKER=simple
|
||||
#GDL2=yes
|
|
@ -27,9 +27,12 @@ GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
|||
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include ../../config.mak
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
include config.mak
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/Auxiliary/gsweb.make
|
||||
ifeq ($(GDL2),yes)
|
||||
include $(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
|
||||
endif
|
||||
|
||||
GSWAPP_NAME=DynamicElements
|
||||
DynamicElements_HAS_GSWCOMPONENTS=YES
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*-makefile-*-
|
||||
# Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
#
|
||||
# Written by: Manuel Guesdon <mguesdon@orange-concept.Com>
|
||||
|
@ -42,29 +43,13 @@ ADDITIONAL_OBJCFLAGS =
|
|||
ADDITIONAL_CFLAGS =
|
||||
|
||||
# Additional flags to pass to the Objective-C compiler
|
||||
#new
|
||||
ifeq ($(GDL2), yes)
|
||||
ADDITIONAL_OBJCFLAGS = -DUSE_BUILTIN -DGDL2
|
||||
else
|
||||
ADDITIONAL_OBJCFLAGS = -DUSE_BUILTIN
|
||||
endif
|
||||
ADDITIONAL_OBJCFLAGS = -DUSE_BUILTIN
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS = -I$(GNUSTEP_SYSTEM_ROOT)/db -I../..
|
||||
ADDITIONAL_INCLUDE_DIRS = -I../..
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ifeq ($(debug), yes)
|
||||
ADDITIONAL_LDFLAGS = -lGSWeb -lGSANTLR_d -lgnustep-db2_d -lgnustep-db2control_d
|
||||
else
|
||||
ADDITIONAL_LDFLAGS = -lGSWeb -lGSANTLR -lgnustep-db2 -lgnustep-db2control
|
||||
endif
|
||||
|
||||
ifeq ($(LIBWRAP), yes)
|
||||
ADDITIONAL_OBJCFLAGS := $(ADDITIONAL_OBJCFLAGS) -DHAVE_LIBWRAP
|
||||
ADDITIONAL_LDFLAGS := $(ADDITIONAL_LDFLAGS) -lwrap
|
||||
endif
|
||||
|
||||
#-lgnustep-xraw
|
||||
ADDITIONAL_LDFLAGS =
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS =
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#
|
||||
# -*-makefile-*-
|
||||
# gsweb.make
|
||||
#
|
||||
# Makefile flags and configs to build with the base library.
|
||||
|
@ -39,7 +39,7 @@ AUXILIARY_TOOL_LIBS += @AUX_LIBS@ -lGSANTLR
|
|||
|
||||
GDL2=@GDL2@
|
||||
ifeq ($(GDL2),yes)
|
||||
ADDITIONAL_OBJCFLAGS += -DGDL2=1
|
||||
include $(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
|
||||
endif
|
||||
|
||||
endif # GSWEB_MAKE_LOADED
|
||||
|
|
Loading…
Reference in a new issue