diff options
author | Max Kellermann <max@duempel.org> | 2009-01-06 09:07:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-06 09:07:02 +0100 |
commit | ad7b7a16646daf72618ebcfbfd4dc0bcf6e79d95 (patch) | |
tree | 3f4b1bac2a7f7f2da4a570073654465a9e5375fa | |
parent | 2e2bfb4515948f8136b6f819bcaf9122f81fc10f (diff) | |
download | mpd-ad7b7a16646daf72618ebcfbfd4dc0bcf6e79d95.tar.gz mpd-ad7b7a16646daf72618ebcfbfd4dc0bcf6e79d95.tar.xz mpd-ad7b7a16646daf72618ebcfbfd4dc0bcf6e79d95.zip |
configure.ac: declare MPD_LIBS and MPD_CFLAGS first
Declare and initialize MPD_LIBS and MPD_CFLAGS before the "OS specific
defaults" section.
-rw-r--r-- | configure.ac | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index 2295dc12c..0fa53b60b 100644 --- a/configure.ac +++ b/configure.ac @@ -19,6 +19,16 @@ PKG_PROG_PKG_CONFIG dnl +dnl declare variables +dnl + +AC_SUBST(MPD_LIBS) +AC_SUBST(MPD_CFLAGS) +MPD_LIBS="" +MPD_CFLAGS="" + + +dnl dnl OS specific defaults dnl @@ -66,16 +76,6 @@ fi dnl -dnl declare variables -dnl - -AC_SUBST(MPD_LIBS) -AC_SUBST(MPD_CFLAGS) -MPD_LIBS="" -MPD_CFLAGS="" - - -dnl dnl libc features dnl |