Commit da9af9c5 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

NetWare build overhaul in order to compile on Linux.

the remaining bits ...


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1087555 13f79535-47bb-0310-9956-ffa450edef68
parent b6d999d4
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -412,8 +412,6 @@ installdev :: FORCE
	$(call COPY,$(NWOS)/*.h,                                       $(INSTALLBASE)/include/)
	$(call COPY,$(APR)/include/*.h,                                $(INSTALLBASE)/include/)
	$(call COPY,$(APRUTIL)/include/*.h,                            $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/core/mod_so.h,                           $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/core/mod_watchdog.h,                     $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/cache/mod_cache.h,                       $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/database/mod_dbd.h,                      $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/dav/main/mod_dav.h,                      $(INSTALLBASE)/include/)
@@ -423,8 +421,6 @@ installdev :: FORCE
	$(call COPY,$(STDMOD)/loggers/mod_log_config.h,                $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/mappers/mod_rewrite.h,                   $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/proxy/mod_proxy.h,                       $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/proxy/mod_serf.h,                        $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/session/mod_session.h,                   $(INSTALLBASE)/include/)
	$(call COPY,$(STDMOD)/ssl/mod_ssl.h,                           $(INSTALLBASE)/include/)
	$(call COPY,$(APR)/*.imp,                                      $(INSTALLBASE)/lib/)
	$(call COPY,$(NWOS)/*.imp,                                     $(INSTALLBASE)/lib/)
+1 −0
Original line number Diff line number Diff line
@@ -132,6 +132,7 @@ WIN_CC = mwcc

# Setup build tools
AWK	= awk
TOUCH	= touch

# Setup distribution tools
ZIP	= zip -qr9
+2 −1
Original line number Diff line number Diff line
@@ -252,7 +252,8 @@ nlms :: libs $(TARGET_nlm)
# correct place.  (See $(AP_WORK)/build/NWGNUhead.inc for examples)
#
install :: nlms FORCE
	copy $(OBJDIR)\moddavfs.nlm $(INSTALL)\$(BASEDIR)\modules
	$(call COPY,$(OBJDIR)/*.nlm, $(INSTALLBASE)/modules/)

#
# Any specialized rules here
#
+2 −1
Original line number Diff line number Diff line
@@ -243,7 +243,8 @@ nlms :: libs $(TARGET_nlm)
# correct place.  (See $(AP_WORK)/build/NWGNUhead.inc for examples)
#
install :: nlms FORCE
	copy $(OBJDIR)\moddavlk.nlm $(INSTALL)\$(BASEDIR)\modules
	$(call COPY,$(OBJDIR)/*.nlm, $(INSTALLBASE)/modules/)

#
# Any specialized rules here
#
+2 −2
Original line number Diff line number Diff line
@@ -252,7 +252,7 @@ nlms :: libs $(TARGET_nlm)
# correct place.  (See $(AP_WORK)/build/NWGNUhead.inc for examples)
#
install :: nlms FORCE
	copy $(OBJDIR)\mod_dav.nlm $(INSTALL)\$(BASEDIR)\modules\*.*
	$(call COPY,$(OBJDIR)/*.nlm, $(INSTALLBASE)/modules/)

#
# Any specialized rules here
Loading