I think you need to use the special MAKE variable as defined by
the AC_PROG_MAKE_SET macro, but otherwise it looks fine.
The real test is to see if it works for Ben Laurie's machine.

....Roy

On Mon, Feb 19, 2001 at 06:01:44PM -0500, Jeff Trawick wrote:
> will this work for Apache without making anyone hurl?
> 
> Index: configure.in
> ===================================================================
> RCS file: /home/cvspublic/httpd-2.0/configure.in,v
> retrieving revision 1.123
> diff -u -r1.123 configure.in
> --- configure.in        2001/02/18 16:07:31     1.123
> +++ configure.in        2001/02/19 23:01:22
> @@ -274,7 +274,13 @@
>  BSD_MAKEFILE=no
>  case "$host_alias" in
>  *bsdi*)
> -    BSD_MAKEFILE=yes;;
> +    # Check whether they've installed GNU make
> +    if make --version > /dev/null 2>&1; then
> +        true
> +    else
> +        BSD_MAKEFILE=yes
> +    fi
> +    ;;
>  esac
>  
>  AC_OUTPUT($APACHE_OUTPUT_FILES support/apxs support/apachectl,,[

Reply via email to