You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Dean Gaudet <dg...@arctic.org> on 1997/06/27 03:45:57 UTC

Re: cvs commit: apache/src Configure

Cool!  Thanks Roy, the branch change works :)

Here goes, I'm going to commit the 1.2.1 stuff I mentioned on, um,
tuesday.  I hope to have a version for testing tonight before I head out
for the evening.

BTW, is there any reason that this cvs mail stuff indents everything by
two spaces?  I'm using the cvs mail from HEAD commits to build patches for
APACHE_1_2_X commits, it's a pain to "sed -e s#^..##" each of them.

Dean

On Thu, 26 Jun 1997, Dean Gaudet wrote:

> dgaudet     97/06/26 18:39:13
> 
>   Modified:    src       Tag: APACHE_1_2_X  Configure
>   Log:
>   PR#705: alpha linux requires -lcrypt, sparc linux requires -lm
>   
>   Revision  Changes    Path
>   No                   revision
>   
>   
>   No                   revision
>   
>   
>   1.96.2.1  +12 -0     apache/src/Configure
>   
>   Index: Configure
>   ===================================================================
>   RCS file: /export/home/cvs/apache/src/Configure,v
>   retrieving revision 1.96
>   retrieving revision 1.96.2.1
>   diff -C3 -r1.96 -r1.96.2.1
>   *** Configure	1997/05/13 00:20:30	1.96
>   --- Configure	1997/06/27 01:39:12	1.96.2.1
>   ***************
>   *** 280,285 ****
>   --- 280,297 ----
>     	    CFLAGS="$CFLAGS -DIRIX"
>     	fi
>     	;;
>   +     alpha-*-linux2)
>   + 	DEF_WANTHSREGEX=yes
>   + 	OS='Linux'
>   + 	CFLAGS="$CFLAGS -DLINUX=2"
>   + 	LIBS="$LIBS -lcrypt"
>   + 	;;
>   +     sparc-*-linux2)
>   + 	DEF_WANTHSREGEX=yes
>   + 	OS='Linux'
>   + 	CFLAGS="$CFLAGS -DLINUX=2"
>   + 	LIBS="$LIBS -lm"
>   + 	;;
>         *-linux2)
>     	DEF_WANTHSREGEX=yes
>     	OS='Linux'
>   
>   
>   
>