Module Name: src Committed By: he Date: Wed Oct 16 10:04:26 UTC 2013
Modified Files: src/libexec/httpd: Makefile Log Message: Also depend on LIBLUA, and add -lm to allow static linking. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/libexec/httpd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/libexec/httpd/Makefile diff -u src/libexec/httpd/Makefile:1.16 src/libexec/httpd/Makefile:1.17 --- src/libexec/httpd/Makefile:1.16 Sat Oct 12 17:24:06 2013 +++ src/libexec/httpd/Makefile Wed Oct 16 10:04:26 2013 @@ -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 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