aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorQball Cow <qball@sarine.nl>2008-12-22 12:02:12 +0100
committerQball Cow <qball@sarine.nl>2008-12-22 12:02:12 +0100
commitfe4a9a6d676bb1ce8fcac1b8f8eb44de0ea84b9f (patch)
tree20ba05af1b7348adfa0ba9e1c6b8ebaa8fc3bc26 /configure.ac
parent3b2a752d0edae8868fb7a01554be0069022843a9 (diff)
downloadmpd-fe4a9a6d676bb1ce8fcac1b8f8eb44de0ea84b9f.tar.gz
mpd-fe4a9a6d676bb1ce8fcac1b8f8eb44de0ea84b9f.tar.xz
mpd-fe4a9a6d676bb1ce8fcac1b8f8eb44de0ea84b9f.zip
Build makefiles after checking available outputs and decoder plugins
Move the AC_OUTPUT below the checks. So you nicely see what goes wrong.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac22
1 files changed, 12 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index cbff1a398..dc99e4196 100644
--- a/configure.ac
+++ b/configure.ac
@@ -903,15 +903,6 @@ then
MPD_CHECK_FLAG([-pedantic])
fi
-
-dnl
-dnl generate files
-dnl
-
-
-AC_OUTPUT(doc/Makefile src/Makefile Makefile)
-
-
dnl
dnl pretty-print result
dnl
@@ -1151,9 +1142,20 @@ else
echo " HTTP streaming (libcurl) ......disabled"
fi
-
echo ""
echo "##########################################"
echo ""
+
+echo "Generating needed files for compilation"
+echo ""
+
+dnl
+dnl generate files
+dnl
+
+AC_OUTPUT(doc/Makefile src/Makefile Makefile)
+
+echo ""
+
echo "You are now ready to compile MPD"
echo "Type \"make\" to compile MPD"