From: William A. Rowe Jr Date: Thu, 26 Jul 2001 18:28:06 +0000 (+0000) Subject: An itty-bitty hint about what's gone wrong :) X-Git-Tag: 2.0.22~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f857357834d22cf3e1c2f9bd615a2ab97372e22;p=thirdparty%2Fapache%2Fhttpd.git An itty-bitty hint about what's gone wrong :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89737 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 77ec1ca16b3..63f1c674871 100644 --- a/Makefile.win +++ b/Makefile.win @@ -19,6 +19,22 @@ # so the server root should be given in forward slashes (quoted), # preferably with the drive designation! +!IF !EXIST("srclib\apr") +!MESSAGE Please check out or download and unpack the Apache Portability Runtime +!MESSAGE sources (apr and apr-util) into your $(INSTDIR)\srclib directory. +!MESSAGE Apache cannot build without these libraries! +!MESSAGE +!ERROR Need $(INSTDIR)\srclib\apr +!ENDIF + +!IF !EXIST("srclib\apr-util") +!MESSAGE Please check out or download and unpack the Apache Portability Runtime +!MESSAGE sources (apr and apr-util) into your $(INSTDIR)\srclib directory. +!MESSAGE Apache cannot build without these libraries! +!MESSAGE +!ERROR Need $(INSTDIR)\srclib\apr-util +!ENDIF + !IF "$(INSTDIR)" == "" INSTDIR=\Apache2 !MESSAGE Using default install directory $(INSTDIR)