mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-31 09:11:11 +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
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue