You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@hyperreal.org on 1998/09/28 22:04:36 UTC

cvs commit: apache-1.3/src/helpers GuessOS

jim         98/09/28 13:04:35

  Modified:    src      CHANGES
               src/helpers GuessOS
  Log:
  Submitted by:	Steve Cameron <st...@compaq.com>
  
  Revision  Changes    Path
  1.1082    +5 -2      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1081
  retrieving revision 1.1082
  diff -u -r1.1081 -r1.1082
  --- CHANGES	1998/09/26 00:07:06	1.1081
  +++ CHANGES	1998/09/28 20:04:33	1.1082
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.3
  - 
  +
  +  *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
  +     <st...@compaq.com>]
  +
     *) Reconstructed the loop through multiple htaccess file names so
        that missing files are not confused with unreadable files.
        [Roy Fielding]
  @@ -7,7 +10,7 @@
     *) The ap_pfopen and ap_pfdopen routines were failing to protect the
        errno on an error, which leads to one error being mistaken for
        another when reading non-existant .htaccess files.
  -     [Jim Jagielski, Roy Fielding]
  +     [Jim Jagielski]
   
     *) OS/2: The new header tests get things right, need to update
        ap_config.h.  [Brian Havard]
  
  
  
  1.47      +5 -3      apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- GuessOS	1998/09/16 20:49:23	1.46
  +++ GuessOS	1998/09/28 20:04:35	1.47
  @@ -53,9 +53,11 @@
   		echo "whatever-whatever-unixware1"; exit 0
   		;;
   	    5)
  -		if [ "x$VERSION" = "x7" ]; then
  -		    echo "${MACHINE}-whatever-unixware7"; exit 0
  -		fi
  +	    	case "$VERSION" in
  +		    7*)
  +			echo "${MACHINE}-whatever-unixware7"; exit 0
  +			;;
  +		esac
   		;;
   	esac
       fi