/[svn]/qsampler/trunk/configure.ac
ViewVC logotype

Contents of /qsampler/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2823 - (show annotations) (download)
Sun Jul 19 16:35:24 2015 UTC (8 years, 8 months ago) by capela
File size: 14448 byte(s)
* Preparations for v0.3.1 - Summer'15 release frenzy.
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT(Qsampler, 0.3.1, rncbc@rncbc.org, qsampler)
3
4 AC_CONFIG_SRCDIR(src/qsampler.cpp)
5 AC_CONFIG_HEADERS(src/config.h)
6 AC_CONFIG_FILES(Makefile qsampler.spec src/src.pri src/qsampler.desktop)
7
8 # Set default installation prefix.
9 AC_PREFIX_DEFAULT(/usr/local)
10 ac_prefix=$prefix
11 if test "x$ac_prefix" = "xNONE"; then
12 ac_prefix=$ac_default_prefix
13 fi
14 AC_SUBST(ac_prefix)
15 AC_DEFINE_UNQUOTED(CONFIG_PREFIX, ["$ac_prefix"], [Default installation prefix.])
16
17 # Enable debugging argument option.
18 AC_ARG_ENABLE(debug,
19 AC_HELP_STRING([--enable-debug], [enable debugging (default=no)]),
20 [ac_debug="$enableval"])
21
22 if test "x$ac_debug" = "xyes"; then
23 AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])
24 ac_stacktrace="yes"
25 ac_debug="debug"
26 else
27 ac_stacktrace="no"
28 ac_debug="release"
29 fi
30 AC_SUBST(ac_debug)
31
32
33 # Enable Qt4/5 availability.
34 AC_ARG_ENABLE(qt4,
35 AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=no)]),
36 [ac_qt4="$enableval"],
37 [ac_qt4="no"])
38
39 AC_ARG_ENABLE(qt5,
40 AC_HELP_STRING([--enable-qt5], [enable Qt5 build (default=yes)]),
41 [ac_qt5="$enableval"],
42 [ac_qt5="yes"])
43
44
45
46 # Enable libgig availability.
47 AC_ARG_ENABLE(libgig,
48 AC_HELP_STRING([--enable-libgig], [enable libgig interface (default=yes)]),
49 [ac_libgig="$enableval"],
50 [ac_libgig="yes"])
51
52 # Enable debugger stack-trace option (assumes --enable-debug).
53 AC_ARG_ENABLE(stacktrace,
54 AC_HELP_STRING([--enable-stacktrace], [enable debugger stack-trace (default=no)]),
55 [ac_stacktrace="$enableval"])
56
57
58 # Standard installation base dirs.
59 if test "$cross_compiling" = yes; then
60 ac_with_paths=""
61 else
62 ac_with_paths="/usr/local /usr"
63 fi
64
65 # Set for alternate Qt4/5 installation dir.
66 AC_ARG_WITH(qt4,
67 AC_HELP_STRING([--with-qt4=PATH], [use alternate Qt4 install path]),
68 [ac_qt4_path="$withval"], [ac_qt4_path="no"])
69
70 AC_ARG_WITH(qt5,
71 AC_HELP_STRING([--with-qt5=PATH], [use alternate Qt5 install path]),
72 [ac_qt5_path="$withval"], [ac_qt5_path="no"])
73
74 if test "x$ac_qt4_path" != "xno"; then
75 ac_with_paths="$ac_with_paths $ac_qt4_path"
76 ac_qt4="yes"
77 fi
78
79 if test "x$ac_qt5_path" != "xno"; then
80 ac_with_paths="$ac_with_paths $ac_qt5_path"
81 ac_qt5="yes"
82 fi
83
84 if test "x$ac_qt5" = "xno"; then
85 ac_qt4="yes"
86 fi
87 if test "x$ac_qt4" = "xyes"; then
88 ac_qt5="no"
89 fi
90
91 # Set for alternate liblscp installation dir.
92 AC_ARG_WITH(liblscp,
93 AC_HELP_STRING([--with-liblscp=PATH], [use alternate liblscp install path]),
94 [ac_with_paths="$ac_with_paths $withval"])
95
96 # Set for alternate libgig installation dir.
97 AC_ARG_WITH(libgig,
98 AC_HELP_STRING([--with-libgig=PATH], [use alternate libgig install path]),
99 [ac_with_paths="$ac_with_paths $withval"])
100
101
102 # Honor user specified flags.
103 ac_cflags=$CFLAGS
104 ac_ldflags=$LDFLAGS
105
106
107 # Checks for programs.
108 AC_PROG_CC
109 AC_PROG_CPP
110 AC_PROG_CXX
111 AC_PROG_CXXCPP
112 AC_PROG_GCC_TRADITIONAL
113
114 # Checks for languages.
115 AC_LANG_C
116 AC_LANG_CPLUSPLUS
117
118 PKG_PROG_PKG_CONFIG
119
120 # Check for proper flags.
121 ac_arch=`uname -m`
122
123 # Check for some a-la-debian alternatives...
124 ac_qtdirs="qt"
125
126 if test "x$ac_qt4" = "xyes"; then
127 ac_qtdirs="qt4 $ac_qtdirs"
128 fi
129 if test "x$ac_qt5" = "xyes"; then
130 ac_qtdirs="qt5 $ac_qtdirs"
131 fi
132
133 ac_topdirs="/usr/local /usr"
134 ac_subdirs="lib"
135
136 if test "x$ac_arch" = "xx86_64"; then
137 ac_subdirs="$ac_subdirs lib64"
138 fi
139
140 if test "x$ac_arch" = "xx86_64" -o "x$ac_qt5" = "xyes"; then
141 CFLAGS="-fPIC $CFLAGS"
142 CPPFLAGS="-fPIC $CPPFLAGS"
143 fi
144
145 for X in $ac_topdirs; do
146 for Y in share $ac_subdirs; do
147 for Z in $ac_qtdirs; do
148 if test -d $X/$Y/$Z/bin; then
149 ac_with_paths="$ac_with_paths $X/$Y/$Z"
150 fi
151 done
152 done
153 done
154
155 # Prepend alternate dependencies paths.
156 ac_path=$PATH
157
158 for X in $ac_with_paths; do
159 if test -d $X/bin; then
160 ac_path="$X/bin:$ac_path"
161 fi
162 if test -d $X/include; then
163 for Y in include include/${ac_arch}-linux-gnu; do
164 for Z in $ac_qtdirs; do
165 if test -d "$X/$Y/$Z"; then
166 CFLAGS="-I$X/$Y/$Z $CFLAGS"
167 CPPFLAGS="-I$X/$Y/$Z $CPPFLAGS"
168 ac_incpath="$X/$Y/$Z $ac_incpath"
169 fi
170 done
171 done
172 CFLAGS="$CFLAGS -I$X/include"
173 CPPFLAGS="$CPPFLAGS -I$X/include"
174 ac_incpath="$ac_incpath $X/include"
175 fi
176 for Y in $ac_subdirs; do
177 if test -d $X/$Y; then
178 LIBS="-L$X/$Y $LIBS"
179 ac_libs="-L$X/$Y $ac_libs"
180 fi
181 done
182 done
183
184 # Check for proper Qt4/5 version.
185 if test "x$ac_qt4" = "xyes"; then
186 AC_CACHE_CHECK([for Qt library version >= 4.4],
187 ac_cv_qtversion, [
188 AC_TRY_LINK([#include "QtCore/qglobal.h"], [
189 #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000
190 #error Qt library 4.4 or greater required.
191 #endif
192 ], ac_cv_qtversion="yes", [
193 echo "no; Qt 4.4 or greater is required"
194 exit 1
195 ])
196 ])
197 fi
198
199 if test "x$ac_qt5" = "xyes"; then
200 AC_CACHE_CHECK([for Qt library version >= 5.1],
201 ac_cv_qtversion, [
202 AC_TRY_LINK([#include "QtCore/qglobal.h"], [
203 #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000
204 #error Qt library 5.1 or greater required.
205 #endif
206 ], ac_cv_qtversion="yes", [
207 echo "no; Qt 5.1 or greater is required"
208 exit 1
209 ])
210 ])
211 fi
212
213 # A common error message:
214 ac_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt-devel)."
215
216 # Check for Qt qmake utility.
217 AC_PATH_PROG(ac_qmake, qmake, [no], $ac_path)
218 if test "x$ac_qmake" = "xno"; then
219 AC_MSG_ERROR([qmake $ac_errmsg])
220 fi
221 AC_SUBST(ac_qmake)
222
223 # Check for Qt moc utility.
224 AC_PATH_PROG(ac_moc, moc, [no], $ac_path)
225 if test "x$ac_moc" = "xno"; then
226 AC_MSG_ERROR([moc $ac_errmsg])
227 fi
228 AC_SUBST(ac_moc)
229
230 # Check for Qt uic utility.
231 AC_PATH_PROG(ac_uic, uic, [no], $ac_path)
232 if test "x$ac_uic" = "xno"; then
233 AC_MSG_ERROR([uic $ac_errmsg])
234 fi
235 AC_SUBST(ac_uic)
236
237 # Check for Qt lupdate utility.
238 AC_PATH_PROG(ac_lupdate, lupdate, [no], $ac_path)
239 if test "x$ac_lupdate" = "xno"; then
240 AC_MSG_ERROR([lupdate $ac_errmsg])
241 fi
242 AC_SUBST(ac_lupdate)
243
244 # Check for Qt lrelease utility.
245 AC_PATH_PROG(ac_lrelease, lrelease, [no], $ac_path)
246 if test "x$ac_release" = "xno"; then
247 AC_MSG_ERROR([lrelease $ac_errmsg])
248 fi
249 AC_SUBST(ac_lrelease)
250
251 # Checks for libraries.
252 AC_CHECK_LIB(m, main)
253 AC_CHECK_LIB(X11, main)
254 AC_CHECK_LIB(Xext, main)
255
256 # Check for round math function.
257 AC_CHECK_LIB(m, round, [ac_round="yes"], [ac_round="no"])
258 if test "x$ac_round" = "xyes"; then
259 AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
260 fi
261
262 # Check for mandatory libraries.
263 AC_CHECK_LIB(lscp, main, [ac_liblscp="yes"], [ac_liblscp="no"])
264 if test "x$ac_liblscp" = "xno"; then
265 AC_MSG_ERROR([LSCP library not found.])
266 fi
267 ac_libs="$ac_libs -llscp"
268 case "{$host}" in
269 *mingw*)
270 ac_libs="$ac_libs -lws2_32"
271 LIBS="$LIBS -lws2_32"
272 ;;
273 esac
274
275 AC_CACHE_CHECK([for instrument_name in lscp_channel_info_t],
276 ac_cv_instrument_name, [
277 AC_TRY_COMPILE([#include "lscp/client.h"], [
278 lscp_channel_info_t info;
279 info.instrument_name = 0;
280 ], ac_cv_instrument_name="yes", ac_cv_instrument_name="no")
281 ])
282 ac_instrument_name=$ac_cv_instrument_name
283 if test "x$ac_instrument_name" = "xyes"; then
284 AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])
285 fi
286
287 AC_CACHE_CHECK([for mute/solo in lscp_channel_info_t],
288 ac_cv_mute_solo, [
289 AC_TRY_COMPILE([#include "lscp/client.h"], [
290 lscp_channel_info_t info;
291 info.mute = 0;
292 info.solo = 0;
293 ], ac_cv_mute_solo="yes", ac_cv_mute_solo="no")
294 ])
295 ac_mute_solo=$ac_cv_mute_solo
296 if test "x$ac_mute_solo" = "xyes"; then
297 AC_CHECK_LIB(lscp, lscp_set_channel_mute, [ac_mute_solo="yes"], [ac_mute_solo="no"])
298 fi
299 if test "x$ac_mute_solo" = "xyes"; then
300 AC_CHECK_LIB(lscp, lscp_set_channel_solo, [ac_mute_solo="yes"], [ac_mute_solo="no"])
301 fi
302 if test "x$ac_mute_solo" = "xyes"; then
303 AC_DEFINE(CONFIG_MUTE_SOLO, 1, [Define if mute/solo is available.])
304 fi
305
306 AC_CHECK_LIB(lscp, lscp_map_midi_instrument, [ac_midi_instrument="yes"], [ac_midi_instrument="no"])
307 if test "x$ac_midi_instrument" = "xyes"; then
308 AC_DEFINE(CONFIG_MIDI_INSTRUMENT, 1, [Define if MIDI instrument mapping is available.])
309 fi
310
311 AC_CHECK_LIB(lscp, lscp_create_fxsend, [ac_fxsend="yes"], [ac_fxsend="no"])
312 if test "x$ac_fxsend" = "xyes"; then
313 AC_DEFINE(CONFIG_FXSEND, 1, [Define if FX sends is available.])
314 AC_CACHE_CHECK([for FX send level in lscp_fxsend_info_t],
315 ac_cv_fxsend_level, [
316 AC_TRY_COMPILE([#include "lscp/client.h"], [
317 lscp_fxsend_info_t info;
318 info.level = 0.0f;
319 ], ac_cv_fxsend_level="yes", ac_cv_fxsend_level="no")
320 ])
321 ac_fxsend_level=$ac_cv_fxsend_level
322 if test "x$ac_fxsend_level" = "xyes"; then
323 AC_DEFINE(CONFIG_FXSEND_LEVEL, 1, [Define if FX send level is available.])
324 fi
325 AC_CHECK_LIB(lscp, lscp_set_fxsend_name, [ac_fxsend_rename="yes"], [ac_fxsend_rename="no"])
326 if test "x$ac_fxsend_rename" = "xyes"; then
327 AC_DEFINE(CONFIG_FXSEND_RENAME, 1, [Define if FX send rename is available.])
328 fi
329 fi
330
331 AC_CACHE_CHECK([for audio_routing array type],
332 ac_cv_audio_routing, [
333 AC_TRY_COMPILE([#include "lscp/client.h"], [
334 lscp_channel_info_t info;
335 char ch = info.audio_routing[0][0];
336 ], ac_cv_audio_routing="no", ac_cv_audio_routing="yes")
337 ])
338 ac_audio_routing=$ac_cv_audio_routing
339 if test "x$ac_audio_routing" = "xyes"; then
340 AC_DEFINE(CONFIG_AUDIO_ROUTING, 1, [Define if audio_routing is an integer array.])
341 fi
342
343 AC_CHECK_LIB(lscp, lscp_set_volume, [ac_volume="yes"], [ac_volume="no"])
344 if test "x$ac_volume" = "xyes"; then
345 AC_DEFINE(CONFIG_VOLUME, 1, [Define if global volume is available.])
346 fi
347
348 AC_CHECK_LIB(lscp, lscp_edit_channel_instrument, [ac_edit_instrument="yes"], [ac_edit_instrument="no"])
349 if test "x$ac_edit_instrument" = "xyes"; then
350 AC_DEFINE(CONFIG_EDIT_INSTRUMENT, 1, [Define if instrument editing is available.])
351 fi
352
353 AC_CACHE_CHECK([for CHANNEL_MIDI LSCP event support in liblscp],
354 ac_cv_channel_midi_event, [
355 AC_TRY_COMPILE([
356 #include "lscp/client.h"
357 #include "lscp/event.h"
358 ], [
359 lscp_event_t ev;
360 ev = LSCP_EVENT_CHANNEL_MIDI;
361 ], ac_cv_channel_midi_event="yes", ac_cv_channel_midi_event="no")
362 ])
363 ac_channel_midi_event=$ac_cv_channel_midi_event
364 if test "x$ac_channel_midi_event" = "xyes"; then
365 AC_DEFINE(CONFIG_EVENT_CHANNEL_MIDI, 1, [Define if LSCP CHANNEL_MIDI event support is available.])
366 fi
367
368 AC_CACHE_CHECK([for DEVICE_MIDI LSCP event support in liblscp],
369 ac_cv_device_midi_event, [
370 AC_TRY_COMPILE([
371 #include "lscp/client.h"
372 #include "lscp/event.h"
373 ], [
374 lscp_event_t ev;
375 ev = LSCP_EVENT_DEVICE_MIDI;
376 ], ac_cv_device_midi_event="yes", ac_cv_device_midi_event="no")
377 ])
378 ac_device_midi_event=$ac_cv_device_midi_event
379 if test "x$ac_device_midi_event" = "xyes"; then
380 AC_DEFINE(CONFIG_EVENT_DEVICE_MIDI, 1, [Define if LSCP DEVICE_MIDI event support is available.])
381 fi
382
383 AC_CHECK_LIB(lscp, lscp_get_voices, [ac_max_voices="yes"], [ac_max_voices="no"])
384 if test "x$ac_max_voices" = "xyes"; then
385 AC_DEFINE(CONFIG_MAX_VOICES, 1, [Define if max. voices / streams is available.])
386 fi
387
388 # Check for optional libraries.
389 if test "x$ac_libgig" = "xyes"; then
390 PKG_CHECK_MODULES(LIBGIG, gig >= 3.3.0, [ac_libgig="yes"], [ac_libgig="no"])
391 if test "x$ac_libgig" = "xyes"; then
392 AC_DEFINE(CONFIG_LIBGIG, 1, [Define if libgig is available.])
393 AC_SUBST(LIBGIG_CFLAGS)
394 AC_SUBST(LIBGIG_LIBS)
395 ac_cflags="$ac_cflags $LIBGIG_CFLAGS"
396 ac_libs="$ac_libs $LIBGIG_LIBS"
397 AC_DEFINE(CONFIG_LIBGIG_SETAUTOLOAD, 1, [Define if libgig provides gig::File::SetAutoLoad() method.])
398 ac_libgig_setautoload="yes"
399 fi
400 fi
401
402 # Check for round math function.
403 AC_CHECK_LIB(m, lroundf, [ac_round="yes"], [ac_round="no"])
404 if test "x$ac_round" = "xyes"; then
405 AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
406 fi
407
408 # Check for debugging stack-trace.
409 if test "x$ac_stacktrace" = "xyes"; then
410 AC_DEFINE(CONFIG_STACKTRACE, 1, [Define if debugger stack-trace is enabled.])
411 fi
412
413 # Some recent distros (eg. fedora, debian) require this.
414 if test "x$ac_cv_lib_X11_main" = "xyes"; then
415 ac_libs="$ac_libs -lX11"
416 fi
417
418 AC_SUBST(ac_libs)
419 AC_SUBST(ac_incpath)
420 AC_SUBST(ac_cflags)
421 AC_SUBST(ac_ldflags)
422
423 # Checks for header files.
424 AC_HEADER_STDC
425 AC_HEADER_SYS_WAIT
426 AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h signal.h sys/socket.h)
427
428 AC_CHECK_HEADER(lscp/client.h, [ac_lscp_h="yes"], [ac_lscp_h="no"])
429 if test "x$ac_lscp_h" = "xno"; then
430 AC_MSG_ERROR([LSCP headers not found.])
431 fi
432
433 if test "x$ac_libgig" = "xyes"; then
434 AC_CHECK_HEADER(libgig/SF.h, [ac_libgig_sf2="yes"], [ac_libgig_sf2="no"])
435 if test "x$ac_libgig_sf2" = "xyes"; then
436 AC_DEFINE(CONFIG_LIBGIG_SF2, 1, [Define if libgig/SF.h is available.])
437 fi
438 fi
439
440 # Checks for typedefs, structures, and compiler characteristics.
441 # AC_C_CONST
442
443 # Checks for library functions.
444 AC_CHECK_FUNCS(system)
445
446 # Finally produce a configure header file and the makefiles.
447 AC_OUTPUT
448
449 # make clean > /dev/null 2>&1
450
451 # Output summary message
452
453 echo
454 echo " $PACKAGE_NAME $PACKAGE_VERSION"
455 echo
456 echo " Build target . . . . . . . . . . . . . . . . . . .: $ac_debug"
457 echo
458 echo " LSCP instrument name support . . . . . . . . . . .: $ac_instrument_name"
459 echo " LSCP mute/solo support . . . . . . . . . . . . . .: $ac_mute_solo"
460 echo " LSCP MIDI instrument support . . . . . . . . . . .: $ac_midi_instrument"
461 echo " LSCP FX send support . . . . . . . . . . . . . . .: $ac_fxsend"
462 echo " LSCP FX send level support . . . . . . . . . . . .: $ac_fxsend_level"
463 echo " LSCP FX send rename support . . . . . . . . . . .: $ac_fxsend_rename"
464 echo " LSCP audio routing support . . . . . . . . . . . .: $ac_audio_routing"
465 echo " LSCP volume support . . . . . . . . . . . . . . .: $ac_volume"
466 echo " LSCP edit instrument support . . . . . . . . . . .: $ac_edit_instrument"
467 echo " GigaSampler instrument file support (libgig) . . .: $ac_libgig"
468 if test "x$ac_libgig" = "xyes"; then
469 echo " libgig supports fast information retrieval . . . .: $ac_libgig_setautoload"
470 echo " libgig supports SoundFont2 instruments files . . .: $ac_libgig_sf2"
471 fi
472 echo " LSCP channel MIDI event support . . . . . . . . .: $ac_channel_midi_event"
473 echo " LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"
474 echo " LSCP runtime max. voices / disk streams support .: $ac_max_voices"
475 echo
476 echo " Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"
477 echo
478 echo " Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"
479 echo
480 echo "Now type 'make', followed by 'make install' as root."
481 echo

  ViewVC Help
Powered by ViewVC