=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.431 retrieving revision 1.434 diff -u -p -r1.431 -r1.434 --- mandoc/Makefile 2014/08/05 11:19:13 1.431 +++ mandoc/Makefile 2014/08/08 23:47:21 1.434 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.431 2014/08/05 11:19:13 schwarze Exp $ +# $Id: Makefile,v 1.434 2014/08/08 23:47:21 schwarze Exp $ # # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # Copyright (c) 2011, 2013, 2014 Ingo Schwarze @@ -15,7 +15,7 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -VERSION = 1.13.0 +VERSION = 1.13.1 # === USER SETTINGS ==================================================== @@ -121,6 +121,7 @@ TESTSRCS = test-fgetln.c \ test-mmap.c \ test-ohash.c \ test-reallocarray.c \ + test-sqlite3_errstr.c \ test-strcasestr.c \ test-strlcat.c \ test-strlcpy.c \ @@ -136,6 +137,7 @@ SRCS = apropos.c \ compat_getsubopt.c \ compat_ohash.c \ compat_reallocarray.c \ + compat_sqlite3_errstr.c \ compat_strcasestr.c \ compat_strlcat.c \ compat_strlcpy.c \ @@ -187,7 +189,8 @@ SRCS = apropos.c \ vol.c \ $(TESTSRCS) -DISTFILES = LICENSE \ +DISTFILES = INSTALL \ + LICENSE \ Makefile \ Makefile.depend \ NEWS \ @@ -281,6 +284,7 @@ COMPAT_OBJS = compat_fgetln.o \ compat_getsubopt.o \ compat_ohash.o \ compat_reallocarray.o \ + compat_sqlite3_errstr.o \ compat_strcasestr.o \ compat_strlcat.o \ compat_strlcpy.o \ @@ -484,7 +488,8 @@ mdocml.tar.gz: $(DISTFILES) config.h: configure config.h.pre config.h.post $(TESTSRCS) rm -f config.log - CC="$(CC)" CFLAGS="$(CFLAGS)" VERSION="$(VERSION)" ./configure + CC="$(CC)" CFLAGS="$(CFLAGS)" DBLIB="$(DBLIB)" \ + VERSION="$(VERSION)" ./configure .PHONY: base-install cgi-install db-install install www-install .PHONY: clean depend