From: Ryan Bloom Date: Tue, 5 Dec 2000 04:55:26 +0000 (+0000) Subject: Make the test for APR a bit more stringent and add a check for apr-util X-Git-Tag: APACHE_2_0_ALPHA_9~96 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b621a34ccd778dde52f9260679695c811e5ef83;p=apache Make the test for APR a bit more stringent and add a check for apr-util git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87198 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/build.mk b/build/build.mk index bff40b17a0..af7a7ad53b 100644 --- a/build/build.mk +++ b/build/build.mk @@ -61,12 +61,18 @@ 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 @$(MAKE) AMFLAGS=$(AMFLAGS) -s -f build/build2.mk generated_lists: