cvs commit: apache-1.3/src/os/unix os.h os.c

1998-09-16 Thread rse
rse 98/09/15 23:49:47

  Modified:src/os/unix os.h os.c
  Log:
  Fix our os-stuff after the Rapsody commit:
  - add prototype for the new ap_os_dso_init function (gcc complained)
  - fix a parse error: the #elif has to use defined(...) (gcc complained)
  - fix argument of ap_os_dso_init function (ANSI likes void)
  
  Revision  ChangesPath
  1.32  +1 -0  apache-1.3/src/os/unix/os.h
  
  Index: os.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/unix/os.h,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- os.h  1998/08/03 17:52:22 1.31
  +++ os.h  1998/09/16 06:49:44 1.32
  @@ -126,6 +126,7 @@
   #endif
   
   #define ap_os_dso_handle_t  void *
  +voidap_os_dso_init(void);
   void *  ap_os_dso_load(const char *);
   voidap_os_dso_unload(void *);
   void *  ap_os_dso_sym(void *, const char *);
  
  
  
  1.15  +3 -3  apache-1.3/src/os/unix/os.c
  
  Index: os.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/unix/os.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- os.c  1998/09/15 19:47:44 1.14
  +++ os.c  1998/09/16 06:49:44 1.15
  @@ -73,9 +73,9 @@
   abort();
   }
   
  -#endif
  +#endif /*RHAPSODY*/
   
  -void ap_os_dso_init()
  +void ap_os_dso_init(void)
   {
   #if defined(RHAPSODY)
   NSLinkEditErrorHandlers handlers;
  @@ -146,7 +146,7 @@
   free(symname2);
   return NSAddressOfSymbol(symbol);
   
  -#elif DLSYM_NEEDS_UNDERSCORE
  +#elif defined(DLSYM_NEEDS_UNDERSCORE)
   char *symbol = (char*)malloc(sizeof(char)*(strlen(symname)+2));
   void *retval;
   sprintf(symbol, _%s, symname);
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod mod_log_common.html

1998-09-16 Thread bhyde
bhyde   98/09/16 09:10:33

  Modified:htdocs/manual/mod mod_log_common.html
  Log:
  Follow thru on the cronolog discussion that took place in May.
  
  Revision  ChangesPath
  1.11  +3 -1  apache-1.3/htdocs/manual/mod/mod_log_common.html
  
  Index: mod_log_common.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_log_common.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- mod_log_common.html   1998/05/20 14:12:57 1.10
  +++ mod_log_common.html   1998/09/16 16:10:31 1.11
  @@ -98,7 +98,9 @@
   DT `|' followed by a command
   DDA program to receive the agent log information on its standard input.
   Note the a new program will not be started for a VirtualHost if it inherits
  -the TransferLog from the main server.
  +the TransferLog from the main server.  See, just as an example,
  +A HREF=http://www.ford-mason.co.uk/resources/cronolog/;cronolog/A.
  +
   /DL
   STRONGSecurity:/STRONG if a program is used, then it will be
   run under the user who started httpd. This will be root if the server
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS MakeEtags PrintPath PrintPathOS2 TestCompile buildinfo.sh checkheader.sh findcpp.sh fmn.sh install.sh mkdir.sh mkshadow.sh ppl.sh slo.sh

1998-09-16 Thread jim
jim 98/09/16 13:49:28

  Modified:src/helpers GuessOS MakeEtags PrintPath PrintPathOS2
TestCompile buildinfo.sh checkheader.sh findcpp.sh
fmn.sh install.sh mkdir.sh mkshadow.sh ppl.sh
slo.sh
  Log:
  Add blame and LICENSE info to various helper scripts. Who knows, maybe
  people can use 'em :)
  
  Revision  ChangesPath
  1.46  +6 -4  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- GuessOS   1998/09/15 19:47:39 1.45
  +++ GuessOS   1998/09/16 20:49:23 1.46
  @@ -3,10 +3,12 @@
   # Simple OS/Platform guesser. Similar to config.guess but
   # much, much smaller. Since it was developed for use with
   # Apache, it follows under Apache's regular licensing
  -# with one specific addition: Any changes or additions
  -# to this script should be Emailed to the Apache
  -# group ([EMAIL PROTECTED]) in general and to
  -# Jim Jagielski ([EMAIL PROTECTED]) in specific.
  +# (see http://www.apache.org/docs/LICENSE)  with one specific
  +# addition: Any changes or additions to this script should be
  +# Emailed to the Apache group ([EMAIL PROTECTED]) in general
  +# and to Jim Jagielski ([EMAIL PROTECTED]) in specific.
  +#
  +# Blame Jim; he wrote it (plus a cast of dozens)
   #
   # Be as similar to the output of config.guess/config.sub
   # as possible.
  
  
  
  1.2   +3 -0  apache-1.3/src/helpers/MakeEtags
  
  Index: MakeEtags
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/MakeEtags,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MakeEtags 1998/07/14 20:25:15 1.1
  +++ MakeEtags 1998/09/16 20:49:23 1.2
  @@ -5,6 +5,9 @@
   #helpers/MakeEtags
   # and will create a TAGS file in the src directory.
   
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   # Once you have created src/TAGS in emacs you'll need to setup
   # tag-table-alist with an entry to assure it finds the single src/TAGS
   # file from the many source directories.  Something along these lines:
  
  
  
  1.12  +5 -0  apache-1.3/src/helpers/PrintPath
  
  Index: PrintPath
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPath,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- PrintPath 1998/08/03 21:51:40 1.11
  +++ PrintPath 1998/09/16 20:49:23 1.12
  @@ -10,6 +10,11 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  +# Blame Jim; he wrote it.
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   ##
   # Some constants
   ##
  
  
  
  1.5   +5 -0  apache-1.3/src/helpers/PrintPathOS2
  
  Index: PrintPathOS2
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPathOS2,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PrintPathOS2  1998/08/03 21:51:40 1.4
  +++ PrintPathOS2  1998/09/16 20:49:24 1.5
  @@ -10,6 +10,11 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  +# Blame Jim; he wrote it (with major OS2 help from Brian H.)
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +#
   ##
   # Some constants
   ##
  
  
  
  1.15  +5 -0  apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- TestCompile   1998/08/03 21:51:40 1.14
  +++ TestCompile   1998/09/16 20:49:24 1.15
  @@ -32,6 +32,11 @@
   # located) if you want to test it out. Configure must
   # also call it as './helpers/TestCompile'
   #
  +# Blame Jim; he wrote it (along with a cast of dozens).
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   
   cd ./helpers
   
  
  
  
  1.2   +4 -0  apache-1.3/src/helpers/buildinfo.sh
  
  Index: buildinfo.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/buildinfo.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildinfo.sh  1998/08/25 09:52:40 1.1
  +++ buildinfo.sh  1998/09/16 20:49:24 1.2
  @@ -4,6 +4,10 @@
   ##  Written by Ralf S. Engelschall [EMAIL PROTECTED]
   ##  for the Apache's Autoconf-style Interface (APACI) 
   

cvs commit: apache-1.3/src/support suexec.c

1998-09-16 Thread manoj
manoj   98/09/16 13:51:09

  Modified:src/support suexec.c
  Log:
  Fix a missing semicolon
  
  Revision  ChangesPath
  1.46  +1 -1  apache-1.3/src/support/suexec.c
  
  Index: suexec.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/support/suexec.c,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- suexec.c  1998/09/10 09:23:59 1.45
  +++ suexec.c  1998/09/16 20:51:08 1.46
  @@ -211,7 +211,7 @@
   
   sprintf(pathbuf, PATH=%s, SAFE_PATH);
   cleanenv[cidx] = strdup(pathbuf);
  -cidx++
  +cidx++;
   
   for (ep = environ; *ep  cidx  AP_ENVBUF-1; ep++) {
if (!strncmp(*ep, HTTP_, 5)) {
  
  
  


cvs commit: apache-site/contributors index.html

1998-09-16 Thread stoddard
stoddard98/09/16 14:09:40

  Modified:.ABOUT_APACHE.html
   contributors index.html
  Log:
  Add contact information.
  
  Revision  ChangesPath
  1.21  +6 -0  apache-site/ABOUT_APACHE.html
  
  Index: ABOUT_APACHE.html
  ===
  RCS file: /export/home/cvs/apache-site/ABOUT_APACHE.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ABOUT_APACHE.html 1998/08/19 02:50:44 1.20
  +++ ABOUT_APACHE.html 1998/09/16 21:09:38 1.21
  @@ -256,6 +256,12 @@
 /TD
/TR
TR
  +  TDBill 
Stoddardnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;
  +  /TD
  +  TDIBM Corp., Research Triangle Park, North Carolina
  +  /TD
  + /TR
  + TR
 TDPaul
  Suttonnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;
 /TD
  
  
  
  1.51  +12 -0 apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- index.html1998/07/30 05:39:03 1.50
  +++ index.html1998/09/16 21:09:39 1.51
  @@ -78,6 +78,9 @@
TDSTRONGA HREF=#slemkoMarc Slemko/A/STRONG
TDSecurity, networking issues
   TR VALIGN=TOP
  + TDSTRONGA HREF=#stoddardBill Stoddard/A/STRONG
  + TD
  +TR VALIGN=TOP
TDSTRONGA HREF=#suttonPaul Sutton/A/STRONG
TDDocumentation writing, code hacking, bug fixing
   TR VALIGN=TOP
  @@ -442,6 +445,15 @@
   STRONGOS Expertise:/STRONG OS/2, Win32s, Windows NT, and UNIX.BR
   STRONGContributions:/STRONG OS/2 port of Apache. See the OS/2 specific 
pages at
   A 
HREF=http://www.slink.com/ApacheOS2/;http://www.slink.com/ApacheOS2//ABR
  +
  +P
  +STRONGName:/STRONG A NAME=stoddardBill Stoddard/ABR
  +STRONGEmail:/STRONG A HREF=mailto:[EMAIL PROTECTED][EMAIL 
PROTECTED]/ABR
  +STRONGURL:/STRONG A 
HREF=http://www.software.ibm.com/webservers/;http://www.software.ibm.com/webservers//ABR
  +STRONGOrganization:/STRONG IBM Corp.BR
  +STRONGOccupation:/STRONG Software Development EngineerBR
  +STRONGLocation:/STRONG Research Triangle Park, NC, USABR
  +STRONGOS Expertise:/STRONG AIX, Windows NTBR
   
   P