Commit e4afee9716d20cbc7d1875a66411f85c8c640286
1 parent
d0b3e735
cosmetics
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1403 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
3 deletions
configure
... | ... | @@ -158,8 +158,6 @@ for opt do |
158 | 158 | ;; |
159 | 159 | --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}" |
160 | 160 | ;; |
161 | - --extra-libs=*) extralibs=${opt#--extra-libs=} | |
162 | - ;; | |
163 | 161 | --cpu=*) cpu=`echo $opt | cut -d '=' -f 2` |
164 | 162 | ;; |
165 | 163 | --target-list=*) target_list=${opt#--target-list=} |
... | ... | @@ -420,7 +418,9 @@ if test "$darwin" = "yes" ; then |
420 | 418 | echo "Cocoa support $cocoa" |
421 | 419 | fi |
422 | 420 | echo "SDL support $sdl" |
423 | -echo "SDL static link $sdl_static" | |
421 | +if test "$sdl" != "no" ; then | |
422 | + echo "SDL static link $sdl_static" | |
423 | +fi | |
424 | 424 | echo "mingw32 support $mingw32" |
425 | 425 | echo "Adlib support $adlib" |
426 | 426 | echo -n "FMOD support $fmod" | ... | ... |