1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

Fixed detection of vsscanf for newer gcc versions (3.3.1 etc). Patch by Dima K. <dimakar@yahoo.com>.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10794 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
mosu 2003-09-02 14:36:26 +00:00
parent 3de990cc35
commit f5e785c918

2
configure vendored
View File

@ -2411,7 +2411,7 @@ echores "$_strsep"
echocheck "vsscanf()"
cat > $TMPC << EOF
#include <stdarg.h>
int main(void) { vsscanf(); return 0; }
int main(void) { vsscanf(0, 0, 0); return 0; }
EOF
_vsscanf=no
cc_check && _vsscanf=yes