summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2009-10-05 21:08:12 +0200
committerGuenter Knauf <fuankg@apache.org>2009-10-05 21:08:12 +0200
commit55ab7709f956410630f6fed2d7867eb76cb4fe1e (patch)
treef612eb645d98d06214b9cba877ccbf4f18e8d98a /build
parentremoved CodeWarrior IDE project file since its not maintained (diff)
downloadapache2-55ab7709f956410630f6fed2d7867eb76cb4fe1e.tar.xz
apache2-55ab7709f956410630f6fed2d7867eb76cb4fe1e.zip
removed batch file used for CodeWarrior IDE project file
since its not maintained nor used anymore. If in future someone wants to pick it up and update / fix it then it can still be checked out from previous revisions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@821968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rwxr-xr-xbuild/prebuildNW.bat47
1 files changed, 0 insertions, 47 deletions
diff --git a/build/prebuildNW.bat b/build/prebuildNW.bat
deleted file mode 100755
index f8f6c8864c..0000000000
--- a/build/prebuildNW.bat
+++ /dev/null
@@ -1,47 +0,0 @@
-@echo off
-
-if not "%NovellLibC%" == "" goto CheckNDK
-set NovellLibC=\novell\ndk\libc
-@echo Could not find the NovellLibC environment variable
-@echo Setting NovellLibC = %NovellLibC%
-@echo ---------------------
-
-:CheckNDK
-if exist %NovellLibC%\include\netware.h goto NDKOK
-@echo The path to the NDK "%NovellLibC%" is invalid.
-@echo Please set then NovellLibC environment variable to the location of the NDK
-@echo ---------------------
-goto Done
-
-:NDKOK
-@echo # As part of the pre-build process, the utilities GenChars.NLM
-@echo # (Gen Test Chars) and DFTables.NLM (dftables) must be built,
-@echo # copied to a NetWare server and run using the following commands:
-@echo #
-@echo # "sys:\genchars >sys:\test_char.h"
-@echo # "sys:\dftables >sys:\chartables.c"
-@echo #
-@echo # The files "sys:\test_chars.h" and "sys:\chartables.c" must be
-@echo # copied to "httpd\os\netware" on the build machine.
-
-@echo Fixing up the APR headers
-copy ..\srclib\apr\include\apr.hnw ..\srclib\apr\include\apr.h
-
-@echo Fixing up the APR-Util headers
-copy ..\srclib\apr-util\include\apu.hnw ..\srclib\apr-util\include\apu.h
-copy ..\srclib\apr-util\include\apr_ldap.hnw ..\srclib\apr-util\include\apr_ldap.h
-
-@echo Fixing up the pcre headers
-copy ..\srclib\pcre\config.hw ..\srclib\pcre\config.h
-copy ..\srclib\pcre\pcre.hw ..\srclib\pcre\pcre.h
-
-@echo Generating the import lists...
-set MWCIncludes=..\include;..\modules\http;..\modules\aaa;..\os\netware;..\server\mpm\netware;..\srclib\apr\include;..\srclib\apr-util\include;+%NovellLibC%
-mwccnlm -P nw_export.inc -d NETWARE -EP
-awk -f make_nw_export.awk nw_export.i |sort >..\os\netware\httpd.imp
-
-rem cd ..\srclib\apr\build
-rem call prebuildnw.bat
-
-:Done
-pause