You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/02/23 12:39:40 UTC

cvs commit: httpd-2.0 configure.in

trawick     01/02/23 03:39:40

  Modified:    .        configure.in
  Log:
  Work on a BSD/OS system where GNU make is used instead of the native
  make.
  
  Roy suggests using the variable set by AC_PROG_MAKE; we don't use that
  yet, though I guess we could.  Greg suggests leaving this to Roy since
  he will revamp this stuff soon anyway.
  
  Inspired by: Joe Orton's patch to APR to accomplish the same thing
  
  Revision  Changes    Path
  1.125     +7 -1      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- configure.in	2001/02/20 02:01:09	1.124
  +++ configure.in	2001/02/23 11:39:37	1.125
  @@ -282,7 +282,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,,[