You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/12/05 05:55:27 UTC

cvs commit: httpd-2.0/build build.mk

rbb         00/12/04 20:55:27

  Modified:    build    build.mk
  Log:
  Make the test for APR a bit more stringent and add a check for apr-util
  
  Revision  Changes    Path
  1.14      +7 -1      httpd-2.0/build/build.mk
  
  Index: build.mk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/build.mk,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.mk	2000/12/04 18:56:11	1.13
  +++ build.mk	2000/12/05 04:55:26	1.14
  @@ -61,9 +61,15 @@
   STAMP = buildmk.stamp
   
   all: $(STAMP) generated_lists
  -	@if [ ! -d srclib/apr ]; then \
  +	@if [ ! -d srclib/apr -o ! -f srclib/apr/apr_common.m4 ]; then \
   	    echo "APR not found."; \
   	    echo "Please check-out a working version of APR, the anonymous"; \
  +	    echo "CVS root is :pserver:anoncvs@www.apache.org:/home/cvspublic"; \
  +	    exit 1; \
  +	fi
  +	@if [ ! -d srclib/apr-util -o ! -f srclib/apr-util/Makefile.in ]; then \
  +	    echo "APR-util not found."; \
  +	    echo "Please check-out a working version of APR-util, the anonymous"; \
   	    echo "CVS root is :pserver:anoncvs@www.apache.org:/home/cvspublic"; \
   	    exit 1; \
   	fi