summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2009-07-13 03:44:24 +0200
committerGuenter Knauf <fuankg@apache.org>2009-07-13 03:44:24 +0200
commit3aa02d23ccc79d94aa550f29fe5c8e612cf397ee (patch)
tree0d69da4ba1a0d32f5be78ee19b7f49d0beb1a0f3 /modules
parentadded mod_lua to the NetWare build. (diff)
downloadapache2-3aa02d23ccc79d94aa550f29fe5c8e612cf397ee.tar.xz
apache2-3aa02d23ccc79d94aa550f29fe5c8e612cf397ee.zip
final NetWare mod_lua build fixes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@793442 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/lua/NWGNUmakefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/lua/NWGNUmakefile b/modules/lua/NWGNUmakefile
index 8a7e337769..0fe0d586f0 100644
--- a/modules/lua/NWGNUmakefile
+++ b/modules/lua/NWGNUmakefile
@@ -24,19 +24,20 @@ include $(AP_WORK)\build\NWGNUhead.inc
# INCDIRS
#
XINCDIRS += \
+ $(LUASRC)/src \
$(AP_WORK)/include \
$(NWOS) \
$(AP_WORK)/modules/arch/netware \
$(APR)/include \
$(APRUTIL)/include \
$(APR) \
- $(LUASRC)/src \
$(EOLIST)
#
# These flags will come after CFLAGS
#
XCFLAGS += \
+ -opt nointrinsics \
$(EOLIST)
#
@@ -224,8 +225,6 @@ FILES_nlm_Ximports = \
@libc.imp \
$(EOLIST)
-# @$(LUASRC)/netware/lua.imp \
-
#
# Any symbols exported to here
#
@@ -237,8 +236,10 @@ FILES_nlm_exports = \
# These are the OBJ files needed to create the LIB target above.
# Paths must all use the '/' character
#
+UNWANTED = $(LUASRC)/src/lua.c
+
FILES_lib_objs = \
- $(patsubst $(LUASRC)/src/%.c,$(OBJDIR)/%.o, $(wildcard $(LUASRC)/src/*.c)) \
+ $(patsubst $(LUASRC)/src/%.c,$(OBJDIR)/%.o, $(filter-out $(UNWANTED), $(wildcard $(LUASRC)/src/*.c))) \
$(EOLIST)
#