Module Name:    src
Committed By:   plunky
Date:           Wed Jan 19 10:17:04 UTC 2011

Modified Files:
        src/external/mit/lua/usr.bin/lua: Makefile

Log Message:
include libm and libedit in DPADD


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mit/lua/usr.bin/lua/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/lua/usr.bin/lua/Makefile
diff -u src/external/mit/lua/usr.bin/lua/Makefile:1.2 src/external/mit/lua/usr.bin/lua/Makefile:1.3
--- src/external/mit/lua/usr.bin/lua/Makefile:1.2	Fri Nov  5 10:50:50 2010
+++ src/external/mit/lua/usr.bin/lua/Makefile	Wed Jan 19 10:17:04 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2010/11/05 10:50:50 he Exp $
+# $NetBSD: Makefile,v 1.3 2011/01/19 10:17:04 plunky Exp $
 
 PROG=		lua
 SRCS=		lua.c
@@ -6,11 +6,11 @@
 
 CPPFLAGS+=	-DLUA_USE_READLINE
 
-LDADD+=		${LIBLUA} -lm -ledit
+LDADD+=		${LIBLUA}
 DPADD+=		${LIBLUA}
 
-LDADD+=		-lterminfo
-DPADD+=		${LIBTERMINFO}
+LDADD+=		-lterminfo -lm -ledit
+DPADD+=		${LIBTERMINFO} ${LIBM} ${LIBEDIT}
 
 .include <bsd.own.mk>
 

Reply via email to