You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Wilfredo Sanchez <ws...@apple.com> on 1998/10/02 03:11:40 UTC

Updating Rhapsody port to 1.3.2

   I just updated fairly painlessly to 1.3.2.  I'm going to start work
now on getting the Makefile changes sorted out and sent to you guys for
review.

   Presently, I have a minor source change to submit:

  - HAVE_SYS_RESOURCE_H is now set by apaci for me, so remove that from
    ap_config.h to get rid of the warnings.

	-Fred


Index: CoreOS/Services/apache/apache/src/include/ap_config.h
diff -u CoreOS/Services/apache/apache/src/include/ap_config.h:1.1.1.2 CoreOS/Services/apache/apache/src/include/ap_config.h:1.5
--- CoreOS/Services/apache/apache/src/include/ap_config.h:1.1.1.2	Thu Oct  1 16:00:21 1998
+++ CoreOS/Services/apache/apache/src/include/ap_config.h	Thu Oct  1 17:41:52 1998
@@ -372,7 +372,6 @@
 #define USE_MMAP_SCOREBOARD
 #define MAP_TMPFILE
 #define HAVE_RESOURCE
-#define HAVE_SYS_RESOURCE_H /* apaci should catch this but doesn't */
 #define HAVE_SNPRINTF
 #define JMP_BUF jmp_buf
 #define USE_LONGJMP
Index: CoreOS/Services/apache/apache/src/modules/standard/mod_so.c
diff -u CoreOS/Services/apache/apache/src/modules/standard/mod_so.c:1.1.1.2 CoreOS/Services/apache/apache/src/modules/standard/mod_so.c:1.2
--- CoreOS/Services/apache/apache/src/modules/standard/mod_so.c:1.1.1.2	Thu Oct  1 16:00:43 1998
+++ CoreOS/Services/apache/apache/src/modules/standard/mod_so.c	Wed Aug  5 17:14:18 1998
@@ -153,6 +153,7 @@
     soc = (so_server_conf *)ap_pcalloc(p, sizeof(so_server_conf));
     soc->loaded_modules = ap_make_array(p, DYNAMIC_MODULE_LIMIT,
                                      sizeof(moduleinfo));
+
 #ifndef NO_DLOPEN
     ap_os_dso_init();
 #endif