brian       98/05/11 12:59:02

  Modified:    src      CHANGES Configure
               src/include conf.h
  Log:
  Support for the NCR MP/RAS 3.0 [John Withers <[EMAIL PROTECTED]>]
  
  Revision  Changes    Path
  1.845     +2 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.844
  retrieving revision 1.845
  diff -u -r1.844 -r1.845
  --- CHANGES   1998/05/11 15:03:12     1.844
  +++ CHANGES   1998/05/11 19:58:56     1.845
  @@ -1,5 +1,7 @@
   Changes with Apache 1.3b7
   
  +  *) Support for the NCR MP/RAS 3.0 [John Withers <[EMAIL PROTECTED]>]
  +
     *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
        not retrieved in src/Configure and thus was not useable.
        [Ralf S. Engelschall]
  
  
  
  1.260     +6 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.259
  retrieving revision 1.260
  diff -u -r1.259 -r1.260
  --- Configure 1998/05/11 10:13:26     1.259
  +++ Configure 1998/05/11 19:58:57     1.260
  @@ -672,6 +672,12 @@
        CFLAGS="$CFLAGS -DBEOS"
        DEF_WANTHSREGEX=yes
        ;;
  +    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
           OS='Unknown and unsupported OS'
        echo Sorry, but we cannot grok \"$PLAT\"
  
  
  
  1.210     +3 -1      apache-1.3/src/include/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
  retrieving revision 1.209
  retrieving revision 1.210
  diff -u -r1.209 -r1.210
  --- conf.h    1998/05/09 17:29:44     1.209
  +++ conf.h    1998/05/11 19:59:01     1.210
  @@ -485,10 +485,12 @@
   #define NO_KILLPG
   #undef  NO_SETSID
   #undef NEED_STRDUP
  +#ifndef MPRAS
   #define NEED_STRCASECMP
   #ifndef ENCORE
   #define NEED_STRNCASECMP
  -#endif
  +#endif /* ENCORE */
  +#endif /* MPRAS */
   #define bzero(a,b) memset(a,0,b)
   /* A lot of SVR4 systems need this */
   #ifndef USE_SYSVSEM_SERIALIZED_ACCEPT
  
  
  

Reply via email to