diff options
author | mnag <mnag@FreeBSD.org> | 2006-12-13 21:20:51 +0800 |
---|---|---|
committer | mnag <mnag@FreeBSD.org> | 2006-12-13 21:20:51 +0800 |
commit | ab0560c00392aaaead986b359175686400926e33 (patch) | |
tree | bf510c87abd09c1c6fa100bb51773b2d995c5302 | |
parent | b9a3be7eb1523d01efd8fe73e238441d194c8240 (diff) | |
download | freebsd-ports-gnome-ab0560c00392aaaead986b359175686400926e33.tar.gz freebsd-ports-gnome-ab0560c00392aaaead986b359175686400926e33.tar.zst freebsd-ports-gnome-ab0560c00392aaaead986b359175686400926e33.zip |
- Fix CML option using -llua.
PR: 105863
Submitted by: Jun MUKAI <mukai___jmuk.org>
-rw-r--r-- | www/lighttpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index 07af9d70dfbf..94854915d721 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -62,7 +62,7 @@ CONFIGURE_ARGS+= --with-bzip2 .if defined(WITH_CML) USE_LUA= yes CONFIGURE_ARGS+= --with-lua -CONFIGURE_ENV+= LUA_CFLAGS="-I${LUA_INCDIR}" LUA_LIBS="-L${LUA_LIBDIR}" +CONFIGURE_ENV+= LUA_CFLAGS="-I${LUA_INCDIR}" LUA_LIBS="-L${LUA_LIBDIR} -llua" .endif .if defined(WITH_FAM) |