diff options
author | Max Kellermann <max@duempel.org> | 2009-02-25 16:46:07 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-25 16:46:07 +0100 |
commit | bdb3129f18cc42dce09984108801937512667209 (patch) | |
tree | 5109958f18ef110a8f27d9f38ccdd274e76b7fca | |
parent | 6fdaa49668e126938c187cabfd78a818a3f68de9 (diff) | |
download | mpd-bdb3129f18cc42dce09984108801937512667209.tar.gz mpd-bdb3129f18cc42dce09984108801937512667209.tar.xz mpd-bdb3129f18cc42dce09984108801937512667209.zip |
configure.ac: declare AM_CFLAGS
Moved generic compiler options to AM_CFLAGS. MPD_CFLAGS/MPD_LIBS will
hopefully fade away one day, in favor of more fine-grained variables.
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | m4/mpd_check_cflag.m4 | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 00666c30c..17eb49eb9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,7 @@ AM_LDFLAGS = $(GLIB_LIBS) bin_PROGRAMS = src/mpd -src_mpd_CFLAGS = $(MPD_CFLAGS) +src_mpd_CFLAGS = $(AM_CFLAGS) $(MPD_CFLAGS) src_mpd_CPPFLAGS = $(AM_CPPFLAGS) \ $(SQLITE_CFLAGS) \ $(ID3TAG_CFLAGS) \ diff --git a/configure.ac b/configure.ac index ddebb0bdc..653bea29d 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,8 @@ dnl dnl declare variables dnl +AC_SUBST(AM_CFLAGS,"") + AC_SUBST(MPD_LIBS) AC_SUBST(MPD_CFLAGS) MPD_LIBS="" @@ -1105,7 +1107,7 @@ AC_ARG_ENABLE(werror, ENABLE_WERROR=no) if test "x$ENABLE_WERROR" = xyes; then - MPD_CFLAGS="$MPD_CFLAGS -Werror -pedantic-errors" + AM_CFLAGS="$AM_CFLAGS -Werror -pedantic-errors" fi AC_ARG_ENABLE(debug, @@ -1116,7 +1118,7 @@ AC_ARG_ENABLE(debug, #if test "x$ENABLE_DEBUG" = xno; then # don't set NDEBUG for now, until MPD is stable - #MPD_CFLAGS="$MPD_CFLAGS -DNDEBUG" + #AM_CFLAGS="$AM_CFLAGS -DNDEBUG" #fi AC_ARG_ENABLE(gprof, diff --git a/m4/mpd_check_cflag.m4 b/m4/mpd_check_cflag.m4 index 421123355..9b5788f7b 100644 --- a/m4/mpd_check_cflag.m4 +++ b/m4/mpd_check_cflag.m4 @@ -12,7 +12,7 @@ AC_DEFUN([MPD_CHECK_FLAG],[ ]) if eval "test x`echo '$mpd_check_cflag_'$var` = xyes" then - MPD_CFLAGS="$MPD_CFLAGS $1" + AM_CFLAGS="$AM_CFLAGS $1" fi ]) ]) |