summaryrefslogtreecommitdiff
path: root/libexec/httpd
diff options
context:
space:
mode:
authorhe <he@NetBSD.org>2013-10-16 10:04:26 +0000
committerhe <he@NetBSD.org>2013-10-16 10:04:26 +0000
commit7d35c118ebaf298f5e0a400e89ff1d97e8d2308f (patch)
treecad99eaf3b6e187e7d6f1ea1b17ba8c5b9a44256 /libexec/httpd
parentbc56239865ae7aa11cf326809f26a0f7e9a7b9ac (diff)
Also depend on LIBLUA, and add -lm to allow static linking.
Diffstat (limited to 'libexec/httpd')
-rw-r--r--libexec/httpd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/httpd/Makefile b/libexec/httpd/Makefile
index 44e10895e3c..c15664a9ffc 100644
--- a/libexec/httpd/Makefile
+++ b/libexec/httpd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2013/10/12 17:24:06 mbalmer Exp $
+# $NetBSD: Makefile,v 1.17 2013/10/16 10:04:26 he Exp $
#
# $eterna: Makefile,v 1.30 2010/07/11 00:34:27 mrg Exp $
#
@@ -27,8 +27,8 @@ SRCS= bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \
tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c lua-bozo.c
SRCS+= main.c
-LDADD= -lcrypt -llua
-DPADD= ${LIBCRYPT}
+LDADD= -lcrypt -llua -lm
+DPADD= ${LIBCRYPT} ${LIBLUA} ${LIBM}
WARNS?= 4