# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1315794168 0 # Node ID 641aa6941b2a54f2bcf98af0dbf36a92a9eefce6 # Parent 0c073534d722d477b81f0f4cb6832f753064fe69 Test for vsnprintf seemed to be missing... readding it. diff -r 0c073534d722 -r 641aa6941b2a config.h.in --- 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 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 diff -r 0c073534d722 -r 641aa6941b2a configure.in --- 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