home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / Patches / WWWDaemon_3.0.01.patch < prev    next >
Encoding:
Text File  |  1995-07-24  |  4.3 KB  |  163 lines

  1. diff -r -c3 -B WWW/All/next/Makefile.include WWW.orig/All/next/Makefile.include
  2. *** WWW/All/next/Makefile.include    Sat Jul 15 20:03:34 1995
  3. --- WWW.orig/All/next/Makefile.include    Sun Sep 25 20:53:44 1994
  4. ***************
  5. *** 15,22 ****
  6.   # errno.
  7.   
  8.   CC = cc
  9. ! CFLAGS =  -Wall -g -DXMOSAIC_HACK -DNEED_PUTENV
  10. ! # CFLAGS =  -Wall -g -DXMOSAIC_HACK -arch m68k -arch i386 -DNEED_PUTENV
  11.   
  12.   #    For testing memory leaks only!   Use /NextDeveloper/MallocDebug app
  13.   # LFLAGS = -lMallocDebug
  14. --- 15,22 ----
  15.   # errno.
  16.   
  17.   CC = cc
  18. ! CFLAGS =  -Wall -g -DXMOSAIC_HACK
  19. ! # CFLAGS =  -Wall -g -DXMOSAIC_HACK -arch m68k -arch i386
  20.   
  21.   #    For testing memory leaks only!   Use /NextDeveloper/MallocDebug app
  22.   # LFLAGS = -lMallocDebug
  23. diff -r -c3 -B WWW/All/next-386/Makefile.include WWW.orig/All/next-386/Makefile.include
  24. *** WWW/All/next-386/Makefile.include    Sat Jul 15 20:03:33 1995
  25. --- WWW.orig/All/next-386/Makefile.include    Sun Sep 25 15:00:17 1994
  26. ***************
  27. *** 13,20 ****
  28.   # in /usr/include/bsd/sys/errno.h. But __STRICT_BSD__ is needed for
  29.   # errno.
  30.   
  31. ! # CFLAGS =  -Wall -g -DXMOSAIC_HACK -DNEED_PUTENV
  32. ! CFLAGS =  -Wall -g -DXMOSAIC_HACK -arch m68k -arch i386 -DNEED_PUTENV
  33.   
  34.   CC = cc
  35.   #    For testing memory leaks only!   Use /NextDeveloper/MallocDebug app
  36. --- 13,20 ----
  37.   # in /usr/include/bsd/sys/errno.h. But __STRICT_BSD__ is needed for
  38.   # errno.
  39.   
  40. ! # CFLAGS =  -Wall -g -DXMOSAIC_HACK
  41. ! CFLAGS =  -Wall -g -DXMOSAIC_HACK -arch m68k -arch i386
  42.   
  43.   CC = cc
  44.   #    For testing memory leaks only!   Use /NextDeveloper/MallocDebug app
  45. diff -r -c3 -B WWW/Daemon/Implementation/HTConfig.c WWW.orig/Daemon/Implementation/HTConfig.c
  46. *** WWW/Daemon/Implementation/HTConfig.c    Sat Jul 15 20:02:58 1995
  47. --- WWW.orig/Daemon/Implementation/HTConfig.c    Mon Sep 26 15:22:52 1994
  48. ***************
  49. *** 1572,1578 ****
  50. --- 1572,1588 ----
  51.           sprintf(envstr, "%s_proxy=%s", access, vec[1]);
  52.   
  53.           old = getenv(envname);
  54. + #ifndef NeXT
  55.           putenv(envstr);
  56. + #else
  57. +         HTLog_error("xxx_proxy directive not supported on the NeXT");
  58. +         HTLog_error("Use xxx_proxy environment variables instead");
  59. +         fprintf(stderr,
  60. +             "%s_proxy directive not supported on the NeXT",access);
  61. +         fprintf(stderr,
  62. +             "Use %s_proxy environment variables instead",access);
  63. +         exit(1);
  64. + #endif
  65.           if (old)
  66.               HTLog_error2("Environment variable overridden:", old);
  67.           }
  68. diff -r -c3 -B WWW/Daemon/Implementation/HTSUtils.c WWW.orig/Daemon/Implementation/HTSUtils.c
  69. *** WWW/Daemon/Implementation/HTSUtils.c    Sat Jul 15 20:02:49 1995
  70. --- WWW.orig/Daemon/Implementation/HTSUtils.c    Sun Sep 25 14:52:57 1994
  71. ***************
  72. *** 480,556 ****
  73.       return setgroups(index, groups);
  74.   }
  75.   #endif
  76. - #ifdef NEED_PUTENV
  77. - extern int putenv(char *newval)
  78. - {
  79. -     extern char **environ;
  80. -     static int firstTime = 1;
  81. -     char **ep;
  82. -     char *cp;
  83. -     int esiz;
  84. -     char *np;
  85. -     if (!(np = strchr(newval, '=')))
  86. -     return 1;
  87. -     *np = '\0';
  88. -     /* look it up */
  89. -     for (ep=environ ; *ep ; ep++)
  90. -     {
  91. -     /* this should always be true... */
  92. -     if (cp = strchr(*ep, '='))
  93. -     {
  94. -         *cp = '\0';
  95. -         if (!strcmp(*ep, newval))
  96. -         {
  97. -         /* got it! */
  98. -         *cp = '=';
  99. -         break;
  100. -         }
  101. -         *cp = '=';
  102. -     }
  103. -     else
  104. -     {
  105. -         *np = '=';
  106. -         return 1;
  107. -     }
  108. -     }
  109. -     *np = '=';
  110. -     if (*ep)
  111. -     {
  112. -     /* the string was already there: just replace it with the new one */
  113. -     *ep = newval;
  114. -     return 0;
  115. -     }
  116. -     /* expand environ by one */
  117. -     for (esiz=2, ep=environ ; *ep ; ep++)
  118. -     esiz++;
  119. -     if (firstTime)
  120. -     {
  121. -     char **epp;
  122. -     char **newenv;
  123. -     if (!(newenv = malloc(esiz * sizeof(char *))))
  124. -         return 1;
  125. -    
  126. -     for (ep=environ, epp=newenv ; *ep ;)
  127. -         *epp++ = *ep++;
  128. -     *epp++ = newval;
  129. -     *epp = (char *) 0;
  130. -     environ = newenv;
  131. -     }
  132. -     else
  133. -     {
  134. -     if (!(environ = realloc(environ, esiz * sizeof(char *))))
  135. -         return 1;
  136. -     environ[esiz - 2] = newval;
  137. -     environ[esiz - 1] = (char *) 0;
  138. -     firstTime = 0;
  139. -     }
  140. -     return 0;
  141. - }
  142. - #endif
  143. --- 480,482 ----
  144. diff -r -c3 -B WWW/Daemon/Implementation/HTSUtils.h WWW.orig/Daemon/Implementation/HTSUtils.h
  145. *** WWW/Daemon/Implementation/HTSUtils.h    Sat Jul 15 20:02:47 1995
  146. --- WWW.orig/Daemon/Implementation/HTSUtils.h    Sun Sep 25 14:55:30 1994
  147. ***************
  148. *** 79,84 ****
  149.   
  150.   #endif /* !HTSUTILS_H */
  151.   
  152. - #ifdef NEED_PUTENV
  153. - extern int putenv(char *newval);
  154. - #endif
  155. --- 79,81 ----
  156.