summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2017-11-23 14:24:35 +0000
committerStefan Eissing <icing@apache.org>2017-11-23 14:24:35 +0000
commit245e9726e3e59cbaf8f0bc0116488efdf2f1d2eb (patch)
tree3b00884403b4cc927e4a8d340a9057d12d151426 /Makefile.win
parent4b2a68427f75345be72a648045c22b24de6dd797 (diff)
downloadhttpd-245e9726e3e59cbaf8f0bc0116488efdf2f1d2eb.tar.gz
On the trunk:
removed a2md from Windows makefile and .dsw git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1816156 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile.win b/Makefile.win
index 69de1de1bd..4ec79e9225 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -280,16 +280,12 @@ _trymd:
!IF $(USEMAK) == 1
cd modules\md
$(MAKE) $(MAKEOPT) $(SSLOPT) -f mod_md.mak CFG="mod_md - Win32 $(LONG)" RECURSE=0 $(CTARGET)
- $(MAKE) $(MAKEOPT) $(SSLOPT) -f a2md.mak CFG="a2md - Win32 $(LONG)" RECURSE=0 $(CTARGET)
cd ..\..
!ELSEIF $(USESLN) == 1
devenv $(TLP).sln /useenv $(CTARGET) $(LONG) /project mod_md
- devenv $(TLP).sln /useenv $(CTARGET) $(LONG) /project a2md
!ELSE
@msdev $(TLP).dsw /USEENV /MAKE \
"mod_md - Win32 $(LONG)" /NORECURSE $(CTARGET)
- @msdev $(TLP).dsw /USEENV /MAKE \
- "a2md - Win32 $(LONG)" /NORECURSE $(CTARGET)
!ENDIF
!ELSE
@@ -297,7 +293,7 @@ _trymd:
_trymd:
@echo -----
- @echo mod_md and a2md will not build unless OpenSSL, Jansson and Curl are built in placed
+ @echo mod_md not build unless OpenSSL, Jansson and Curl are built in placed
@echo in srclib. Example: srclib/openssl, srclib/jansson and srclib/curl
!ENDIF
@@ -659,7 +655,6 @@ _build:
cd ..
!IF EXIST("srclib\jansson") && EXIST("srclib\curl")
cd modules\md
- $(MAKE) $(MAKEOPT) $(SSLOPT) -f a2md.mak CFG="a2md - Win32 $(LONG)" RECURSE=0 $(CTARGET)
$(MAKE) $(MAKEOPT) $(SSLOPT) -f mod_md.mak CFG="mod_md - Win32 $(LONG)" RECURSE=0 $(CTARGET)
cd ..\..
!ENDIF
@@ -939,7 +934,6 @@ _copybin:
!IF EXIST("srclib\openssl")
!IF EXIST("srclib\jansson") && EXIST("srclib\curl")
copy modules\md\$(LONG)\mod_md.$(src_so) "$(inst_so)" <.y
- copy modules\md\$(LONG)\a2md.$(src_exe) "$(inst_exe)" <.y
-copy srclib\jansson\bin\jansson.$(src_dll) "$(inst_dll)" <.y
-copy srclib\curl\bin\libcurl.$(src_dll) "$(inst_dll)" <.y
!ENDIF