Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 72845 invoked by uid 500); 25 Oct 2001 15:45:26 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 72830 invoked from network); 25 Oct 2001 15:45:26 -0000 Date: 25 Oct 2001 15:37:16 -0000 Message-ID: <20011025153716.56832.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/build prebuildNW.bat X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 01/10/25 08:37:16 Modified: build prebuildNW.bat Log: More cleanup on the pre-build scripts Revision Changes Path 1.3 +15 -14 apr/build/prebuildNW.bat Index: prebuildNW.bat =================================================================== RCS file: /home/cvs/apr/build/prebuildNW.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- prebuildNW.bat 2001/10/23 23:36:31 1.2 +++ prebuildNW.bat 2001/10/25 15:37:16 1.3 @@ -1,25 +1,26 @@ -# As part of the pre-build process, the utility GenURI.NLM -# (Gen URI Delims) must be built, copied to a NetWare server -# and run using the following command: -# -# genuri >uri_delims.h -# -# The file "sys:\uri_delims.h" must then be copied to -# "apr-util\uri\uri_delims.h" on the build machine. +@echo off +@echo # As part of the pre-build process, the utility GenURI.NLM +@echo # (Gen URI Delims) must be built, copied to a NetWare server +@echo # and run using the following command: +@echo # +@echo # "sys:\genuri >sys:\uri_delims.h" +@echo # +@echo # The file "sys:\uri_delims.h" must then be copied to +@echo # "apr-util\uri\uri_delims.h" on the build machine. -# Fix up the APR headers +@echo Fixing up the APR headers copy ..\include\apr.hnw ..\include\apr.h -# Fix up the APR-Util headers +@echo Fixing up the APR-Util headers copy ..\..\apr-util\include\apu.h.in ..\..\apr-util\include\apu.h copy ..\..\apr-util\include\private\apu_config.hw ..\..\apr-util\include\private\apu_config.h copy ..\..\apr-util\xml\expat\lib\expat.h.in ..\..\apr-util\xml\expat\lib\expat.h copy ..\..\apr-util\include\private\apu_select_dbm.hw ..\..\apr-util\include\private\apu_select_dbm.h -# Fix up the pcre headers +@echo Fixing up the pcre headers copy ..\..\pcre\config.hw ..\..\pcre\config.h copy ..\..\pcre\pcre.hw ..\..\pcre\pcre.h -# Generate the import list -awk95 -f make_nw_export.awk ..\include\*.h |sort > ..\aprlib.imp -awk95 -f make_nw_export.awk ..\..\apr-util\include\*.h |sort > ..\aprutil.imp +@echo Generating the import list... +awk -f make_nw_export.awk ..\include\*.h |sort > ..\aprlib.imp +awk -f make_nw_export.awk ..\..\apr-util\include\*.h |sort > ..\aprutil.imp