From: Fredrik Tolf Date: Mon, 25 Apr 2016 13:08:41 +0000 (+0200) Subject: lib: Compile bufio. X-Git-Url: http://dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=5b615ac8adc0cacac54629eeb2dad3a31112243e lib: Compile bufio. --- diff --git a/lib/Makefile.am b/lib/Makefile.am index 30de42a..0f13d2b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,7 @@ lib_LIBRARIES = libht.a -libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c cf.c +libht_a_SOURCES = utils.c mt.c log.c req.c proc.c mtio.c resp.c \ + cf.c bufio.c libht_a_CFLAGS = -fPIC if USE_EPOLL libht_a_SOURCES += mtio-epoll.c @@ -12,4 +13,5 @@ libht_a_SOURCES += mtio-select.c endif endif -pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h cf.h +pkginclude_HEADERS = utils.h mt.h log.h req.h proc.h mtio.h resp.h \ + cf.h bufio.h