You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.com> on 1997/06/24 02:46:13 UTC

cvs commit: apache/src/helpers GuessOS

dgaudet     97/06/23 17:46:12

  Modified:    src       Configure
               src/helpers  GuessOS
  Log:
  PR#383: Support for Maxion/OS SVR4.2 Real Time Unix
  
  Submitted by:	no email address given
  
  Revision  Changes    Path
  1.98      +6 -0      apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -C3 -r1.97 -r1.98
  *** Configure	1997/06/24 00:14:06	1.97
  --- Configure	1997/06/24 00:46:11	1.98
  ***************
  *** 403,408 ****
  --- 403,414 ----
    	CFLAGS="$CFLAGS -DUW"
    	LIBS="$LIBS -lsocket -lnsl -lcrypt"
    	;;
  +     maxion-*-sysv4*)
  +     	OS='SVR4'
  + 	CFLAGS="$CFLAGS -DSVR4"
  + 	DEF_WANTHSREGEX=yes
  + 	LIBS="$LIBS -lsocket -lnsl -lc -lgen"
  + 	;;
        *-sni-sysv4*)
    	OS='SVR4'
    	CFLAGS="$CFLAGS -DSVR4"
  
  
  
  1.20      +4 -0      apache/src/helpers/GuessOS
  
  Index: GuessOS
  ===================================================================
  RCS file: /export/home/cvs/apache/src/helpers/GuessOS,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -C3 -r1.19 -r1.20
  *** GuessOS	1997/04/27 07:52:19	1.19
  --- GuessOS	1997/06/24 00:46:12	1.20
  ***************
  *** 193,198 ****
  --- 193,202 ----
        ConvexOS:*:11.0:*)
    	echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
    	;;
  +     
  +     UNIX_SV:*:*:maxion)
  + 	echo "${MACHINE}-ccur-sysv4"; exit 0;
  + 	;;
    
    esac