cvs commit: apache-2.0/nsprpub/pr/src/md/unix aux.c

1998-09-23 Thread jim
jim 98/09/22 18:18:31

  Modified:nsprpub/config nsinstall.c
   nsprpub/pr/include/md Makefile _unixos.h prosdep.h
  Added:   nsprpub/config A_UX.mk
   nsprpub/pr/include/md _aux.cfg _aux.h
   nsprpub/pr/src/md/unix aux.c
  Log:
  Add a work in progress...
  
  Revision  ChangesPath
  1.2   +15 -4 apache-2.0/nsprpub/config/nsinstall.c
  
  Index: nsinstall.c
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/config/nsinstall.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- nsinstall.c   1998/06/30 08:36:32 1.1
  +++ nsinstall.c   1998/09/23 01:18:29 1.2
  @@ -24,6 +24,7 @@
   #include   /* OSF/1 requires this before grp.h, so put it first */
   #include 
   #include 
  +#include 
   #include 
   #include 
   #include 
  @@ -37,10 +38,15 @@
   
   #define HAVE_LCHOWN
   
  -#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(LINUX) || 
defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY)
  +#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(linux) || 
defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY) || 
defined(AUX)
   #undef HAVE_LCHOWN
   #endif
   
  +#if defined(AUX)
  +extern char *optarg;
  +extern int optind, opterr;
  +#endif
  +
   /*
* Does getcwd() take NULL as the first argument and malloc
* the result buffer?
  @@ -49,7 +55,7 @@
   #define GETCWD_CAN_MALLOC
   #endif
   
  -#ifdef LINUX
  +#ifdef linux
   #include 
   #endif
   
  @@ -78,7 +84,8 @@
   {
   char *cp;
   struct stat sb;
  -
  +int res;
  +
   while (*path == '/' && path[1] == '/')
path++;
   while ((cp = strrchr(path, '/')) && cp[1] == '\0')
  @@ -91,7 +98,11 @@
}
*cp = '/';
   }
  -return mkdir(path, mode);
  +res = mkdir(path, mode);
  +if ((res != 0) && (errno == EEXIST))
  +  return 0;
  +else
  +  return res;
   }
   
   static uid_t
  
  
  
  1.1  apache-2.0/nsprpub/config/A_UX.mk
  
  Index: A_UX.mk
  ===
  #
  # The contents of this file are subject to the Netscape Public License
  # Version 1.0 (the "NPL"); you may not use this file except in
  # compliance with the NPL.  You may obtain a copy of the NPL at
  # http://www.mozilla.org/NPL/
  # 
  # Software distributed under the NPL is distributed on an "AS IS" basis,
  # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  # for the specific language governing rights and limitations under the
  # NPL.
  # 
  # The Initial Developer of this code under the NPL is Netscape
  # Communications Corporation.  Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  # Reserved.
  #
  
  #
  # Config stuff for SCO OpenServer for x86.
  # SCO OpenServer 5, based on SVR3.2, is intended for small to
  # medium customers.
  #
  
  include $(MOD_DEPTH)/config/UNIX.mk
  
  CC= gcc -D_POSIX_SOURCE
  CCC   = g++
  # CCC = $(DEPTH)/build/hcpp +.cpp +w
  RANLIB= /bin/true
  
  DEFINES   += -D_PR_LOCAL_THREADS_ONLY
  DEFAULT_IMPL_STRATEGY = _CLASSIC
  #
  # -DSCO - Changes to Netscape source (consistent with AIX, LINUX, etc..)
  # -Dsco - Needed for /usr/include/X11/*
  #
  ifdef USE_AUTOCONF
  OS_CFLAGS
  else
  OS_CFLAGS = -DAUX -DAUX3
  endif
  
  #OS_LIBS  = -lpmapi -lsocket -lc
  
  CPU_ARCH  = m68k
  ARCH= aux
  
  NOSUCHFILE= /no-such-file
  
  BSDECHO   = /bin/echo
  
  
  
  
  1.2   +12 -0 apache-2.0/nsprpub/pr/include/md/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/include/md/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile  1998/06/30 08:36:31 1.1
  +++ Makefile  1998/09/23 01:18:29 1.2
  @@ -55,6 +55,10 @@
   MDCPUCFG_H = _freebsd.cfg
   endif
   
  +ifeq ($(OS_ARCH),NetBSD)
  +MDCPUCFG_H = _netbsd.cfg
  +endif
  +
   ifeq ($(OS_ARCH),HP-UX)
   MDCPUCFG_H = _hpux.cfg
   endif
  @@ -101,6 +105,14 @@
   
   ifeq ($(OS_ARCH),NCR)
   MDCPUCFG_H = _ncr.cfg
  +endif
  +
  +ifeq ($(OS_ARCH),DGUX)
  +MDCPUCFG_H = _dgux.cfg
  +endif
  +
  +ifeq ($(OS_ARCH),A_UX)
  +MDCPUCFG_H = _aux.cfg
   endif
   
   export:: $(HEADERS) $(MDCPUCFG_H)
  
  
  
  1.2   +3 -1  apache-2.0/nsprpub/pr/include/md/_unixos.h
  
  Index: _unixos.h
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/include/md/_unixos.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- _unixos.h 199

cvs commit: apache-site/dist .htaccess

1998-09-23 Thread rse
rse 98/09/23 03:01:20

  Modified:dist .htaccess
  Log:
  Start preparation of release with tarballs, so mirrors can update.
  
  Revision  ChangesPath
  1.11  +3 -3  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- .htaccess 1998/09/22 18:52:30 1.10
  +++ .htaccess 1998/09/23 10:01:19 1.11
  @@ -1,9 +1,9 @@
   IndexOptions FancyIndexing NameWidth=* ScanHTMLTitles
   AddDescription "1.2.6 compressed source" apache_1.2.6.tar.Z
   AddDescription "1.2.6 gzipped source" apache_1.2.6.tar.gz
  -AddDescription "1.3.1 compressed source" apache_1.3.1.tar.Z
  -AddDescription "1.3.1 gzipped source" apache_1.3.1.tar.gz
  -AddDescription "1.3.1 Win32 binary" apache_1_3_1.exe
  +AddDescription "1.3.2 compressed source" apache_1.3.2.tar.Z
  +AddDescription "1.3.2 gzipped source" apache_1.3.2.tar.gz
  +AddDescription "1.3.2 Win32 binary" apache_1_3_2_win32_1.exe
   AddDescription "List of changes in 1.3" /export/pub/apache/dist/CHANGES_1.3
   AddDescription "List of changes in 1.2" /export/pub/apache/dist/CHANGES_1.2
   AddDescription "Developer PGP keys" /export/pub/apache/dist/KEYS
  
  
  


cvs commit: apache-1.3 Announcement

1998-09-23 Thread rse
rse 98/09/23 03:13:03

  Modified:.Announcement
  Log:
  Minor corrections to Announcement text
  
  Revision  ChangesPath
  1.36  +7 -7  apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- Announcement  1998/09/21 18:56:58 1.35
  +++ Announcement  1998/09/23 10:13:02 1.36
  @@ -5,18 +5,18 @@
   1.3.2 of the Apache HTTP server.  
   
   The changes in this release consist of Unix portability fixes,
  -DoS issues, and assorted other minor features or fixes.  Users
  -should review the CHANGES file and decide on their upgrade plans;
  -We consider Apache 1.3.2 to be the most stable version of Apache
  -available.
  +DoS issues, Proxy and DSO enhancements, and assorted other minor
  +features or fixes.  Users should review the CHANGES file and
  +decide on their upgrade plans; We consider Apache 1.3.2 to be the
  +most stable version of Apache available.
   
   Apache 1.3.2 is available for download from
   
   http://www.apache.org/dist/
   
  -Please see the CHANGES file in the same directory for a full list
  -of changes.  The distribution is also available via any of the
  -mirrors listed at
  +Please see the CHANGES_1.3 file in the same directory for a full
  +list of changes.  The distribution is also available via any of
  +the mirrors listed at
   
   http://www.apache.org/mirrors/
   
  
  
  


cvs commit: apache-site/dist Announcement.html Announcement.txt HEADER.html README.html

1998-09-23 Thread rse
rse 98/09/23 03:17:52

  Modified:dist Announcement.html Announcement.txt HEADER.html
README.html
  Log:
  Update dist/ area for Apache 1.3.2
  
  Revision  ChangesPath
  1.9   +21 -51apache-site/dist/Announcement.html
  
  Index: Announcement.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/Announcement.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Announcement.html 1998/07/22 20:10:07 1.8
  +++ Announcement.html 1998/09/23 10:17:50 1.9
  @@ -1,40 +1,33 @@
   
   
  -Apache 1.3.1 Released
  +Apache 1.3.2 Released
   
   
   
  -Apache 1.3.1 Released
  +Apache 1.3.2 Released
   
   
  -The Apache Group is pleased to announce the release of version 1.3.1 
  -of the Apache HTTP server.  
  +The Apache Group is pleased to announce the release of version
  +1.3.2 of the Apache HTTP server.  
   
   
  -The changes in this release consist of UNIX portability fixes, Win32
  -security issues, and assorted other minor features or fixes.  
  +The changes in this release consist of Unix portability fixes,
  +DoS issues, Proxy and DSO enhancements, and assorted other minor
  +features or fixes.  Users should review the CHANGES file and
  +decide on their upgrade plans; We consider Apache 1.3.2 to be the
  +most stable version of Apache available.
   
   
  -WE URGE ALL USERS RUNNING ANY PREVIOUS VERSION OF APACHE ON WIN32
  -TO UPGRADE IMMEDIATELY.
  +Apache 1.3.2 is available for download from
   
  -
  -Users on other platforms should review the CHANGES file and decide
  -on their upgrade plans; the security issues apply only to Apache
  -on Win32.  We consider Apache 1.3.1 to be the most stable version
  -of Apache available.
  -
  -
  -Apache 1.3.1 is available for download from
  -
   
http://www.apache.org/dist/";>http://www.apache.org/dist/
   
   
   
  -Please see the CHANGES file in the same directory for a full list of 
  -changes.  The distribution is also available via any of the mirrors
  -listed at
  +Please see the CHANGES_1.3 file in the same directory for a full
  +list of changes.  The distribution is also available via any of
  +the mirrors listed at
   
   
http://www.apache.org/mirrors/";>http://www.apache.org/mirrors/
  @@ -49,17 +42,17 @@
   
   
   In general, Apache 1.3 offers several substantial improvements
  -over version 1.2, including better performance, reliability
  -and a wider-range of supported platforms, including Windows 95 and
  -NT (which both fall under the "Win32" label).
  +over version 1.2, including better performance, reliability and a
  +wider-range of supported platforms, including Windows 95 and NT
  +(which both fall under the "Win32" label).
   
   
   Apache is the most popular web-server in the known universe; over
  -half of the servers on the Internet are running Apache or one of its
  -variants.
  +half of the servers on the Internet are running Apache or one of
  +its variants.
   
   
  -IMPORTANT NOTE FOR WIN32 USERS: Over the years, many users have
  +IMPORTANT NOTE FOR WIN32 USERS: Over the years, many users have
   come to trust Apache as a secure and stable server.  It must
   be realized that the current Win32 code has not yet reached these
   levels and should still be considered to be of beta quality.  Any
  @@ -68,29 +61,6 @@
   and resources by individuals and companies, we hope that the Win32
   version of Apache will grow stronger through the 1.3.x release
   cycle.
  -
  -Versions of Apache on Win32 prior to version 1.3.1 are vulnerable
  -to a number of security holes common to several Win32 servers.
  -The problems that impact Apache include:
   
  -
  -  trailing "."s are ignored by the file system.  This allowed
  -   certain types of access restrictions to be bypassed.
  - directory names of three or more dots (eg. "...") are
  -   considered to be valid similar to "..".  This allowed people
  -   to gain access to files outside of the configured document
  -   trees.
  -
  -
  -
  -There have been at least four other similar instances of the same
  -basic problem: on Win32, there is more than one name for a file.
  -Some of these names are poorly documented or undocumented, and even
  -Microsoft's own IIS has been vulnerable to many of these problems.
  -This behavior of the Win32 file system and API makes it very difficult
  -to insure future security; problems of this type have been known
  -about for years, however each specific instance has been discovered
  -individually.  It is unknown if there are other, yet unpublicized,
  -filename variants.  As a result, we recommend that you use extreme
  -caution when dealing with access restrictions on all Win32 web
  -servers.
  +
  +
  
  
  
  1.5   +20 -47apache-site/dist/Announcement.txt
  
  Index: Announcement.txt
  

cvs commit: apache-site/dist .htaccess

1998-09-23 Thread rse
rse 98/09/23 03:20:32

  Modified:dist .htaccess
  Log:
  One more 1.3.1->1.3.2
  
  Revision  ChangesPath
  1.12  +1 -1  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- .htaccess 1998/09/23 10:01:19 1.11
  +++ .htaccess 1998/09/23 10:20:31 1.12
  @@ -8,7 +8,7 @@
   AddDescription "List of changes in 1.2" /export/pub/apache/dist/CHANGES_1.2
   AddDescription "Developer PGP keys" /export/pub/apache/dist/KEYS
   AddDescription "PGP signature" *.asc
  -AddDescription "Apache 1.3.1 Released" Announcement.txt
  +AddDescription "Apache 1.3.2 Released" Announcement.txt
   AddDescription "Binary distributions" /export/pub/apache/dist/binaries
   AddDescription "Contributed software" /export/pub/apache/dist/contrib
   AddDescription "Old source & binaries" /export/pub/apache/dist/old
  
  
  


cvs commit: apache-site index.html

1998-09-23 Thread rse
rse 98/09/23 03:28:02

  Modified:.index.html
  Log:
  And finally update the frontdoor for Apache 1.3.2
  
  Revision  ChangesPath
  1.67  +3 -3  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- index.html1998/08/27 03:54:42 1.66
  +++ index.html1998/09/23 10:28:01 1.67
  @@ -51,13 +51,13 @@
   
   
   
  -Apache 1.3.1 Now Available
  +Apache 1.3.2 Now Available
   
   
   
The Apache Group is pleased to announce the release of the
  - 1.3.1 version of the Apache HTTP server, including a long-awaited Win32 
build.
  - Apache 1.3.1 is the most stable version of Apache currently available;
  + 1.3.2 version of the Apache HTTP server, including a Win32 build.
  + Apache 1.3.2 is the most stable version of Apache currently available;
everyone running 1.2.X servers or earlier should upgrade to 1.3, as we
will stop providing support for the 1.2.X tree, though we may make a
release of 1.2.7. At present, the Win32 port of Apache is not
  
  
  


cvs commit: apache-site/dist .htaccess

1998-09-23 Thread coar
coar98/09/23 04:20:14

  Modified:dist .htaccess
  Log:
Put the 1.3.1 descriptions back in, since they're inherited by
the subdirectories.
  
  Revision  ChangesPath
  1.13  +3 -0  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- .htaccess 1998/09/23 10:20:31 1.12
  +++ .htaccess 1998/09/23 11:20:13 1.13
  @@ -1,6 +1,9 @@
   IndexOptions FancyIndexing NameWidth=* ScanHTMLTitles
   AddDescription "1.2.6 compressed source" apache_1.2.6.tar.Z
   AddDescription "1.2.6 gzipped source" apache_1.2.6.tar.gz
  +AddDescription "1.3.1 compressed source" apache_1.3.1.tar.Z
  +AddDescription "1.3.1 gzipped source" apache_1.3.1.tar.gz
  +AddDescription "1.3.1 Win32 binary" apache_1_3_1.exe
   AddDescription "1.3.2 compressed source" apache_1.3.2.tar.Z
   AddDescription "1.3.2 gzipped source" apache_1.3.2.tar.gz
   AddDescription "1.3.2 Win32 binary" apache_1_3_2_win32_1.exe
  
  
  


cvs commit: apache-site/dist .htaccess

1998-09-23 Thread coar
coar98/09/23 04:25:14

  Modified:dist .htaccess
  Log:
Rename the Win32 installer binary as Paul requested.  (Good sense,
although I wish we'd settle on a consistent naming scheme for
these.)
  
  Revision  ChangesPath
  1.14  +1 -1  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- .htaccess 1998/09/23 11:20:13 1.13
  +++ .htaccess 1998/09/23 11:25:14 1.14
  @@ -6,7 +6,7 @@
   AddDescription "1.3.1 Win32 binary" apache_1_3_1.exe
   AddDescription "1.3.2 compressed source" apache_1.3.2.tar.Z
   AddDescription "1.3.2 gzipped source" apache_1.3.2.tar.gz
  -AddDescription "1.3.2 Win32 binary" apache_1_3_2_win32_1.exe
  +AddDescription "1.3.2 Win32 binary" apache_1_3_2_win32.exe
   AddDescription "List of changes in 1.3" /export/pub/apache/dist/CHANGES_1.3
   AddDescription "List of changes in 1.2" /export/pub/apache/dist/CHANGES_1.2
   AddDescription "Developer PGP keys" /export/pub/apache/dist/KEYS
  
  
  


cvs commit: apache-site bug_report.html security_report.html

1998-09-23 Thread coar
coar98/09/23 08:42:42

  Modified:.bug_report.html security_report.html
  Log:
The CERT points to our bug-report page, so make it clear how
to let us know about security issues.
  
  Revision  ChangesPath
  1.19  +8 -5  apache-site/bug_report.html
  
  Index: bug_report.html
  ===
  RCS file: /export/home/cvs/apache-site/bug_report.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- bug_report.html   1998/08/11 03:19:15 1.18
  +++ bug_report.html   1998/09/23 15:42:40 1.19
  @@ -12,9 +12,15 @@
   >
   
   
  -Apache Bug Reporting Page
  +Apache Bug Reporting Page
   
  -Welcome to the Apache Bug Reporting Page!  If you are having trouble
  +
  +Reports of security issues should not be reported here.
  +Please see the security report page
  +if you have concerns or think you have discovered a security hole in
  +the Apache Web server software.
  +
  +If you are having trouble
   with Apache, please fill out a problem report form and submit it.  
   Before you do that, though, make sure you
   have done all of the following:
  @@ -96,9 +102,6 @@
   
   
   Do NOT send configuration questions or requests for help debugging 
CGI!
  -
  -Folks wishing to report a security/denial of service bug may want to
  -visit this page.
   
   
   
  
  
  
  1.3   +1 -1  apache-site/security_report.html
  
  Index: security_report.html
  ===
  RCS file: /export/home/cvs/apache-site/security_report.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- security_report.html  1998/09/07 03:22:04 1.2
  +++ security_report.html  1998/09/23 15:42:41 1.3
  @@ -22,7 +22,7 @@
   We cannot accept regular bug reports or other queries at
   this address, we ask that you use our bug
   reporting page for those.  All mail sent to 
  -this address that is not reporting a security hole will be ignored.
  +this address that does not relate to security issues will be ignored.
   
   
   Note that all networked servers are subject to denial of service
  
  
  


cvs commit: apache-2.0/nsprpub/pr/src/md/unix unix.c

1998-09-23 Thread jim
jim 98/09/23 11:50:26

  Modified:nsprpub/config nsinstall.c
   nsprpub/pr/include/md _aux.h
   nsprpub/pr/src/io prfile.c
   nsprpub/pr/src/malloc prmalloc.c
   nsprpub/pr/src/md prosdep.c
   nsprpub/pr/src/md/unix unix.c
  Log:
  Add some more 'safe' patches and reverse that
  strange LINUX->linux rename that somehow got folded in
  
  Revision  ChangesPath
  1.3   +3 -3  apache-2.0/nsprpub/config/nsinstall.c
  
  Index: nsinstall.c
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/config/nsinstall.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- nsinstall.c   1998/09/23 01:18:29 1.2
  +++ nsinstall.c   1998/09/23 18:50:22 1.3
  @@ -38,7 +38,7 @@
   
   #define HAVE_LCHOWN
   
  -#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(linux) || 
defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY) || 
defined(AUX)
  +#if defined(AIX) || defined(BSDI) || defined(HPUX) || defined(LINUX) || 
defined(SUNOS4) || defined(SCO) || defined(UNIXWARE) || defined(RHAPSODY) || 
defined(AUX)
   #undef HAVE_LCHOWN
   #endif
   
  @@ -55,11 +55,11 @@
   #define GETCWD_CAN_MALLOC
   #endif
   
  -#ifdef linux
  +#ifdef LINUX
   #include 
   #endif
   
  -#if defined(SCO) || defined(UNIXWARE) || defined(SNI) || defined(NCR) || 
defined(NEC)
  +#if defined(SCO) || defined(UNIXWARE) || defined(SNI) || defined(NCR) || 
defined(NEC) || defined(AUX)
   #if !defined(S_ISLNK) && defined(S_IFLNK)
   #define S_ISLNK(a)   (((a) & S_IFMT) == S_IFLNK)
   #endif
  
  
  
  1.2   +1 -0  apache-2.0/nsprpub/pr/include/md/_aux.h
  
  Index: _aux.h
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/include/md/_aux.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- _aux.h1998/09/23 01:18:30 1.1
  +++ _aux.h1998/09/23 18:50:23 1.2
  @@ -33,6 +33,7 @@
   
   #undef   HAVE_DLL
   #undef   USE_DLFCN
  +#define PR_DLL_SUFFIX ""
   #define _PR_RECV_BROKEN /* recv doesn't work on Unix Domain Sockets */
   
   #if !defined (HAVE_STRERROR)
  
  
  
  1.2   +4 -4  apache-2.0/nsprpub/pr/src/io/prfile.c
  
  Index: prfile.c
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/src/io/prfile.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- prfile.c  1998/06/30 08:36:30 1.1
  +++ prfile.c  1998/09/23 18:50:23 1.2
  @@ -266,7 +266,7 @@
   
   PRInt32 PR_GetSysfdTableMax(void)
   {
  -#if defined(XP_UNIX) && !defined(AIX)
  +#if defined(XP_UNIX) && !defined(AIX) && !defined(AUX)
   struct rlimit rlim;
   
   if ( getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
  @@ -275,7 +275,7 @@
   }
   
   return rlim.rlim_max;
  -#elif defined(AIX)
  +#elif defined(AIX) || defined(AUX)
   return sysconf(_SC_OPEN_MAX);
   #elif defined(WIN32) || defined(OS2)
   /*
  @@ -295,7 +295,7 @@
   
   PRInt32 PR_SetSysfdTableSize(int table_size)
   {
  -#if defined(XP_UNIX) && !defined(AIX)
  +#if defined(XP_UNIX) && !defined(AIX) && !defined(AUX)
   struct rlimit rlim;
   PRInt32 tableMax = PR_GetSysfdTableMax();
   
  @@ -319,7 +319,7 @@
   }
   
   return rlim.rlim_cur;
  -#elif defined(AIX) || defined(WIN32) || defined(WIN16) || defined(OS2)
  +#elif defined(AIX) || defined(WIN32) || defined(WIN16) || defined(OS2) || 
defined(AUX)
   PR_SetError(PR_NOT_IMPLEMENTED_ERROR, 0);
   return -1;
   #elif defined (XP_MAC)
  
  
  
  1.2   +2 -0  apache-2.0/nsprpub/pr/src/malloc/prmalloc.c
  
  Index: prmalloc.c
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/src/malloc/prmalloc.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- prmalloc.c1998/06/30 08:36:31 1.1
  +++ prmalloc.c1998/09/23 18:50:24 1.2
  @@ -88,7 +88,9 @@
   #include 
   #include 
   #include 
  +#if !defined(AUX)
   #include 
  +#endif
   #endif
   
   /*
  
  
  
  1.2   +1 -1  apache-2.0/nsprpub/pr/src/md/prosdep.c
  
  Index: prosdep.c
  ===
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/src/md/prosdep.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- prosdep.c 1998/06/30 08:36:31 1.1
  +++ prosdep.c 1998/09/23 18:50:25 1.2
  @@ -42,7 +42,7 @@
   /* Get page size */
   #ifdef XP_UNIX
   #if defined SUNOS4 || defined LINUX || defined BSDI || defined AIX \
  - || defined FREEBSD || defined RHAPSODY
  + || defined FREEBSD || defined NETBSD || defined RHAPSODY || defined AUX
   _pr_pageSize = getpagesize();
   #elif defined(HPUX)
   /

cvs commit: apache-1.3/src/modules/standard mod_speling.c

1998-09-23 Thread manoj
manoj   98/09/23 15:42:06

  Modified:src  CHANGES
   src/modules/standard mod_speling.c
  Log:
  PR: 3052
  Reviewed by:  Ken Coar <[EMAIL PROTECTED]>
  
  Fix mod_speling's handling of multiple matched URLs.
  
  Revision  ChangesPath
  1.1073+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1072
  retrieving revision 1.1073
  diff -u -r1.1072 -r1.1073
  --- CHANGES   1998/09/22 09:19:51 1.1072
  +++ CHANGES   1998/09/23 22:42:03 1.1073
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.3
   
  +  *) Fix mod_speling's handling of multiple matched URLs.
  + [Manoj Kasichainula]
  +
 *) Correct comment in mod_log_config.c about its internals.
