cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 NWGNUmakefile

2005-02-13 Thread mturk
mturk   2005/02/13 04:25:04

  Modified:jk/native/apache-2.0 NWGNUmakefile
  Log:
  Add -D_POSIX_SOURCE to compiler flags.
  
  Revision  ChangesPath
  1.7   +1 -0  
jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NWGNUmakefile 6 Feb 2005 17:43:09 -   1.6
  +++ NWGNUmakefile 13 Feb 2005 12:25:04 -  1.7
  @@ -57,6 +57,7 @@
   #
   XDEFINES += \
-D__NOVELL_LIBC__ \
  + -D_POSIX_SOURCE \
$(EOLIST)
   
   #
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 NWGNUmakefile

2004-12-09 Thread mturk
mturk   2004/12/09 00:16:44

  Modified:jk/native/apache-2.0 NWGNUmakefile
  Log:
  Remove CRLF line endings.
  We should realy consider moving to SVN ...
  
  Revision  ChangesPath
  1.4   +3 -3  
jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NWGNUmakefile 2 Dec 2004 14:57:52 -   1.3
  +++ NWGNUmakefile 9 Dec 2004 08:16:44 -   1.4
  @@ -39,9 +39,9 @@
$(AP_WORK)/include \
$(NWOS) \
$(AP_WORK)/modules/arch/netware \
  - $(APR)/include \

  - $(APRUTIL)/include \

  - $(APR) \

  + $(APR)/include \
  + $(APRUTIL)/include \
  + $(APR) \
$(JAVA_HOME)/include \
$(JAVA_HOME)/include/netware \
$(EOLIST)
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 NWGNUmakefile

2004-12-02 Thread mturk
mturk   2004/12/02 06:57:52

  Modified:jk/native/apache-2.0 NWGNUmakefile
  Log:
  The patch allows mod_jk to build for NetWare with APR
  existing outside of the httpd/srclib file structure for apache 2.1.x.
  
  Revision  ChangesPath
  1.3   +3 -3  
jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NWGNUmakefile 9 Apr 2004 20:00:18 -   1.2
  +++ NWGNUmakefile 2 Dec 2004 14:57:52 -   1.3
  @@ -39,9 +39,9 @@
$(AP_WORK)/include \
$(NWOS) \
$(AP_WORK)/modules/arch/netware \
  - $(AP_WORK)/srclib/apr/include \
  - $(AP_WORK)/srclib/apr-util/include \
  - $(AP_WORK)/srclib/apr \
  + $(APR)/include \

  + $(APRUTIL)/include \

  + $(APR) \

$(JAVA_HOME)/include \
$(JAVA_HOME)/include/netware \
$(EOLIST)
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 NWGNUmakefile

2004-04-09 Thread fuankg
fuankg  2004/04/09 13:00:18

  Modified:jk/native2/server/apache2 NWGNUmakefile
   jk/native/apache-2.0 NWGNUmakefile
  Log:
  fix problem with differences between Apache2 build systems of 2.0.x and 2.1.x
  
  Revision  ChangesPath
  1.4   +1 -7  
jakarta-tomcat-connectors/jk/native2/server/apache2/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native2/server/apache2/NWGNUmakefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NWGNUmakefile 6 Apr 2004 16:07:58 -   1.3
  +++ NWGNUmakefile 9 Apr 2004 20:00:18 -   1.4
  @@ -329,13 +329,7 @@
   # Any specialized rules here
   #
   
  -$(OBJDIR)/%.o: $(JKCOMMON)/%.c $(OBJDIR)\cc.opt
  - @echo Compiling $
  - $(CC) $(JKCOMMON)/$(F) -o=$(OBJDIR)\$(@F) @$(OBJDIR)\cc.opt
  -
  -$(OBJDIR)/%.o: $(JKJNI)/%.c $(OBJDIR)\cc.opt
  - @echo Compiling $
  - $(CC) $(JKJNI)/$(F) -o=$(OBJDIR)\$(@F) @$(OBJDIR)\cc.opt
  +vpath %.c $(JKCOMMON);$(JKJNI)
   
   $(OBJDIR)/version.inc: $(JKINCLUDE)/jk_global.h $(OBJDIR)
@echo Creating $@
  
  
  
  1.2   +3 -5  jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NWGNUmakefile 22 Jan 2004 16:42:31 -  1.1
  +++ NWGNUmakefile 9 Apr 2004 20:00:18 -   1.2
  @@ -145,7 +145,7 @@
   #
   # If this is specified, it will override the default of 64K
   #
  -NLM_STACK_SIZE   = 32768
  +NLM_STACK_SIZE   = 49152
   
   
   #
  @@ -269,7 +269,7 @@
   # Paths must all use the '/' character
   #
   FILES_lib_objs = \
  - $(EOLIST)
  + $(EOLIST)
   
   #
   # implement targets and dependancies (leave this section alone)
  @@ -290,9 +290,7 @@
   # Any specialized rules here
   #
   
  -$(OBJDIR)/%.o: $(JKCOMMON)/%.c $(OBJDIR)\cc.opt
  - @echo Compiling $
  - $(CC) $(JKCOMMON)/$(F) -o=$(OBJDIR)\$(@F) @$(OBJDIR)\cc.opt
  +vpath %.c $(JKCOMMON)
   
   $(OBJDIR)/version.inc: $(JKCOMMON)/jk_version.h $(OBJDIR)
