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/08/20 12:49:29 UTC

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

bjh         01/08/20 03:49:29

  Modified:    os/os2   core.mk
  Log:
  OS/2: Use full set of linker flags when linking shared core loader EXE.
  
  Revision  Changes    Path
  1.3       +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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- core.mk	2001/07/27 11:21:11	1.2
  +++ core.mk	2001/08/20 10:49:29	1.3
  @@ -1,7 +1,7 @@
   # Some rules for making a shared core dll on OS/2
   
   os2core: httpd.dll $(CORE_IMPLIB)
  -	$(LIBTOOL) --mode=link gcc -Zstack 512 $(EXTRA_LDFLAGS) -o httpd $(CORE_IMPLIB)
  +	$(LIBTOOL) --mode=link gcc -Zstack 512 $(LDFLAGS) $(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