+if test "$ac_cv_func_vsnprintf" = "yes"; then
+ echo $ac_n "checking for vsnprintf declaration""... $ac_c" 1>&6
+echo "configure:16941: checking for vsnprintf declaration" >&5
+if eval "test \"`echo '$''{'wx_cv_func_vsnprintf_decl'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ cat > conftest.$ac_ext <<EOF
+#line 16947 "configure"
+#include "confdefs.h"
+
+ #include <stdio.h>
+ #include <stdarg.h>
+
+int main() {
+
+ char *buf;
+ va_list ap;
+ vsnprintf(buf, 10u, "%s", ap);
+
+; return 0; }
+EOF
+if { (eval echo configure:16961: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ wx_cv_func_vsnprintf_decl=yes
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ wx_cv_func_vsnprintf_decl=no
+
+fi
+rm -f conftest*
+
+
+fi
+
+echo "$ac_t""$wx_cv_func_vsnprintf_decl" 1>&6
+
+ if test "$wx_cv_func_vsnprintf_decl" = "yes"; then
+ cat >> confdefs.h <<\EOF
+#define HAVE_VSNPRINTF_DECL 1
+EOF
+
+ fi
+fi
+