changeset 1151:641aa6941b2a

Test for vsnprintf seemed to be missing... readding it.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 12 Sep 2011 02:22:48 +0000
parents 0c073534d722
children 58b5374355ab
files config.h.in configure.in
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/config.h.in	Sun Sep 11 22:32:40 2011 +0000
+++ b/config.h.in	Mon Sep 12 02:22:48 2011 +0000
@@ -6,9 +6,6 @@
 /* Define if you have the connect function.  */
 #undef HAVE_CONNECT
 
-/* Define if you have the pipe function.  */
-#undef HAVE_PIPE
-
 /* Define if you have the <dirent.h> header file.  */
 #undef HAVE_DIRENT_H
 
@@ -30,6 +27,9 @@
 /* Determine whether we have the pipe function */
 #undef HAVE_PIPE
 
+/* Determine whether we have the vsnprintf function */
+#undef HAVE_VSNPRINTF
+
 /* Define if GtkMozEmbed is available */
 #undef USE_GTKMOZEMBED
 
--- a/configure.in	Sun Sep 11 22:32:40 2011 +0000
+++ b/configure.in	Mon Sep 12 02:22:48 2011 +0000
@@ -108,6 +108,7 @@
 AC_CHECK_HEADERS(sys/stat.h)
 
 AC_CHECK_FUNCS(pipe, AC_DEFINE(HAVE_PIPE,1,Determine whether we have the pipe function))
+AC_CHECK_FUNCS(vsnprintf, AC_DEFINE(HAVE_VSNPRINTF,1,Determine whether we have the vsnprintf function))
 
 AC_CHECK_FUNCS(connect)
 if test x"$ac_cv_func_connect" = x"no"; then