diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-29 12:38:54 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-29 12:38:54 +0000 |
commit | 1ad2c17ddf8ceab2b5966bac6ca3583f0b6d1848 (patch) | |
tree | 0e5c8c5882067d3802e2c042ff208e36560cbd98 | |
parent | 24cf4a1365a67342ad12dbcc3bf025061c9d27b4 (diff) | |
download | mpd-1ad2c17ddf8ceab2b5966bac6ca3583f0b6d1848.tar.gz mpd-1ad2c17ddf8ceab2b5966bac6ca3583f0b6d1848.tar.xz mpd-1ad2c17ddf8ceab2b5966bac6ca3583f0b6d1848.zip |
oops forgot forte C++ fixes in configure.ac
git-svn-id: https://svn.musicpd.org/mpd/trunk@1227 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7ccfeb2f1..adf35559a 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,10 @@ AC_PROG_MAKE_SET AM_CONFIG_HEADER(config.h) -MPD_CFLAGS="-Wall" +MPD_CFLAGS="" +if test x$CC = xgcc; then + MPD_CFLAGS="-Wall" +fi MPD_LIBS="" AC_ARG_ENABLE(audio,[ --disable-audio disable support for playing],,enable_ao=yes) |