ben 96/08/06 11:28:44
Modified: src Configure conf.h util_script.c
Log:
Submitted by: glen mccready <[EMAIL PROTECTED]>
QNX port. Accidentally updated util_script.c - will be reversed in next
commit.
Revision Changes Path
1.9 +1 -1 apache/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.8
retrieving revision 1.9
diff -C3 -r1.8 -r1.9
*** Configure 1996/08/05 01:34:24 1.8
--- Configure 1996/08/06 18:28:40 1.9
***************
*** 185,191 ****
QNX)
OS='QNX'
CFLAGS="$CFLAGS -DQNX"
! LIBS="$LIBS -N 0x20000"
;;
SCO3)
OS='SCO 3'
--- 185,191 ----
QNX)
OS='QNX'
CFLAGS="$CFLAGS -DQNX"
! LIBS="$LIBS -N128k -lsocket"
;;
SCO3)
OS='SCO 3'
1.32 +5 -0 apache/src/conf.h
Index: conf.h
===================================================================
RCS file: /export/home/cvs/apache/src/conf.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -C3 -r1.31 -r1.32
*** conf.h 1996/08/05 01:45:08 1.31
--- conf.h 1996/08/06 18:28:41 1.32
***************
*** 310,315 ****
--- 310,317 ----
#undef NO_SETSID
#define NEED_INITGROUPS
#define NEED_SELECT_H
+ #define NEED_PROCESS_H
+
#define JMP_BUF sigjmp_buf
#elif defined(LYNXOS)
***************
*** 395,400 ****
--- 397,405 ----
#include <limits.h>
#ifndef QNX
#include <memory.h>
+ #endif
+ #ifdef NEED_PROCESS_H
+ #include <process.h>
#endif
#include <regex.h>
1.17 +2 -1 apache/src/util_script.c
Index: util_script.c
===================================================================
RCS file: /export/home/cvs/apache/src/util_script.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C3 -r1.16 -r1.17
*** util_script.c 1996/08/02 20:39:16 1.16
--- util_script.c 1996/08/06 18:28:41 1.17
***************
*** 89,95 ****
for(x=1;x<n;x++) {
w = getword_nulls(p, &args, '+');
unescape_url(w);
! av[x] = escape_shell_cmd(p, w);
}
av[n] = NULL;
return av;
--- 89,96 ----
for(x=1;x<n;x++) {
w = getword_nulls(p, &args, '+');
unescape_url(w);
! /* av[x] = escape_shell_cmd(p, w);*/
! av[x] = w;
}
av[n] = NULL;
return av;