[MPlayer-cvslog] r30219 - trunk/configure
diego
subversion at mplayerhq.hu
Mon Jan 4 22:57:13 CET 2010
Author: diego
Date: Mon Jan 4 22:57:13 2010
New Revision: 30219
Log:
Pass a proper va_list type to vsscanf() test in configure.
This fixes the check on SuperH with CodeSourcery compilers.
patch by Bill Traynor, wmat naoi ca
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Jan 4 22:38:45 2010 (r30218)
+++ trunk/configure Mon Jan 4 22:57:13 2010 (r30219)
@@ -3745,7 +3745,7 @@ cat > $TMPC << EOF
#define _ISOC99_SOURCE
#include <stdarg.h>
#include <stdio.h>
-int main(void) { vsscanf(0, 0, 0); return 0; }
+int main(void) { va_list ap; vsscanf(0, 0, ap); return 0; }
EOF
_vsscanf=no
cc_check && _vsscanf=yes
More information about the MPlayer-cvslog
mailing list