comparison configure.ac @ 638:6d38e9b15a78 qt5

Update configure
author Chris Cannam
date Mon, 13 May 2013 14:39:31 +0100
parents 7ac63919fd52
children 51da09385b38
comparison
equal deleted inserted replaced
637:2146130d1236 638:6d38e9b15a78
1 1
2 AC_INIT(SVgui, 1.8, cannam@all-day-breakfast.com) 2 AC_INIT([SVgui], [2.1], cannam@all-day-breakfast.com)
3 3
4 AC_CONFIG_SRCDIR(widgets/Fader.h) 4 AC_CONFIG_SRCDIR(widgets/Fader.h)
5 5
6 # Autoconf will set CXXFLAGS; we don't usually want it to, because we 6 # Autoconf will set CXXFLAGS; we don't usually want it to, because we
7 # either define our own flags (at least if GCC is in use) or else use 7 # either define our own flags (at least if GCC is in use) or else use
78 SV_MODULE_REQUIRED([fftw3],[fftw3 >= 3.0.0],[fftw3.h],[fftw3],[fftw_execute]) 78 SV_MODULE_REQUIRED([fftw3],[fftw3 >= 3.0.0],[fftw3.h],[fftw3],[fftw_execute])
79 SV_MODULE_REQUIRED([fftw3f],[fftw3f >= 3.0.0],[fftw3.h],[fftw3f],[fftwf_execute]) 79 SV_MODULE_REQUIRED([fftw3f],[fftw3f >= 3.0.0],[fftw3.h],[fftw3f],[fftwf_execute])
80 SV_MODULE_REQUIRED([sndfile],[sndfile >= 1.0.16],[sndfile.h],[sndfile],[sf_open]) 80 SV_MODULE_REQUIRED([sndfile],[sndfile >= 1.0.16],[sndfile.h],[sndfile],[sf_open])
81 SV_MODULE_REQUIRED([samplerate],[samplerate >= 0.1.2],[samplerate.h],[samplerate],[src_new]) 81 SV_MODULE_REQUIRED([samplerate],[samplerate >= 0.1.2],[samplerate.h],[samplerate],[src_new])
82 SV_MODULE_REQUIRED([vamp],[vamp >= 2.1],[vamp/vamp.h],[],[]) 82 SV_MODULE_REQUIRED([vamp],[vamp >= 2.1],[vamp/vamp.h],[],[])
83 SV_MODULE_REQUIRED([vamphostsdk],[vamp-hostsdk >= 2.3.1],[vamp-hostsdk/PluginLoader.h],[vamp-hostsdk],[libvamphostsdk_v_2_3_1_present]) 83 SV_MODULE_REQUIRED([vamphostsdk],[vamp-hostsdk >= 2.5],[vamp-hostsdk/PluginLoader.h],[vamp-hostsdk],[libvamphostsdk_v_2_5_present])
84 SV_MODULE_REQUIRED([rubberband],[rubberband],[rubberband/RubberBandStretcher.h],[rubberband],[rubberband_new]) 84 SV_MODULE_REQUIRED([rubberband],[rubberband],[rubberband/RubberBandStretcher.h],[rubberband],[rubberband_new])
85 85
86 SV_MODULE_OPTIONAL([liblo],[],[lo/lo.h],[lo],[lo_address_new]) 86 SV_MODULE_OPTIONAL([liblo],[],[lo/lo.h],[lo],[lo_address_new])
87 SV_MODULE_OPTIONAL([portaudio_2_0],[portaudio-2.0 >= 19],[portaudio.h],[portaudio],[Pa_IsFormatSupported]) 87 SV_MODULE_OPTIONAL([portaudio_2_0],[portaudio-2.0 >= 19],[portaudio.h],[portaudio],[Pa_IsFormatSupported])
88 SV_MODULE_OPTIONAL([JACK],[jack >= 0.100],[jack/jack.h],[jack],[jack_client_open]) 88 SV_MODULE_OPTIONAL([JACK],[jack >= 0.100],[jack/jack.h],[jack],[jack_client_open])
112 112
113 AC_CONFIG_FILES([config.pri]) 113 AC_CONFIG_FILES([config.pri])
114 114
115 AC_OUTPUT 115 AC_OUTPUT
116 116
117 if ! $QMAKE -r; then 117 if ! $QMAKE -r svgui.pro; then
118 AC_MSG_ERROR([qmake failed: Command was "$QMAKE -r"]) 118 AC_MSG_ERROR([qmake failed: Command was "$QMAKE -r"])
119 fi 119 fi
120 120
121 AC_MSG_NOTICE([ 121 AC_MSG_NOTICE([
122 122
124 Please check the above messages for any warnings that you 124 Please check the above messages for any warnings that you
125 might care about, and then run "make". 125 might care about, and then run "make".
126 126
127 The file config.pri contains the configuration settings for 127 The file config.pri contains the configuration settings for
128 qmake. If you want to adjust these by hand, edit config.pri 128 qmake. If you want to adjust these by hand, edit config.pri
129 and run "qmake -r" again to regenerate the Makefile. 129 and run "$QMAKE -r" again to regenerate the Makefile.
130 ]) 130 ])