summaryrefslogtreecommitdiffstats
path: root/external-libs/pcre/makevp.bat
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-10 19:41:30 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-10 19:41:30 +0200
commitf3bf8d3110b852b8f338898c3237d16a74360cf3 (patch)
treecf291098388c426129f1a9e87dcbe27afc571eb3 /external-libs/pcre/makevp.bat
parenteb355c60c1fa9ea93fa6824349c91ed324f4ff14 (diff)
downloadqpdf-f3bf8d3110b852b8f338898c3237d16a74360cf3.tar.zst
remove files not needed for building
git-svn-id: svn+q:///qpdf/trunk@767 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'external-libs/pcre/makevp.bat')
-rw-r--r--external-libs/pcre/makevp.bat25
1 files changed, 0 insertions, 25 deletions
diff --git a/external-libs/pcre/makevp.bat b/external-libs/pcre/makevp.bat
deleted file mode 100644
index 10bd2487..00000000
--- a/external-libs/pcre/makevp.bat
+++ /dev/null
@@ -1,25 +0,0 @@
-@echo off
-
-REM This file was contributed by Alexander Tokarev for building PCRE for use
-REM with Virtual Pascal. It has not been tested with the latest PCRE release.
-
-REM CHANGE THIS FOR YOUR BORLAND C++ COMPILER PATH
-
-SET BORLAND=c:\usr\apps\bcc55
-
-sh configure
-
-bcc32 -DDFTABLES -DSTATIC -DVPCOMPAT -I%BORLAND%\include -L%BORLAND%\lib dftables.c
-
-dftables > chartables.c
-
-bcc32 -c -RT- -y- -v- -u- -P- -O2 -5 -DSTATIC -DVPCOMPAT -UDFTABLES -I%BORLAND%\include get.c maketables.c pcre.c study.c
-
-tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset
-tlib pcre.lib +get.obj +maketables.obj +pcre.obj +study.obj +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj
-
-del *.obj *.exe *.tds *.bak >nul 2>nul
-
-echo ---
-echo Now the library should be complete. Please check all messages above.
-echo Don't care for warnings, it's OK.