# HG changeset patch # User Sam Lantinga # Date 1198958931 0 # Node ID 917ca146d901134bdee2d97c136beb252db78bb0 # Parent d07c60f5e460a1ec0ae8ee938206d74017f97b8d J. Snell fixed bug #482 Fixed arguments used with sdl-config in sdl.m4 diff -r d07c60f5e460 -r 917ca146d901 docs.html --- a/docs.html Sat Dec 29 19:44:02 2007 +0000 +++ b/docs.html Sat Dec 29 20:08:51 2007 +0000 @@ -45,6 +45,9 @@

Scan for all joysticks on Linux instead of stopping at one that was removed.

+

+ Fixed use of sdl-config arguments in sdl.m4 +

Windows Notes

diff -r d07c60f5e460 -r 917ca146d901 sdl.m4 --- a/sdl.m4 Sat Dec 29 19:44:02 2007 +0000 +++ b/sdl.m4 Sat Dec 29 20:08:51 2007 +0000 @@ -20,13 +20,13 @@ , enable_sdltest=yes) if test x$sdl_exec_prefix != x ; then - sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" + sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then - sdl_args="$sdl_args --prefix=$sdl_prefix" + sdl_config_args="$sdl_config_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi @@ -42,12 +42,12 @@ if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else - SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` - SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` + SDL_CFLAGS=`$SDL_CONFIG $sdl_config_args --cflags` + SDL_LIBS=`$SDL_CONFIG $sdl_config_args --libs` - sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ + sdl_major_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ + sdl_minor_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`