]> git.cameronkatri.com Git - mandoc.git/blobdiff - Makefile
Compat glue needed for Solaris 9 and 10.
[mandoc.git] / Makefile
index eaa62621a51d49a18a02bd05a839a70ddaacb18d..231b4161dabede5c18c113ba869ae603ee0d6efb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-# $Id: Makefile,v 1.455 2015/02/16 14:56:22 schwarze Exp $
+# $Id: Makefile,v 1.458 2015/03/19 14:57:29 schwarze Exp $
 #
 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
-# Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
+# Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
 #
 # Permission to use, copy, modify, and distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
 # 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.3
+
 # === LIST OF FILES ====================================================
 
 TESTSRCS        = test-dirent-namlen.c \
                   test-fgetln.c \
                   test-fts.c \
                   test-getsubopt.c \
+                  test-isblank.c \
+                  test-mkdtemp.c \
                   test-mmap.c \
                   test-ohash.c \
                   test-reallocarray.c \
@@ -32,6 +36,7 @@ TESTSRCS       = test-dirent-namlen.c \
                   test-strptime.c \
                   test-strsep.c \
                   test-strtonum.c \
+                  test-vasprintf.c \
                   test-wchar.c
 
 SRCS            = att.c \
@@ -40,6 +45,8 @@ SRCS           = att.c \
                   compat_fgetln.c \
                   compat_fts.c \
                   compat_getsubopt.c \
+                  compat_isblank.c \
+                  compat_mkdtemp.c \
                   compat_ohash.c \
                   compat_reallocarray.c \
                   compat_sqlite3_errstr.c \
@@ -48,6 +55,7 @@ SRCS           = att.c \
                   compat_strlcpy.c \
                   compat_strsep.c \
                   compat_strtonum.c \
+                  compat_vasprintf.c \
                   demandoc.c \
                   eqn.c \
                   eqn_html.c \
@@ -185,6 +193,8 @@ LIBMANDOC_OBJS       = $(LIBMAN_OBJS) \
 COMPAT_OBJS     = compat_fgetln.o \
                   compat_fts.o \
                   compat_getsubopt.o \
+                  compat_isblank.o \
+                  compat_mkdtemp.o \
                   compat_ohash.o \
                   compat_reallocarray.o \
                   compat_sqlite3_errstr.o \
@@ -192,7 +202,8 @@ COMPAT_OBJS  = compat_fgetln.o \
                   compat_strlcat.o \
                   compat_strlcpy.o \
                   compat_strsep.o \
-                  compat_strtonum.o
+                  compat_strtonum.o \
+                  compat_vasprintf.o
 
 MANDOC_HTML_OBJS = eqn_html.o \
                   html.o \