summaryrefslogtreecommitdiff
path: root/app/fonttosfnt/configure.ac
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2008-06-13 00:04:07 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2008-06-13 00:04:07 +0000
commit10183b70c1ea603a2297eebe33997035755e7ea9 (patch)
treeb44fde198aec07f3812b3896b620c3e037d30335 /app/fonttosfnt/configure.ac
parent7f042b920dcac43488276d61940e79f0baece3ca (diff)
Update to fonttosfnt version 1.0.4.
Diffstat (limited to 'app/fonttosfnt/configure.ac')
-rw-r--r--app/fonttosfnt/configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/fonttosfnt/configure.ac b/app/fonttosfnt/configure.ac
index 5e52eb06b..0782b0351 100644
--- a/app/fonttosfnt/configure.ac
+++ b/app/fonttosfnt/configure.ac
@@ -22,7 +22,7 @@ dnl
dnl Process this file with autoconf to create configure.
AC_PREREQ([2.57])
-AC_INIT(fonttosfnt,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],fonttosfnt)
+AC_INIT(fonttosfnt,[1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],fonttosfnt)
AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE
@@ -32,6 +32,11 @@ AC_PROG_CC
AC_PROG_INSTALL
AC_CHECK_FUNC(setenv, have_setenv=yes, have_setenv=no)
+AC_CHECK_FUNCS([vasprintf])
+AC_CHECK_DECLS([va_copy], [], [], [
+ AC_INCLUDES_DEFAULT
+ #include <stdarg.h>
+])
AM_CONDITIONAL(NEED_SETENV, [test x$have_setenv = xno])