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/21 00:04:18 UTC

[PATCH] PR#705: alpha and sparc linux tweaks

alpha linux requires -lcrypt, sparc linux requires -lm.

Dean

Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.96
diff -c -3 -r1.96 Configure
*** Configure	1997/05/13 00:20:30	1.96
--- Configure	1997/06/20 22:03:32
***************
*** 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'



Re: [PATCH] PR#705: alpha and sparc linux tweaks

Posted by Marc Slemko <ma...@znep.com>.
+1 with a <sigh> for there being so much variation.  No slight against
Linux intended...


On Fri, 20 Jun 1997, Dean Gaudet wrote:

> alpha linux requires -lcrypt, sparc linux requires -lm.
> 
> Dean
> 
> Index: Configure
> ===================================================================
> RCS file: /export/home/cvs/apache/src/Configure,v
> retrieving revision 1.96
> diff -c -3 -r1.96 Configure
> *** Configure	1997/05/13 00:20:30	1.96
> --- Configure	1997/06/20 22:03:32
> ***************
> *** 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'
> 
>