=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.432 retrieving revision 1.435 diff -u -p -r1.432 -r1.435 --- mandoc/Makefile 2014/08/05 12:50:52 1.432 +++ mandoc/Makefile 2014/08/10 02:45:04 1.435 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.432 2014/08/05 12:50:52 schwarze Exp $ +# $Id: Makefile,v 1.435 2014/08/10 02:45:04 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 ==================================================== @@ -52,9 +52,10 @@ INSTALL_MAN = $(INSTALL_DATA) # --- user settings related to database support ------------------------ -# If you want to build without database support, for example to avoid -# the dependency on SQLite3, comment the following line. -# However, you won't get apropos(1) and makewhatis(8) in that case. +# Building apropos(1) and makewhatis(8) requires both SQLite3 and fts(3). +# To avoid those dependencies, comment the following line. +# Be careful: the fts(3) implementation in glibc is broken on 32bit +# machines, see: https://sourceware.org/bugzilla/show_bug.cgi?id=15838 # BUILD_TARGETS += db-build @@ -189,7 +190,8 @@ SRCS = apropos.c \ vol.c \ $(TESTSRCS) -DISTFILES = LICENSE \ +DISTFILES = INSTALL \ + LICENSE \ Makefile \ Makefile.depend \ NEWS \ @@ -487,7 +489,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