~ubuntu-branches/ubuntu/lucid/nginx/lucid

« back to all changes in this revision

Viewing changes to auto/lib/pcre/makefile.msvc

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.11 upstream) (4.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090531183856-lkdgdzr9m731fz92
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
 
5
5
CFLAGS =        -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT)
6
 
PCREFLAGS =     -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
7
 
 
8
 
 
9
 
pcre.lib:       pcre.h
10
 
        cl -Fedftables dftables.c
11
 
 
12
 
        dftables > chartables.c
13
 
 
14
 
        cl -nologo -c $(CFLAGS) $(PCREFLAGS)                            \
15
 
                maketables.c get.c study.c pcre.c
16
 
 
17
 
        link -lib -out:pcre.lib -verbose:lib                            \
18
 
                maketables.obj get.obj study.obj pcre.obj
 
6
PCREFLAGS =     -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
 
7
 
 
8
 
 
9
pcre.lib:
 
10
        cd $(PCRE)
 
11
 
 
12
        cl -nologo -c $(CFLAGS) -I . $(PCREFLAGS) pcre_*.c
 
13
 
 
14
        link -lib -out:pcre.lib -verbose:lib pcre_*.obj
19
15
 
20
16
pcre.h:
21
 
        patch -o pcre.h pcre.in patch.pcre.in
22
 
        patch -o config.h config.in patch.config.in
23
 
        patch -o pcre.c pcre.c patch.pcre.c
 
17
        cd $(PCRE)
 
18
 
 
19
        copy /y pcre.h.generic pcre.h
 
20
        copy /y config.h.generic config.h
 
21
        copy /y pcre_chartables.c.dist pcre_chartables.c