Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2906 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jkeil 2001-11-14 19:02:39 +00:00
parent da2237785b
commit 2f56bc761d
1 changed files with 16 additions and 0 deletions

16
configure vendored
View File

@ -1254,6 +1254,13 @@ EOF
_sys_soundcard_h=no
cc_check && _sys_soundcard_h=yes
# check for vsscanf
cat > $TMPC << EOF
int main( void ) { vsscanf(); return 0; }
EOF
_vsscanf=no
cc_check && _vsscanf=yes
# ---
# try to detect type of audio supported on this machine
@ -2271,6 +2278,12 @@ else
_zlib=''
fi
if test "$_vsscanf" = yes ; then
_have_vsscanf='#define HAVE_VSSCANF 1'
else
_have_vsscanf='#undef HAVE_VSSCANF'
fi
# Checking for CFLAGS
if test "$_profile" || test "$_debug" ; then
CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile"
@ -2737,6 +2750,9 @@ $_have_libkstat
/* Define this if you have zlib */
$_have_zlib
/* Define this if your system has vsscanf */
$_have_vsscanf
/* LIRC (remote control, see www.lirc.org) support: */
$_lircdefs