fix the test for vsscanf() declaration which never passed because it was trying to use char* instead of va_list
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
3fb1e0594a
commit
efce184b1d
7
configure
vendored
7
configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Id: configure.in 53035 2008-04-05 21:00:46Z SN .
|
||||
# From configure.in Id: configure.in 53842 2008-05-30 13:35:30Z VZ .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61 for wxWidgets 2.9.0.
|
||||
#
|
||||
@ -35360,8 +35360,9 @@ int
|
||||
main ()
|
||||
{
|
||||
|
||||
char *buf, *parse;
|
||||
vsscanf(buf, "%s", parse);
|
||||
char *buf;
|
||||
va_list args;
|
||||
vsscanf(buf, "%s", args);
|
||||
|
||||
;
|
||||
return 0;
|
||||
|
@ -4182,8 +4182,9 @@ if test "$ac_cv_func_vsscanf" = "yes"; then
|
||||
#endif
|
||||
],
|
||||
[
|
||||
char *buf, *parse;
|
||||
vsscanf(buf, "%s", parse);
|
||||
char *buf;
|
||||
va_list args;
|
||||
vsscanf(buf, "%s", args);
|
||||
],
|
||||
wx_cv_func_vsscanf_decl=yes,
|
||||
wx_cv_func_vsscanf_decl=no
|
||||
|
Loading…
Reference in New Issue
Block a user