You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@apache.org on 2001/07/27 13:21:11 UTC

cvs commit: httpd-2.0/os/os2 core.mk

bjh         01/07/27 04:21:11

  Modified:    os/os2   core.mk
  Log:
  OS/2: set a decent size stack. Default is only 32k which runs out in some
  configurations.
  
  Revision  Changes    Path
  1.2       +1 -1      httpd-2.0/os/os2/core.mk
  
  Index: core.mk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/os/os2/core.mk,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- core.mk	2001/04/02 15:20:45	1.1
  +++ core.mk	2001/07/27 11:21:11	1.2
  @@ -1,7 +1,7 @@
   # Some rules for making a shared core dll on OS/2
   
   os2core: httpd.dll $(CORE_IMPLIB)
  -	$(LIBTOOL) --mode=link gcc $(EXTRA_LDFLAGS) -o httpd $(CORE_IMPLIB)
  +	$(LIBTOOL) --mode=link gcc -Zstack 512 $(EXTRA_LDFLAGS) -o httpd $(CORE_IMPLIB)
   
   httpd.dll: $(PROGRAM_DEPENDENCIES) $(CORE_IMPLIB)
   	$(LINK) -Zdll $(EXTRA_LDFLAGS) -s -o $@ server/exports.lo modules.lo $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) server/ApacheCoreOS2.def