=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.454 retrieving revision 1.455 diff -u -p -r1.454 -r1.455 --- mandoc/Makefile 2015/02/03 21:16:02 1.454 +++ mandoc/Makefile 2015/02/16 14:56:22 1.455 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.454 2015/02/03 21:16:02 schwarze Exp $ +# $Id: Makefile,v 1.455 2015/02/16 14:56:22 schwarze Exp $ # # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # Copyright (c) 2011, 2013, 2014 Ingo Schwarze @@ -31,6 +31,7 @@ TESTSRCS = test-dirent-namlen.c \ test-strlcpy.c \ test-strptime.c \ test-strsep.c \ + test-strtonum.c \ test-wchar.c SRCS = att.c \ @@ -46,6 +47,7 @@ SRCS = att.c \ compat_strlcat.c \ compat_strlcpy.c \ compat_strsep.c \ + compat_strtonum.c \ demandoc.c \ eqn.c \ eqn_html.c \ @@ -189,7 +191,8 @@ COMPAT_OBJS = compat_fgetln.o \ compat_strcasestr.o \ compat_strlcat.o \ compat_strlcpy.o \ - compat_strsep.o + compat_strsep.o \ + compat_strtonum.o MANDOC_HTML_OBJS = eqn_html.o \ html.o \