[Elf Sternberg <[EMAIL PROTECTED]>]
   
  
  
  
  1.27  +4 -0  apache-1.3/src/modules/standard/mod_speling.c
  
  Index: mod_speling.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_speling.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- mod_speling.c 1998/09/19 12:16:38 1.26
  +++ mod_speling.c 1998/09/23 22:42:05 1.27
  @@ -506,6 +506,10 @@
 : "Spelling fix: %s: %d candidates",
 r->uri, candidates->nelts, ref);
   
  +/* The log entry above will be sent to the client instead of the
  + * page we've constructed unless we take it out of error-notes */
  +ap_table_unset(r->notes, "error-notes");
  +
   return HTTP_MULTIPLE_CHOICES;
   }
   }
  
  
  


cvs commit: apache-1.3 STATUS

1998-09-23 Thread fielding
fielding98/09/23 16:12:41

  Modified:.STATUS
  Log:
  Update release status and binary table.
  
  Revision  ChangesPath
  1.489 +15 -51apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.488
  retrieving revision 1.489
  diff -u -r1.488 -r1.489
  --- STATUS1998/09/22 18:26:52 1.488
  +++ STATUS1998/09/23 23:12:40 1.489
  @@ -2,46 +2,11 @@
   
   Release:
   
  -1.3.2: In preparation for a release.
  -   - Tarball rolled on ..  Mon, 21 Sep 1998
  - See: ftp://dev.apache.org/httpd/dist/
  -   - Release and announcement proposed for Wed, 23 Sep 1998
  -   - Ralf is the release manager.
  -
  -   Current test status:
  -   o FreeBSD 2.2.6 .. Ok (Ralf S. Engelschall)
  -   o FreeBSD 2.2.7 .. Ok (Jim Jagielski)
  -   o Debian GNU/Linux 1.3 ... Ok (Ralf S. Engelschall)
  -   o RedHat 4.2 . Ok (Ken Coar)
  -   o RedHat 5.1 . Ok (Shane Owenby)
  -   o HPUX 10.20 . Ok (Ralf S. Engelschall)
  -   o AIX 4.1.5 .. Ok (Jens-Uwe Mager)
  -   o AIX 4.1.5 / gcc 2.7.2.2  Ok (Shane Owenby)
  -   o AIX 4.1.5 / xlC 3.6.4 .. Fails (Shane Owenby)
  -   [KNOWN PROBLEM]
  -   o AIX 4.2.1 .. Ok (Bill Stoddard)
  -   o AIX 4.2.1 / xlC 3.1.4 .. Ok (Shane Owenby)
  -   o AIX 4.3.1 / xlC 3.1.4 .. Ok (Shane Owenby)
  -   o Solaris 2.6 / gcc .. Ok (Ralf S. Engelschall)
  -   o Solaris 2.6 / SPARCWorks compiler .. Ok (Shane Owenby)
  -   o Solaris 2.5 / gcc .. Ok (Roy Fielding)
  -   o Solaris 2.5.1 / gcc  Ok (Shane Owenby)
  -   o Solaris 2.5.1 / SPARCWorks comp. ... Ok (Shane Owenby)
  -   o SunOS 4.1.3  Ok (Ralf S. Engelschall)
  -   o Digital Unix 4.0D / gcc  & DEC C ... Ok (Charles Randall)
  -   o Digital Unix 4.0B / DEC C .. Ok (Charles Randall)
  -   o IRIX 6.2 ... Ok (Dan Jacobowitz)
  -   o OS\2 ... Ok (Brian Havard)
  -   o Windows NT (general) Ok (Bill Stoddard)
  -   o Netwinder .. Fails (Rasmus Lerdorf)
  -   [NOT CRITICAL]
  -   o A/UX 3.1.1 . Ok (Jim Jagielski)
  -o ReliantUNIX-mips / cc .. Ok (Martin Kraemer)
  -o SINIX-intel / cc ... Ok (Martin Kraemer)
  +1.3.3-dev: current
   
  +1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd.
   1.3.1: Tagged and rolled on July 19. Announced and released.
  -
  -1.3.0: Tagged and rolled on June 1. Announced and Released on the 6th.
  +1.3.0: Tagged and rolled on June 1.  Announced and released on the 6th.
  
   2.0  : In pre-alpha development, see apache-2.0 repository
   
  @@ -50,10 +15,6 @@
   * need to ensure it compiles properly on win32 before rolling the 
 tarball, and that no last minute changes break it
   
  -* WARNING-NT.TXT; why did Roy remove it?  Either we have to agree to
  -  remove it from the installer, etc. or it has to go back.  
  -  Marc: -1 on a release without it without some justification
  -
   Documentation that needs writing:
   
   * Need a document explaining mod_rewrite/"UseCanonicalName off" based
  @@ -64,6 +25,9 @@
   
   Available Patches:
   
  +* Earle Ake: Apache 1.3.1 port to Pyramid DC/OSx
  +  <[EMAIL PROTECTED]>
  +
   * Patches for the DSO/mod_perl problem (see below for description):
   
 Ralf's "[PATCH] Fix module init"
  @@ -491,24 +455,24 @@
  for the two stable release versions, and nothing under Old unless
  the new version just doesn't work on that platform.
   
  -1.2.6   1.3.1   Old
  -   aix_4.1N   Y 1.2.5, 1.3.0
  +1.2.6   1.3.2   Old
  +   aix_4.1N   N 1.2.5, 1.3.1
  alphalinux N   N 1.3.0
  aux_3.1N   N 1.3.0
  decalphaNT N   N 1.3b6
  -   dunix_4.0  N   Y 1.2.4, 1.3.0
  +   dunix_4.0  N   N 1.2.4, 1.3.0, 1.3.1
  freebsd_2.1N   N 1.2.4
  freebsd_2.2N   N 1.2.5
  hpux_10.20 N   N 1.2.5
  -   hpux_11N   Y
  +   hpux_11N   Y 
  irix_