]> granicus.if.org Git - apache/commitdiff
Add define for ap_spawnvp. Dean removed obsolete symbols NO_OTHER_CHILD
authorRoy T. Fielding <fielding@apache.org>
Thu, 26 Aug 1999 18:11:33 +0000 (18:11 +0000)
committerRoy T. Fielding <fielding@apache.org>
Thu, 26 Aug 1999 18:11:33 +0000 (18:11 +0000)
and NO_RELIABLE_PIPED_LOGS.

Submitted by: Ryan Bloom, Manoj Kasichainula

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83799 13f79535-47bb-0310-9956-ffa450edef68

os/win32/os.h

index 80ffd7e65e37279e76c88e2b0784348f44d250aa..4d07b0f74b8cc5a7a46fc14f964e188f5877d7d9 100644 (file)
@@ -13,6 +13,9 @@
 /* char *crypt(const char *pw, const char *salt); */
 #define crypt(buf,salt)            (buf)
 
+/* Use the Windows built-in spawnvp */
+#define ap_spawnvp(file, argv) (spawnvp(file, argv))
+
 /* Although DIR_TYPE is dirent (see nt/readdir.h) we need direct.h for
    chdir() */
 #include <direct.h>
@@ -80,9 +83,6 @@ every configuration function as __stdcall.
 #define NO_SLACK
 #include <stddef.h>
 
-#define NO_OTHER_CHILD
-#define NO_RELIABLE_PIPED_LOGS
-
 __inline int ap_os_is_path_absolute(const char *file)
 {
   /* For now, just do the same check that http_request.c and mod_alias.c