summaryrefslogtreecommitdiffstats
path: root/mbbsd/Makefile
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-19 00:31:53 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-19 00:31:53 +0800
commit0afdc34099c449efa58429c0555b68395758a5b4 (patch)
tree067259f7ec8201abf0792abc6bd4812773dcc557 /mbbsd/Makefile
parent3ff5039f02c494a9ad333a3412a89a6f4939458e (diff)
downloadpttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar.gz
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar.bz2
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar.lz
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar.xz
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.tar.zst
pttbbs-0afdc34099c449efa58429c0555b68395758a5b4.zip
* allow the 'hold mail' to appear as changed title
* refine emaildb error messages git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4661 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/Makefile')
-rw-r--r--mbbsd/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/mbbsd/Makefile b/mbbsd/Makefile
index f5ea4269..1572bc0a 100644
--- a/mbbsd/Makefile
+++ b/mbbsd/Makefile
@@ -51,8 +51,10 @@ OBJS+= bbslua.o bbsluaext.o
CFLAGS+= -DUSE_BBSLUA
# MODIFY THESE ENVIRONMENT SETTINGS TO FIT YOUR CONFIGURATION
.if $(OSTYPE)=="FreeBSD"
-CFLAGS:= ${CFLAGS} ${:!pkg-config --cflags lua-5.1!}
-LDLIBS:= ${LDLIBS} ${:!pkg-config --libs lua-5.1!}
+CFLAGS:= ${CFLAGS} -I/usr/local/include/lua51
+#${:!pkg-config --cflags lua-5.1!}
+LDLIBS:= ${LDLIBS} -L/usr/local/lib/lua51 -llua -lm
+#${:!pkg-config --libs lua-5.1!}
.else
CFLAGS:= ${CFLAGS} ${:!pkg-config --cflags lua5.1!}
LDLIBS:= ${LDLIBS} ${:!pkg-config --libs lua5.1!}