rse         98/06/29 05:21:04

  Modified:    src      CHANGES Configure
               src/helpers GuessOS
  Log:
  PORT: Add UnixWare 7 support
  
  Submitted by: Vadim Kostoglodoff <[EMAIL PROTECTED]>
  Reviewed and fixed (UW=7 -> UW=700) by: Ralf S. Engelschall
  PR: 2463
  
  Revision  Changes    Path
  1.939     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.938
  retrieving revision 1.939
  diff -u -r1.938 -r1.939
  --- CHANGES   1998/06/29 12:10:51     1.938
  +++ CHANGES   1998/06/29 12:21:01     1.939
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) PORT: Add UnixWare 7 support
  +     [Vadim Kostoglodoff <[EMAIL PROTECTED]>] PR#2463
  +
     *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
        used instead of "$PERL" which contains the correctly determined Perl
        interpreter (important for instance on systems where "perl" and "perl5"
  
  
  
  1.270     +6 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.269
  retrieving revision 1.270
  diff -u -r1.269 -r1.270
  --- Configure 1998/06/29 12:10:52     1.269
  +++ Configure 1998/06/29 12:21:02     1.270
  @@ -584,6 +584,12 @@
        LIBS="$LIBS -lsocket -lnsl -lcrypt -lgen"
        DBM_LIB=""
        ;;
  +    *-unixware7)
  +     OS='UnixWare 7'
  +     CFLAGS="$CFLAGS -DUW=700"
  +     LIBS="$LIBS -lsocket -lnsl -lcrypt -lgen"
  +     DBM_LIB=""
  +     ;;
       maxion-*-sysv4*)
        OS='SVR4'
        CFLAGS="$CFLAGS -DSVR4"
  
  
  
  1.43      +5 -0      apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- GuessOS   1998/06/13 22:36:47     1.42
  +++ GuessOS   1998/06/29 12:21:04     1.43
  @@ -50,6 +50,11 @@
            4.2)
                echo "whatever-whatever-unixware1"; exit 0
                ;;
  +         5)
  +             if [ "x$VERSION" = "x7" ]; then
  +                 echo "${MACHINE}-whatever-unixware7"; exit 0
  +             fi
  +             ;;
        esac
       fi
   fi
  
  
  

Reply via email to