@echo Creating $@
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 NWGNUmakefile

2004-01-22 Thread mmanders
mmanders2004/01/22 08:42:31

  Added:   jk/native/apache-2.0 NWGNUmakefile
  Log:
  Makefile for building NetWare version of mod_jk submitted by Guenter Knauf ([EMAIL 
PROTECTED]).
  
  Revision  ChangesPath
  1.1  jakarta-tomcat-connectors/jk/native/apache-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===
  #
  # Makefile for mod_jk (uses the build system of Apache2 - gnu make)
  # created by Guenter Knauf [EMAIL PROTECTED]
  #
  
  #ifeq ($(strip $(JAVA_HOME)),)
  [EMAIL PROTECTED] You must set the JAVA_HOME environment var pointing to the NetWare 
Java SDK!
  #endif
  
  #
  # Declare the sub-directories to be built here
  #
  
  SUBDIRS = \
$(EOLIST)
  
  #
  # Get the 'head' of the build environment.  This includes default targets and
  # paths to tools
  #
  
  include $(AP_WORK)\build\NWGNUhead.inc
  
  #
  # build this level's files
  
  #
  # Make sure all needed macro's are defined
  #
  
  JKCOMMON = ../common
  
  #
  # These directories will be at the beginning of the include list, followed by
  # INCDIRS
  #
  XINCDIRS  += \
$(JKCOMMON) \
$(AP_WORK)/include \
$(NWOS) \
$(AP_WORK)/modules/arch/netware \
$(AP_WORK)/srclib/apr/include \
$(AP_WORK)/srclib/apr-util/include \
$(AP_WORK)/srclib/apr \
$(JAVA_HOME)/include \
$(JAVA_HOME)/include/netware \
$(EOLIST)
  
  #
  # These flags will come after CFLAGS
  #
  XCFLAGS   += \
$(EOLIST)
  
  #
  # These defines will come after DEFINES
  #
  XDEFINES  += \
-D__NOVELL_LIBC__ \
$(EOLIST)
  
  #
  # These flags will be added to the link.opt file
  #
  XLFLAGS   += \
$(EOLIST)
  
  #
  # These values will be appended to the correct variables based on the value of
  # RELEASE
  #
  ifeq $(RELEASE) debug
  XINCDIRS  += \
$(EOLIST)
  
  XCFLAGS   += \
$(EOLIST)
  
  XDEFINES  += \
$(EOLIST)
  
  XLFLAGS   += \
$(EOLIST)
  endif
  
  ifeq $(RELEASE) noopt
  XINCDIRS  += \
$(EOLIST)
  
  XCFLAGS   += \
$(EOLIST)
  
  XDEFINES  += \
$(EOLIST)
  
  XLFLAGS   += \
$(EOLIST)
  endif
  
  ifeq $(RELEASE) release
  XINCDIRS  += \
$(EOLIST)
  
  XCFLAGS   += \
$(EOLIST)
  
  XDEFINES  += \
$(EOLIST)
  
  XLFLAGS   += \
$(EOLIST)
  endif
  
  #
  # These are used by the link target if an NLM is being generated
  # This is used by the link 'name' directive to name the nlm.  If left blank
  # TARGET_nlm (see below) will be used.
  #
  NLM_NAME  = mod_jk
  
  #
  # This is used by the link '-desc ' directive.
  # If left blank, NLM_NAME will be used.
  #
  NLM_DESCRIPTION   = Apache $(VERSION_STR) plugin for Jakarta/Tomcat 
$(JK_VERSION_STR)
  
  #
  # This is used by the link '-copy ' directive.
  # If left blank, the ASF copyright defined in NWGNUtail.inc will be used.
  #
  NLM_COPYRIGHT =
  
  #
  # This is used by the '-threadname' directive.  If left blank,
  # NLM_NAME Thread will be used.
  #
  NLM_THREAD_NAME   = JK Module
  
  #
  # If this is specified, it will override VERSION value in
  # $(AP_WORK)\build\NWGNUenvironment.inc
  #
  NLM_VERSION   = $(JK_VERSION)
  
  #
  # If this is specified, it will override the default of 64K
  #
  NLM_STACK_SIZE= 32768
  
  
  #
  # If this is specified it will be used by the link '-entry' directive
  #
  NLM_ENTRY_SYM = _LibCPrelude
  
  #
  # If this is specified it will be used by the link '-exit' directive
  #
  NLM_EXIT_SYM  = _LibCPostlude
  
  #
  # If this is specified it will be used by the link '-check' directive
  #
  NLM_CHECK_SYM =
  
  #
  # If these are specified it will be used by the link '-flags' directive
  #
  NLM_FLAGS =  AUTOUNLOAD, PSEUDOPREEMPTION
  
  #
  # If this is specified it will be linked in with the XDCData option in the def
  # file instead of the default of $(NWOS)/apache.xdc.  XDCData can be disabled
  # by setting APACHE_UNIPROC in the environment
  #
  XDCDATA =
  
  #
  # If there is an NLM target, put it here
  #
  TARGET_nlm = \
$(OBJDIR)/mod_jk.nlm \
$(EOLIST)
  
  #
  # If there is an LIB target, put it here
  #
  TARGET_lib = \
$(EOLIST)
  
  #
  # These are the OBJ files needed to create the NLM target above.
  # Paths must all use the '/' character
  #