=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.246 retrieving revision 1.249 diff -u -p -r1.246 -r1.249 --- mandoc/Makefile 2010/01/01 17:14:26 1.246 +++ mandoc/Makefile 2010/01/29 14:39:37 1.249 @@ -10,8 +10,8 @@ INSTALL_DATA = install -m 0444 INSTALL_LIB = install -m 0644 INSTALL_MAN = $(INSTALL_DATA) -VERSION = 1.9.14 -VDATE = 16 November 2009 +VERSION = 1.9.15-pre2 +VDATE = 02 January 2010 VFLAGS = -DVERSION="\"$(VERSION)\"" -DHAVE_CONFIG_H WFLAGS = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings @@ -127,6 +127,8 @@ uninstall: $(OBJS): config.h +$(LNS): config.h + man_macro.ln: man_macro.c libman.h man_macro.o: man_macro.c libman.h @@ -263,11 +265,11 @@ config.h: config.h.pre config.h.post rm -f config.log ( cat config.h.pre; \ echo; \ - if $(CC) $(CFLAGS) -c test-strlcat.c >> config.log 2>&1; then \ + if $(CC) $(CFLAGS) -Werror -c test-strlcat.c >> config.log 2>&1; then \ echo '#define HAVE_STRLCAT'; \ rm test-strlcat.o; \ fi; \ - if $(CC) $(CFLAGS) -c test-strlcpy.c >> config.log 2>&1; then \ + if $(CC) $(CFLAGS) -Werror -c test-strlcpy.c >> config.log 2>&1; then \ echo '#define HAVE_STRLCPY'; \ rm test-strlcpy.o; \ fi; \