|
@echo off |
|
|
|
|
1 |
:: AH 20-12-06 modified for new PCRE-7.0 and VP/BCC |
:: AH 20-12-06 modified for new PCRE-7.0 and VP/BCC |
2 |
:: PH 19-03-07 renamed !compile.txt and !linklib.txt as makevp-compile.txt and |
:: PH 19-03-07 renamed !compile.txt and !linklib.txt as makevp-compile.txt and |
3 |
:: makevp-linklib.txt |
:: makevp-linklib.txt |
4 |
:: PH 26-03-07 re-renamed !compile.txt and !linklib.txt as makevp-c.txt and |
:: PH 26-03-07 re-renamed !compile.txt and !linklib.txt as makevp-c.txt and |
5 |
:: makevp-l.txt |
:: makevp-l.txt |
6 |
:: PH 29-03-07 hopefully the final rename to makevp_c and makevp_l |
:: PH 29-03-07 hopefully the final rename to makevp_c and makevp_l |
7 |
|
:: AH 27.08.08 updated for new PCRE-7.7 |
8 |
|
:: required PCRE.H and CONFIG.H will be generated if not existing |
9 |
|
|
10 |
|
@echo off |
11 |
|
echo. |
12 |
|
echo Compiling PCRE with BORLAND C++ for VIRTUAL PASCAL |
13 |
|
echo. |
14 |
|
|
15 |
REM This file was contributed by Alexander Tokarev for building PCRE for use |
REM This file was contributed by Alexander Tokarev for building PCRE for use |
16 |
REM with Virtual Pascal. It has not been tested with the latest PCRE release. |
REM with Virtual Pascal. It has not been tested with the latest PCRE release. |
17 |
|
|
18 |
|
REM This file has been modified and extended to compile with newer PCRE releases |
19 |
|
REM by Stefan Weber (Angels Holocaust). |
20 |
|
|
21 |
REM CHANGE THIS FOR YOUR BORLAND C++ COMPILER PATH |
REM CHANGE THIS FOR YOUR BORLAND C++ COMPILER PATH |
22 |
|
SET BORLAND=f:\bcc |
23 |
|
REM location of the TASM binaries, if compiling with the -B BCC switch |
24 |
|
SET TASM=f:\tasm |
25 |
|
|
26 |
|
SET PATH=%PATH%;%BORLAND%\bin;%TASM%\bin |
27 |
|
SET PCRE_VER=77 |
28 |
|
SET COMPILE_DEFAULTS=-DHAVE_CONFIG_H -DPCRE_STATIC -I%BORLAND%\include |
29 |
|
|
30 |
SET BORLAND=F:\bcc |
del pcre%PCRE_VER%.lib >nul 2>nul |
|
SET PATH=%PATH%;%BORLAND%\bin;f:\tasm\bin |
|
|
SET PCRE_VER=70 |
|
31 |
|
|
32 |
:: sh configure |
:: sh configure |
33 |
|
|
34 |
bcc32 -DDFTABLES -DSTATIC -I%BORLAND%\include -L%BORLAND%\lib dftables.c |
:: check for needed header files |
35 |
:: bcc32 -DDFTABLES -DSTATIC -DVPCOMPAT -I%BORLAND%\include -L%BORLAND%\lib dftables.c |
if not exist pcre.h copy pcre.h.generic pcre.h |
36 |
IF ERRORLEVEL 1 EXIT |
if not exist config.h copy config.h.generic config.h |
37 |
|
|
38 |
|
bcc32 -DDFTABLES %COMPILE_DEFAULTS% -L%BORLAND%\lib dftables.c |
39 |
|
IF ERRORLEVEL 1 GOTO ERROR |
40 |
|
|
41 |
:: dftables > chartables.c |
:: dftables > chartables.c |
42 |
dftables pcre_chartables.c |
dftables pcre_chartables.c |
43 |
|
|
44 |
REM compile and link the PCRE library into lib: option -B for ASM compile works too |
REM compile and link the PCRE library into lib: option -B for ASM compile works too |
45 |
bcc32 -a4 -c -RT- -y- -v- -u- -R- -Q- -X -d -fp -ff -P- -O2 -Oc -Ov -3 -w-8004 -w-8064 -w-8065 -w-8012 -DSTATIC -DVPCOMPAT -UDFTABLES -I%BORLAND%\include @makevp_c.txt |
bcc32 -a4 -c -RT- -y- -v- -u- -R- -Q- -X -d -fp -ff -P- -O2 -Oc -Ov -3 -w-8004 -w-8064 -w-8065 -w-8012 -UDFTABLES -DVPCOMPAT %COMPILE_DEFAULTS% @makevp_c.txt |
46 |
:: bcc32 -c -RT- -y- -v- -u- -P- -O2 -5 -DSTATIC -DVPCOMPAT -UDFTABLES -I%BORLAND%\include get.c maketables.c pcre.c study.c |
IF ERRORLEVEL 1 GOTO ERROR |
|
IF ERRORLEVEL 1 EXIT |
|
47 |
|
|
48 |
tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset *memcmp *strlen |
tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset *memcmp *strlen |
49 |
:: tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset |
IF ERRORLEVEL 1 GOTO ERROR |
|
IF ERRORLEVEL 1 EXIT |
|
50 |
tlib pcre%PCRE_VER%.lib @makevp_l.txt +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj +memcmp.obj +strlen.obj |
tlib pcre%PCRE_VER%.lib @makevp_l.txt +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj +memcmp.obj +strlen.obj |
51 |
:: tlib pcre.lib +get.obj +maketables.obj +pcre.obj +study.obj +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj |
IF ERRORLEVEL 1 GOTO ERROR |
|
IF ERRORLEVEL 1 EXIT |
|
52 |
|
|
53 |
del *.obj *.tds *.bak >nul 2>nul |
del *.obj *.tds *.bak >nul 2>nul |
54 |
|
|
55 |
echo --- |
echo --- |
56 |
echo Now the library should be complete. Please check all messages above. |
echo Now the library should be complete. Please check all messages above. |
57 |
echo Don't care for warnings, it's OK. |
echo Don't care for warnings, it's OK. |
58 |
|
goto END |
59 |
|
|
60 |
|
:ERROR |
61 |
|
echo --- |
62 |
|
echo Error while compiling PCRE. Aborting... |
63 |
|
pause |
64 |
|
goto END |
65 |
|
|
66 |
|
:END |