From 4fb7e3d9ad7a8ae4549895e2a3f8cf8504d9e5ce Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 19 Mar 2015 14:57:29 +0000 Subject: Compat glue needed for Solaris 9 and 10. Thanks to Sevan Janiyan for reporting the Solaris 10 issues, to Jan Holzhueter for some additional insight, and to OpenCSW in general for providing me with a Solaris 9/10/11 testing environment. --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4a802a12..9da02ead 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,8 @@ 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 \ @@ -34,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 \ @@ -42,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 \ @@ -50,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 \ @@ -187,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 \ @@ -194,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 \ -- cgit