diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2012-12-30 18:59:22 +0100 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2012-12-30 18:59:22 +0100 |
commit | c9617c8aea6be541396a775f0b3861895921b407 (patch) | |
tree | ccf0d7822994b94e450f15eebd86b6d63138c6f5 /Makefile.win | |
parent | add log tags missing in r1426877 (diff) | |
download | apache2-c9617c8aea6be541396a775f0b3861895921b407.tar.xz apache2-c9617c8aea6be541396a775f0b3861895921b407.zip |
What happened to serf in the IDE builds? For consistency sake
with the other optional dependencies, get serf in there too.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1426969 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.win b/Makefile.win index 539ad18186..4bf3abffdd 100644 --- a/Makefile.win +++ b/Makefile.win @@ -636,6 +636,9 @@ _build: devenv $(TLP).sln /useenv $(CTARGET) $(LONG) /project mod_proxy_html devenv $(TLP).sln /useenv $(CTARGET) $(LONG) /project mod_xml2enc !ENDIF +!IF EXIST("srclib\serf") + devenv $(TLP).sln /useenv $(CTARGET) $(LONG) /project mod_serf +!ENDIF !ELSE @@ -681,6 +684,10 @@ _build: @msdev $(TLP).dsw /USEENV /MAKE \ "mod_xml2enc - Win32 $(LONG)" /NORECURSE $(CTARGET) !ENDIF +!IF EXIST("srclib\serf") + @msdev $(TLP).dsw /USEENV /MAKE \ + "mod_serf - Win32 $(LONG)" /NORECURSE $(CTARGET) +!ENDIF !ENDIF |