diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-07 16:45:51 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-07 16:45:51 +0800 |
commit | 32bbed747ff7729d46b04d081bcf5ed3ae831c70 (patch) | |
tree | deffcdc722ff623493ded5498fb121afbeb46a3f /innbbsd/Makefile | |
parent | d62dc36383d4611a2e9b75ce6f9217dcc8a6edf6 (diff) | |
download | pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar.gz pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar.bz2 pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar.lz pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar.xz pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.tar.zst pttbbs-32bbed747ff7729d46b04d081bcf5ed3ae831c70.zip |
rfc2047 (but just decode @@)
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@826 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'innbbsd/Makefile')
-rw-r--r-- | innbbsd/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/innbbsd/Makefile b/innbbsd/Makefile index 8fd415ad..92214f93 100644 --- a/innbbsd/Makefile +++ b/innbbsd/Makefile @@ -31,21 +31,23 @@ BBS_REC = $(BBS_UTIL)/util_record.o $(BBS_UTIL)/util_cache.o $(BBS_UTIL)/util_pa ############### DEBUGOBJ = /usr/lib/debug/mallocmap.o CFLAGS+= -c -I. -I$(BBS_SRC)/include -I$(BBS_SRC)/mbbsd -D$(BBS_DEP) \ +-I/usr/local/include -L/usr/local/lib \ $(EXTRAFLAGS) -DDBZDEBUG -DBBSHOME='"$(BBSHOME)"' \ -D_PATH_BBSHOME=\"$(BBSHOME)\" \ -DVERSION=\"$(VERSION)\" -DADMINUSER=\"$(ADMINUSER)\" +LDFLAGS+= -liconv # #################################################### OBJS = inndchannel.o innbbsd.o connectsock.o rfc931.o \ daemon.o file.o pmain.o his.o dbz.o \ closeonexec.o dbztool.o inntobbs.o receive_article.o \ - echobbslib.o $(BBS_REC) + echobbslib.o str_decode.o $(BBS_REC) # $(BBS_REC) SRCS = inndchannel.c innbbsd.c connectsock.c rfc931.c \ daemon.c file.c pmain.c parsdate.y his.c dbz.c \ closeonexec.c dbztool.c inntobbs.c bbslib.c receive_article.c \ - port.c + port.c str_decode.c MOBJS = makedbz.o bbslib.o file.o dbz.o closeonexec.o HOBJS = mkhistory.o bbslib.o file.o his.o dbz.o port.o closeonexec.o |