~ubuntu-branches/ubuntu/oneiric/libapreq2/oneiric

« back to all changes in this revision

Viewing changes to win32/libapreq2.mak

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2010-02-28 15:51:47 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100228155147-dflwg59lhyittzi7
Tags: 2.12-1
* New upstream release.
* Switch to dpkg-source 3.0 (quilt) format.
  * Split the Debian diff into two separate patches, and remove spurious
    junk that shouldn't have been there.
  * In clean, remove some stray files distclean forgets.
* Update debhelper compatibility level to 7.
  * Update debhelper build-dependency version.
  * Use dh_prep instead of dh_clean -k.
* Update Standards-Version to 3.8.4.
  * Change from ${Source-Version} to ${binary:Version} in inter-package
    dependencies.
  * In debian/copyright, refer to the Apache 2.0 license file from
    common-licenses instead of having the entire license text in the file.
    Also include the actual copyright in the file.
* Put all binary packages in their correct respective sections.
* Add ${misc:Depends} to all binary packages, and remove ${shlibs:Depends}
  from the -dev and -doc packages (which don't have any shared libraries).
* Run dh_shlibdeps on all packages, using the -a flag.
* Don't ignore errors on distclean; check for Makefile instead.
* Don't use full path to a2dismod in libapache2-mod-apreq2.postrm.
* Run libapache2-mod-apreq2.postrm script under sh -e, so errors are not
  ignored.
* Install the man pages that used to conflict with libapache-request-perl,
  which is now not in the stable release anymore.
* Don't set PREFIX= at make install time; only set prefix=.
  Seemingly, PREFIX= has no real effect at that point.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        "$(INTDIR)\parser_header.obj" \
63
63
        "$(INTDIR)\parser_multipart.obj" \
64
64
        "$(INTDIR)\parser_urlencoded.obj" \
65
 
        "$(INTDIR)\util.obj" \
66
 
        "$(INTDIR)\version.obj" \
67
 
        "$(INTDIR)\module.obj" \
68
 
        "$(INTDIR)\module_custom.obj" \
69
 
        "$(INTDIR)\module_cgi.obj" \
70
 
        "$(INTDIR)\error.obj" \
71
 
        "$(APR_LIB)" \
72
 
        "$(APU_LIB)"
 
65
        "$(INTDIR)\util.obj" \
 
66
        "$(INTDIR)\version.obj" \
 
67
        "$(INTDIR)\module.obj" \
 
68
        "$(INTDIR)\module_custom.obj" \
 
69
        "$(INTDIR)\module_cgi.obj" \
 
70
        "$(INTDIR)\error.obj" \
 
71
        "$(INTDIR)\libapreq.res"
73
72
 
74
73
!IF  "$(CFG)" == "libapreq2 - Win32 Release"
75
74
 
78
77
"$(OUTDIR)" :
79
78
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
80
79
 
81
 
CPP_PROJ=/nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /I"$(APACHE)\include" /I"$(APREQ_HOME)\include" /YX /FD /c 
 
80
CPP_PROJ=/nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APREQ_DECLARE_EXPORT" /I"$(APACHE)\include" /I"$(APREQ_HOME)\include" /YX /FD /c 
82
81
MTL_PROJ=/nologo /D "NDEBUG" /mktyplib203 /win32 
 
82
RSC=rc.exe
 
83
RSC_PROJ=/l 0x409 /i "$(APACHE)\include" /d "NDEBUG" /i "$(APREQ_HOME)\include"
83
84
BSC32=bscmake.exe
84
85
BSC32_FLAGS=/nologo /o"$(OUTDIR)\libapreq2.bsc" 
85
86
LINK32=link.exe
86
 
LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /machine:I386 /out:"$(OUTDIR)\libapreq2.dll" /implib:"$(OUTDIR)\libapreq2.lib" 
 
87
MANIFEST=$(OUTDIR)\libapreq2.dll.manifest
 
88
LINK32_FLAGS="$(APR_LIB)" "$(APU_LIB)" kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /machine:I386 /out:"$(OUTDIR)\libapreq2.dll" /implib:"$(OUTDIR)\libapreq2.lib"
87
89
 
88
90
"$(OUTDIR)\libapreq2.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
89
91
    $(LINK32) @<<
90
92
  $(LINK32_FLAGS) $(DEF_FLAGS) $(LINK32_OBJS)
91
93
<<
 
94
    if exist $(MANIFEST) mt /nologo /manifest $(MANIFEST) /outputresource:$(OUTDIR)\libapreq2.dll;2
92
95
 
93
96
!ELSEIF  "$(CFG)" == "libapreq2 - Win32 Debug"
94
97
 
97
100
"$(OUTDIR)" :
98
101
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
99
102
 
100
 
CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /I"$(APACHE)\include" /I"$(APREQ_HOME)\include" /YX /FD /GZ  /c 
 
103
CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "APREQ_DECLARE_EXPORT" /I"$(APACHE)\include" /I"$(APREQ_HOME)\include" /YX /FD /GZ  /c 
101
104
MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32 
 
105
RSC=rc.exe
 
106
RSC_PROJ=/l 0x409 /i "$(APACHE)\include" /d "_DEBUG /i "$(APREQ_HOME)\include"
102
107
BSC32=bscmake.exe
103
108
BSC32_FLAGS=/nologo /o"$(OUTDIR)\libapreq2.bsc" 
104
109
LINK32=link.exe
 
110
MANIFEST=$(OUTDIR)\libapreq2.dll.manifest
105
111
LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:yes /pdb:"$(OUTDIR)\libapreq2.pdb" /debug /machine:I386 /out:"$(OUTDIR)\libapreq2.dll" /implib:"$(OUTDIR)\libapreq2.lib" /pdbtype:sept 
106
112
 
107
113
"$(OUTDIR)\libapreq2.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
108
114
    $(LINK32) @<<
109
115
  $(LINK32_FLAGS) $(DEF_FLAGS) $(LINK32_OBJS)
110
116
<<
 
117
    if exist $(MANIFEST) mt /nologo /manifest $(MANIFEST) /outputresource:$(OUTDIR)\libapreq2.dll;2
111
118
 
112
119
!ENDIF 
113
120
 
204
211
"$(INTDIR)\error.obj" : $(SOURCE) "$(INTDIR)"
205
212
        $(CPP) /Fo"$(INTDIR)\error.obj" $(CPP_PROJ) $(SOURCE)
206
213
 
 
214
SOURCE=.\libapreq.rc
 
215
 
 
216
"$(INTDIR)\libapreq.res" : $(SOURCE) "$(INTDIR)"
 
217
        $(RSC) /fo"$(INTDIR)\libapreq.res" $(RSC_PROJ) $(SOURCE)
 
218
 
207
219
!ENDIF 
208
220