From d6773f563db51b2e941c4e9806ac2601211ad33c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 29 Jan 2008 09:33:30 +0000 Subject: [PATCH] Pass argc and argv to the main function of the SDL tests. This appears to be required on Windows and does no harm on Linux. closes issue 344, patch by jdm Originally committed as revision 11662 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f8ccd8aae5..617729543a 100755 --- a/configure +++ b/configure @@ -493,7 +493,7 @@ check_func2(){ done check_ld "$@" </dev/null 2>&1; then enable sdl check_cc $sdl_cflags < -int main(void){ +int main(int argc, char **argv){ const SDL_VideoInfo *vi = SDL_GetVideoInfo(); int w = vi->current_w; return 0;