Changeset 548

Show
Ignore:
Timestamp:
09/12/07 12:03:34 (11 months ago)
Author:
takkaria
Message:

Make it clearer when the libraries for SDL sound aren't around. (#387)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configure.ac

    r469 r548  
    1616AC_PROG_CC 
    1717 
    18 test "$GCC" = "yes" && CFLAGS="$CFLAGS -Wall -pipe -g -fno-strength-reduce
     18test "$GCC" = "yes" && CFLAGS="$CFLAGS -fno-strength-reduce -Wall
    1919 
    2020dnl Checks for various programs 
     
    245245        echo "- SDL                                     Disabled" 
    246246fi 
     247 
     248echo 
     249 
     250if test "$enable_sdl_mixer" = "yes"; then 
     251        if test "$found_sdl_mixer" = "no"; then 
     252                echo "- SDL sound                               No; missing libraries" 
     253        else 
     254                echo "- SDL sound                               Yes" 
     255        fi 
     256else 
     257        echo "- SDL sound                               Disabled" 
     258fi