brian       98/05/11 12:56:06

  Modified:    src      CHANGES Configure conf.h
  Log:
  Support for NCR MP/RAS 3.0 [John Withers <[EMAIL PROTECTED]>]
  
  Revision  Changes    Path
  1.308     +2 -0      apache-1.2/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.2/src/CHANGES,v
  retrieving revision 1.307
  retrieving revision 1.308
  diff -u -r1.307 -r1.308
  --- CHANGES   1998/05/08 06:29:32     1.307
  +++ CHANGES   1998/05/11 19:56:04     1.308
  @@ -1,5 +1,7 @@
   Changes with Apache 1.2.7
   
  +  *) Support for NCR MP/RAS 3.0 [John Withers <[EMAIL PROTECTED]>]
  +
     *) Correct a protocol issue - always send the "Accept-ranges: bytes"
        header in the default_handler. [Brian Behlendorf]
   
  
  
  
  1.100     +6 -0      apache-1.2/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.2/src/Configure,v
  retrieving revision 1.99
  retrieving revision 1.100
  diff -u -r1.99 -r1.100
  --- Configure 1998/03/20 18:25:28     1.99
  +++ Configure 1998/05/11 19:56:04     1.100
  @@ -482,6 +482,12 @@
        OS='Paragon OSF/1'
        CFLAGS="$CFLAGS -DPARAGON"
        ;;
  +    4850-*.*)
  +        OS='NCR MP/RAS'
  +        CFLAGS="$CFLAGS -DSVR4 -DMPRAS"
  +        DEF_WANTHSREGEX="yes"
  +        LIBS="$LIBS -lsocket -lnsl -lc -L/usr/ucblib -lucb"
  +        ;;
       *) # default: Catch systems we don't know about
        echo Sorry, but we cannot grok \"$PLAT\"
        echo uname -m
  
  
  
  1.104     +2 -0      apache-1.2/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.2/src/conf.h,v
  retrieving revision 1.103
  retrieving revision 1.104
  diff -u -r1.103 -r1.104
  --- conf.h    1998/04/13 11:45:37     1.103
  +++ conf.h    1998/05/11 19:56:05     1.104
  @@ -336,8 +336,10 @@
   #define NO_KILLPG
   #undef  NO_SETSID
   #undef NEED_STRDUP
  +#ifndef MPRAS
   #define NEED_STRCASECMP
   #define NEED_STRNCASECMP
  +#endif
   #define bzero(a,b) memset(a,0,b)
   #define JMP_BUF sigjmp_buf
   /* A lot of SVR4 systems need this */
  
  
  

Reply via email to