openbsd-ports/lang/lua/patches/patch-src_Makefile
espie 4c64f036a5 obvious dependency fix.
also regen patches.
2007-10-29 20:30:32 +00:00

45 lines
1.1 KiB
Plaintext

$OpenBSD: patch-src_Makefile,v 1.4 2007/10/29 20:30:32 espie Exp $
--- src/Makefile.orig Sun Mar 25 16:49:23 2007
+++ src/Makefile Mon Oct 29 21:28:39 2007
@@ -7,8 +7,7 @@
# Your platform. See PLATS for possible values.
PLAT= none
-CC= gcc
-CFLAGS= -O2 -Wall $(MYCFLAGS)
+CFLAGS+= $(MYCFLAGS) -fPIC
AR= ar rcu
RANLIB= ranlib
RM= rm -f
@@ -34,9 +33,10 @@ LUA_O= lua.o
LUAC_T= luac
LUAC_O= luac.o print.o
+LUA_SO= liblua.so.5.1
ALL_O= $(CORE_O) $(LIB_O) $(LUA_O) $(LUAC_O)
-ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T)
+ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) $(LUA_SO)
ALL_A= $(LUA_A)
default: $(PLAT)
@@ -57,6 +57,9 @@ $(LUA_T): $(LUA_O) $(LUA_A)
$(LUAC_T): $(LUAC_O) $(LUA_A)
$(CC) -o $@ $(MYLDFLAGS) $(LUAC_O) $(LUA_A) $(LIBS)
+$(LUA_SO): $(CORE_O) $(LIB_O)
+ $(CC) -o $@ -shared -fPIC $(MYLDFLAGS) $(CORE_O) $(LIB_O)
+
clean:
$(RM) $(ALL_T) $(ALL_O)
@@ -87,7 +90,7 @@ ansi:
$(MAKE) all MYCFLAGS=-DLUA_ANSI
bsd:
- $(MAKE) all MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN" MYLIBS="-Wl,-E"
+ $(MAKE) all MYCFLAGS=-DLUA_USE_BSD MYLIBS="-Wl,-E -ledit -lcurses"
freebsd:
$(MAKE) all MYCFLAGS="-DLUA_USE_LINUX" MYLIBS="-Wl,-E -lreadline"