=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.407 retrieving revision 1.410 diff -u -p -r1.407 -r1.410 --- mandoc/Makefile 2014/01/04 01:11:00 1.407 +++ mandoc/Makefile 2014/01/04 15:00:02 1.410 @@ -8,8 +8,8 @@ # # CFLAGS += -DOSNAME="\"OpenBSD 5.4\"" -VERSION = 1.12.3 -VDATE = 31 December 2013 +VERSION = 1.13.0 +VDATE = 4 January 2014 # IFF your system supports multi-byte functions (setlocale(), wcwidth(), # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a @@ -59,6 +59,7 @@ TESTSRCS = test-fgetln.c \ test-ohash.c \ test-strlcat.c \ test-strlcpy.c \ + test-strnlen.c \ test-strptime.c SRCS = Makefile \ @@ -75,12 +76,16 @@ SRCS = Makefile \ chars.in \ compat_fgetln.c \ compat_getsubopt.c \ + compat_ohash.c \ + compat_ohash.h \ compat_strcasestr.c \ compat_strlcat.c \ compat_strlcpy.c \ + compat_strnlen.c \ compat_strsep.c \ config.h.post \ config.h.pre \ + configure \ demandoc.1 \ demandoc.c \ eqn.7 \ @@ -118,8 +123,11 @@ SRCS = Makefile \ mandoc_char.7 \ mandocdb.8 \ mandocdb.c \ + manpage.c \ manpath.c \ manpath.h \ + mansearch.c \ + mansearch.h \ mdoc.7 \ mdoc.c \ mdoc.h \ @@ -197,6 +205,7 @@ COMPAT_OBJS = compat_fgetln.o \ compat_strcasestr.o \ compat_strlcat.o \ compat_strlcpy.o \ + compat_strnlen.o \ compat_strsep.o arch.o: arch.in @@ -354,7 +363,8 @@ mdocml.md5: mdocml.tar.gz mdocml.tar.gz: $(SRCS) mkdir -p .dist/mdocml-$(VERSION)/ $(INSTALL_SOURCE) $(SRCS) .dist/mdocml-$(VERSION) - ( cd .dist/ && tar zcf ../$@ ./ ) + chmod 755 .dist/mdocml-$(VERSION)/configure + ( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) ) rm -rf .dist/ index.html: $(INDEX_OBJS)