~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/pcre/makevp.bat

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
 
 
3
REM This file was contributed by Alexander Tokarev for building PCRE for use
 
4
REM with Virtual Pascal. It has not been tested with the latest PCRE release.
 
5
 
 
6
REM CHANGE THIS FOR YOUR BORLAND C++ COMPILER PATH
 
7
 
 
8
SET BORLAND=c:\usr\apps\bcc55
 
9
 
 
10
sh configure
 
11
 
 
12
bcc32 -DDFTABLES -DSTATIC -DVPCOMPAT -I%BORLAND%\include -L%BORLAND%\lib dftables.c
 
13
 
 
14
dftables > chartables.c
 
15
 
 
16
bcc32 -c -RT- -y- -v- -u- -P- -O2 -5 -DSTATIC -DVPCOMPAT -UDFTABLES -I%BORLAND%\include get.c maketables.c pcre.c study.c
 
17
 
 
18
tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset
 
19
tlib pcre.lib +get.obj +maketables.obj +pcre.obj +study.obj +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj
 
20
 
 
21
del *.obj *.exe *.tds *.bak >nul 2>nul
 
22
 
 
23
echo ---
 
24
echo Now the library should be complete. Please check all messages above.
 
25
echo Don't care for warnings, it's OK.