Chris@42: Chris@214: AC_INIT([Sonic Annotator], [], cannam@all-day-breakfast.com) Chris@42: Chris@42: AC_CONFIG_SRCDIR(runner/main.cpp) Chris@42: Chris@42: # Autoconf will set CXXFLAGS; we don't usually want it to, because we Chris@42: # either define our own flags (at least if GCC is in use) or else use Chris@42: # the user's preferences. We need to ensure CXXFLAGS is only set if Chris@42: # the user has expressly set it. So, save the user's (or empty) Chris@42: # setting now and restore it after Autoconf has done its bit of Chris@42: # piddling about. Chris@42: USER_CXXFLAGS="$CXXFLAGS" Chris@42: Chris@48: # If the user supplied CFLAGS but not CXXFLAGS, use CFLAGS instead Chris@48: if test x"$USER_CXXFLAGS" = x; then Chris@48: if test x"$CFLAGS" != x; then Chris@48: USER_CXXFLAGS="$CFLAGS" Chris@48: fi Chris@48: fi Chris@48: Chris@42: AC_LANG_CPLUSPLUS Chris@42: Chris@42: AC_PROG_CC Chris@42: AC_PROG_CXX Chris@42: AC_PROG_INSTALL Chris@42: AC_PROG_MKDIR_P Chris@42: Chris@222: # We are daringly making use of C++11 now Chris@222: AX_CXX_COMPILE_STDCXX_11(noext) Chris@222: Chris@42: AC_HEADER_STDC Chris@42: Chris@42: # These are the flags Autoconf guesses for us; we use them later if Chris@42: # the user has set none and we are not using GCC (so lack our own Chris@42: # preferred flags) Chris@42: AUTOCONF_CXXFLAGS="$CXXFLAGS" Chris@42: Chris@42: PKG_PROG_PKG_CONFIG Chris@42: Chris@42: SV_CHECK_QT Chris@42: Chris@42: SV_DEFINES_DEBUG="-DDEBUG -DBUILD_DEBUG -DWANT_TIMING" Chris@42: SV_DEFINES_RELEASE="-DNDEBUG -DBUILD_RELEASE -DNO_TIMING" Chris@42: SV_DEFINES_MINIMAL="$SV_DEFINES_RELEASE" Chris@42: Chris@42: # Now we have: USER_CXXFLAGS contains any flags the user set Chris@42: # explicitly; AUTOCONF_CXXFLAGS contains flags that Autoconf thought Chris@42: # we should use. If we have GCC, we override the latter but then Chris@42: # allow ourselves to be overridden (later) by the former Chris@42: Chris@42: CXXFLAGS_DEBUG="$AUTOCONF_CXXFLAGS" Chris@42: CXXFLAGS_RELEASE="$AUTOCONF_CXXFLAGS" Chris@42: CXXFLAGS_MINIMAL="$AUTOCONF_CXXFLAGS" Chris@42: Chris@42: if test "x$GCC" = "xyes"; then Chris@178: CXXFLAGS_DEBUG="-Wall -Werror -Wno-error=cpp -Woverloaded-virtual -Wextra -Wformat-nonliteral -Wformat-security -Winit-self -Wswitch-enum -g -pipe" Chris@42: CXXFLAGS_RELEASE="-g0 -O2 -Wall -pipe" Chris@42: CXXFLAGS_MINIMAL="-g0 -O0" Chris@42: fi Chris@42: Chris@42: CXXFLAGS_BUILD="$CXXFLAGS_RELEASE" Chris@42: SV_DEFINES_BUILD="$SV_DEFINES_RELEASE" Chris@42: Chris@42: QMAKE_CONFIG="release" Chris@42: Chris@42: AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],[enable debug support [default=no]])],[AC_MSG_NOTICE([enabling debug build]) Chris@42: QMAKE_CONFIG="debug" Chris@42: CXXFLAGS_BUILD="$CXXFLAGS_DEBUG" Chris@42: SV_DEFINES_BUILD="$SV_DEFINES_DEBUG"]) Chris@42: Chris@42: if test x"$USER_CXXFLAGS" != x; then Chris@42: AC_MSG_NOTICE([The CXXFLAGS environment variable is set to "$USER_CXXFLAGS".]) Chris@42: AC_MSG_NOTICE(Overriding default compiler flags with the above user setting.) Chris@42: CXXFLAGS_BUILD="$USER_CXXFLAGS" Chris@42: CXXFLAGS_MINIMAL="$USER_CXXFLAGS" Chris@42: fi Chris@42: Chris@42: CXXFLAGS="$CXXFLAGS_BUILD $SV_DEFINES_BUILD" Chris@42: Chris@42: SV_MODULE_REQUIRED([bz2],[],[bzlib.h],[bz2],[BZ2_bzReadOpen]) Chris@42: SV_MODULE_REQUIRED([fftw3],[fftw3 >= 3.0.0],[fftw3.h],[fftw3],[fftw_execute]) Chris@42: SV_MODULE_REQUIRED([fftw3f],[fftw3f >= 3.0.0],[fftw3.h],[fftw3f],[fftwf_execute]) Chris@42: SV_MODULE_REQUIRED([sndfile],[sndfile >= 1.0.16],[sndfile.h],[sndfile],[sf_open]) Chris@42: SV_MODULE_REQUIRED([samplerate],[samplerate >= 0.1.2],[samplerate.h],[samplerate],[src_new]) Chris@82: SV_MODULE_REQUIRED([sord],[sord-0 >= 0.5],[sord/sord.h],[sord-0],[sord_world_new]) Chris@82: SV_MODULE_REQUIRED([serd],[serd-0 >= 0.5],[serd/serd.h],[serd-0],[serd_reader_read_file]) Chris@42: Chris@90: SV_MODULE_OPTIONAL([liblo],[],[lo/lo.h],[lo],[lo_address_new]) Chris@42: SV_MODULE_OPTIONAL([lrdf],[lrdf >= 0.2],[lrdf.h],[lrdf],[lrdf_init]) Chris@42: SV_MODULE_OPTIONAL([oggz],[oggz >= 1.0.0],[oggz/oggz.h],[oggz],[oggz_run]) Chris@42: SV_MODULE_OPTIONAL([fishsound],[fishsound >= 1.0.0],[fishsound/fishsound.h],[fishsound],[fish_sound_new]) Chris@42: SV_MODULE_OPTIONAL([mad],[mad >= 0.15.0],[mad.h],[mad],[mad_decoder_init]) Chris@42: SV_MODULE_OPTIONAL([id3tag],[id3tag >= 0.15.0],[id3tag.h],[id3tag],[id3_tag_new]) Chris@42: Chris@42: AC_SUBST(PERL) Chris@42: AC_SUBST(XARGS) Chris@42: AC_SUBST(MAKEDEPEND) Chris@42: AC_SUBST(SHA1SUM) Chris@42: AC_SUBST(CUT) Chris@42: Chris@42: AC_SUBST(CFLAGS) Chris@42: AC_SUBST(CXXFLAGS) Chris@42: AC_SUBST(CXXFLAGS_MINIMAL) Chris@77: AC_SUBST(LDFLAGS) Chris@42: AC_SUBST(HAVES) Chris@42: AC_SUBST(LIBS) Chris@42: Chris@42: AC_SUBST(CC) Chris@42: AC_SUBST(CXX) Chris@42: Chris@42: AC_SUBST(QMAKE_CONFIG) Chris@42: Chris@214: AC_CONFIG_FILES([config.pri]) Chris@42: Chris@67: AC_OUTPUT Chris@42: Chris@74: if ! $QMAKE -r sonic-annotator.pro; then Chris@42: AC_MSG_ERROR([qmake failed: Command was "$QMAKE -r"]) Chris@42: fi Chris@42: Chris@42: AC_MSG_NOTICE([ Chris@42: Chris@42: Configuration complete. Chris@42: Please check the above messages for any warnings that you Chris@42: might care about, and then run "make". Chris@42: Chris@42: The file config.pri contains the configuration settings for Chris@42: qmake. If you want to adjust these by hand, edit config.pri Chris@42: and run "qmake -r" again to regenerate the Makefile. Chris@42: ])