configure.ac
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:16k
源码类别:

midi

开发平台:

C/C++

  1. dnl --------------------------------------------------
  2. dnl configure.in for FluidSynth
  3. dnl --------------------------------------------------
  4. AC_INIT(src/fluidsynth.c)
  5. dnl *** NOTE *** Don't forget to update library version below also
  6. FLUIDSYNTH_VERSION_MAJOR=1
  7. FLUIDSYNTH_VERSION_MINOR=1
  8. FLUIDSYNTH_VERSION_MICRO=1
  9. FLUIDSYNTH_VERSION=$FLUIDSYNTH_VERSION_MAJOR.$FLUIDSYNTH_VERSION_MINOR.$FLUIDSYNTH_VERSION_MICRO
  10. AC_SUBST(FLUIDSYNTH_VERSION_MAJOR)
  11. AC_SUBST(FLUIDSYNTH_VERSION_MINOR)
  12. AC_SUBST(FLUIDSYNTH_VERSION_MICRO)
  13. AC_SUBST(FLUIDSYNTH_VERSION)
  14. AM_INIT_AUTOMAKE(fluidsynth, $FLUIDSYNTH_VERSION)
  15. dnl Convert to quoted string for version.h substitution
  16. FLUIDSYNTH_VERSION=""$VERSION""
  17. dnl *** NOTICE ***
  18. dnl Update library version upon each release (follow these steps in order)
  19. dnl if any source code changes: lt_revision++
  20. dnl if any interfaces added/removed/changed: lt_current++ and lt_revision=0
  21. dnl if any interfaces have been added: lt_age++
  22. dnl if any interfaces have been removed/changed (compatibility broken): lt_age=0
  23. m4_define([lt_current], [4])
  24. m4_define([lt_revision], [0])
  25. m4_define([lt_age], [3])
  26. LT_VERSION_INFO="lt_current:lt_revision:lt_age"
  27. AC_SUBST(LT_VERSION_INFO)
  28. AM_CONFIG_HEADER(src/config.h)
  29. AC_CONFIG_MACRO_DIR([m4])
  30. CFLAGS="$CFLAGS -Wall"
  31. dnl Check for programs
  32. AC_PROG_CC
  33. AM_PROG_CC_C_O
  34. AC_PROG_INSTALL
  35. dnl AC_PROG_RANLIB
  36. AC_LIBTOOL_WIN32_DLL
  37. AM_PROG_LIBTOOL
  38. AC_PROG_MAKE_SET
  39. dnl Check for libraries
  40. AC_CHECK_LIB(pthread, pthread_create)
  41. dnl Check for header files
  42. AC_HEADER_STDC
  43. AC_CHECK_HEADERS(string.h stdlib.h stdio.h math.h errno.h stdarg.h unistd.h sys/mman.h sys/types.h sys/time.h sys/stat.h fcntl.h sys/socket.h netinet/in.h netinet/tcp.h arpa/inet.h limits.h pthread.h signal.h windows.h)
  44. dnl Compiler and machine specs
  45. AC_C_INLINE
  46. AC_C_BIGENDIAN
  47. LIBFLUID_LIBS="-lm"
  48. dnl Machine specific checks and defines
  49. case "${host_os}" in
  50. darwin*)
  51.   AC_DEFINE(DARWIN, 1, [Define if building for Mac OS X Darwin])
  52.   ;;
  53. mingw*)
  54.   mingw32_support="yes"
  55.   CFLAGS="$CFLAGS -mms-bitfields"
  56.   AC_DEFINE(MINGW32, 1, [Define if using the MinGW32 environment])
  57.   LIBFLUID_LIBS="-ldsound -lwinmm -lws2_32"
  58.   LIBFLUID_CPPFLAGS="-DFLUIDSYNTH_DLL_EXPORTS"
  59.   LIBFLUID_LDFLAGS="-no-undefined"
  60.   FLUID_CPPFLAGS="-DFLUIDSYNTH_NOT_A_DLL"
  61.   ;;
  62. os2*)
  63.   LDFLAGS="$LDFLAGS -Zbin-files"
  64.   LIBFLUID_LDFLAGS="-no-undefined"
  65.   ;;
  66. solaris*) 
  67.   LDFLAGS="$LDFLAGS -lnsl -lsocket" 
  68.   ;; 
  69. esac
  70. AC_SUBST(LIBFLUID_LIBS)
  71. AC_SUBST(LIBFLUID_CPPFLAGS)
  72. AC_SUBST(LIBFLUID_LDFLAGS)
  73. AC_SUBST(FLUID_CPPFLAGS)
  74. dnl Check for GNU LD
  75. AC_LIB_PROG_LD_GNU
  76. AM_CONDITIONAL(GNU_LD_SUPPORT, test "x$with_gnu_ld" = "xyes")
  77. AM_CONDITIONAL(MINGW32_SUPPORT, test "$mingw32_support" == "yes")
  78. AC_ARG_ENABLE(double, AS_HELP_STRING([--enable-double],
  79. [double floating point for dsp (default=float)]),
  80.   ENABLE_FLOAT_SAMPLES=$enableval,
  81.   ENABLE_FLOAT_SAMPLES=yes)
  82. if test "x$ENABLE_FLOAT_SAMPLES" = "xyes" ; then 
  83.   AC_DEFINE(WITH_FLOAT, 1, [Define to do all DSP in single floating point precision])
  84. fi
  85. AC_ARG_ENABLE(profiling, AS_HELP_STRING([--enable-profiling],
  86. [profile the dsp code (default=no)]),
  87.   profiling_flag=$enableval,
  88.   profiling_flag=no)
  89. if test "x$profiling_flag" = "xyes" ; then 
  90.   AC_DEFINE(WITH_PROFILING, 1, [Define to profile the DSP code])
  91. fi
  92. AC_ARG_ENABLE(ladspa, AS_HELP_STRING([--enable-ladspa],
  93. [Include LADSPA effect unit (default=no)]),
  94.   ENABLE_LADSPA=$enableval,
  95.   ENABLE_LADSPA=no)
  96. if test "x$ENABLE_LADSPA" = "xyes" ; then 
  97.    AC_DEFINE(LADSPA, 1, [Include the LADSPA Fx unit])
  98.    dnl LADSPA plugins are loaded as dynamic libraries.
  99.    dnl In this case, -ldl is required for linking.   
  100.    AC_CHECK_LIB(dl, dlopen)
  101. fi
  102. AC_ARG_ENABLE(trap-on-fpe, AS_HELP_STRING([--enable-trap-on-fpe],
  103. [Enable SIGFPE trap on Floating Point Exceptions (debugging)]),
  104. ENABLE_TRAPONFPE=$enableval, ENABLE_TRAPONFPE=no)
  105. if test "$ENABLE_TRAPONFPE" = "yes"; then
  106.   AC_DEFINE(TRAP_ON_FPE, 1, [Define to enable SIGFPE assertions])
  107. fi
  108. AC_ARG_ENABLE(fpe-check, AS_HELP_STRING([--enable-fpe-check],
  109. [Enable Floating Point Exception checks and debug messages]),
  110. ENABLE_FPECHECK=$enableval, ENABLE_FPECHECK=no)
  111. if test "$ENABLE_FPECHECK" = "yes"; then
  112.   AC_DEFINE(FPE_CHECK, 1, [Define to enable FPE checks])
  113. fi
  114. AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],
  115. [enable debugging (default=no)]),
  116.   ENABLE_DEBUG=$enableval)
  117. if test "$ENABLE_DEBUG" = "yes"; then
  118.   CFLAGS="${CFLAGS} ${FCCFLAGS} -g -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wstrict-prototypes -Wno-unused-parameter -Wno-cast-qual"
  119.   AC_DEFINE(DEBUG, 1, [Define to activate debugging message]) 
  120. else
  121.   CFLAGS="${CFLAGS} ${FCCFLAGS} -O2 -fomit-frame-pointer -funroll-all-loops -finline-functions -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wstrict-prototypes -Winline -Wno-unused-parameter -Wno-cast-qual"
  122.   AC_DEFINE(DEBUG, 0, [Define to activate debugging message])
  123. fi
  124. dnl Assert that glib and gthread are available
  125. PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6.5 gthread-2.0 >= 2.6.5)
  126. AC_SUBST(GLIB_CFLAGS)
  127. AC_SUBST(GLIB_LIBS)
  128. dnl Check for libsndfile support
  129. AC_ARG_ENABLE(libsndfile-support, AS_HELP_STRING([--disable-libsndfile-support],
  130.       [Do not compile libsndfile support (default=auto)]),
  131.   enable_libsndfile_support=$enableval, enable_libsndfile_support="yes")
  132. if test "x$enable_libsndfile_support" != "xno"; then
  133.   PKG_CHECK_MODULES(LIBSNDFILE, sndfile >= 1.0.0, LIBSNDFILE_SUPPORT=1, LIBSNDFILE_SUPPORT=0)
  134. else
  135.   LIBSNDFILE_SUPPORT=0
  136. fi
  137. if test "$LIBSNDFILE_SUPPORT" = "1"; then
  138.   PKG_CHECK_MODULES(LIBSNDFILE_VORBIS, sndfile >= 1.0.18, LIBSNDFILE_HASVORBIS=1, LIBSNDFILE_HASVORBIS=0)
  139.   AC_DEFINE(LIBSNDFILE_SUPPORT, 1, [Define to enable libsndfile support])
  140.   if test "$LIBSNDFILE_HASVORBIS" = "1"; then
  141.     AC_DEFINE(LIBSNDFILE_HASVORBIS, 1, [libsndfile has ogg vorbis support])
  142.   fi
  143. else
  144.   LIBSNDFILE_HASVORBIS=0
  145. fi
  146. AM_CONDITIONAL(LIBSNDFILE_SUPPORT, test "$LIBSNDFILE_SUPPORT" = "1")
  147. AM_CONDITIONAL(LIBSNDFILE_HASVORBIS, test "$LIBSNDFILE_HASVORBIS" = "1")
  148. AC_SUBST(LIBSNDFILE_CFLAGS)
  149. AC_SUBST(LIBSNDFILE_LIBS)
  150. dnl 
  151. dnl Check support for all the drivers
  152. dnl
  153. dnl - Sound file support check
  154. AUFILE_SUPPORT=0
  155. AC_ARG_ENABLE(aufile-support,
  156.   [  --disable-aufile-support Do not compile support for sound file output],
  157.   enable_aufile_support=no)
  158. if test "x${enable_aufile_support}" != "xno"; then
  159.   AUFILE_SUPPORT=1
  160.   AC_DEFINE(AUFILE_SUPPORT, 1, [Define to activate sound output to files])
  161. fi
  162. dnl - Check for PulseAudio support
  163. AC_ARG_ENABLE(pulse-support, AS_HELP_STRING([--disable-pulse-support],
  164.       [Do not compile PulseAudio support (default=auto)]),
  165.   enable_pulse_support=$enableval, enable_pulse_support="yes")
  166. if test "x$enable_pulse_support" != "xno"; then
  167.   PKG_CHECK_MODULES(PULSE, libpulse-simple >= 0.9.8, PULSE_SUPPORT=1, PULSE_SUPPORT=0)
  168. else
  169.   PULSE_SUPPORT=0
  170. fi
  171. if test "$PULSE_SUPPORT" = "1"; then
  172.   AC_DEFINE(PULSE_SUPPORT, 1, [Define to enable PulseAudio driver])
  173. fi
  174. AM_CONDITIONAL(PULSE_SUPPORT, test "$PULSE_SUPPORT" = "1")
  175. AC_SUBST(PULSE_CFLAGS)
  176. AC_SUBST(PULSE_LIBS)
  177. dnl - Check support for ALSA
  178. AC_ARG_ENABLE(alsa-support, AS_HELP_STRING([--disable-alsa-support],
  179.       [Do not compile ALSA support (default=auto)]),
  180.   enable_alsa_support=$enableval, enable_alsa_support="yes")
  181. if test "x$enable_alsa_support" != "xno"; then
  182.   PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, ALSA_SUPPORT=1, ALSA_SUPPORT=0)
  183. else
  184.   ALSA_SUPPORT=0
  185. fi
  186. if test "$ALSA_SUPPORT" = "1"; then
  187.   AC_DEFINE(ALSA_SUPPORT, 1, [Define to enable ALSA driver])
  188. fi
  189. AM_CONDITIONAL(ALSA_SUPPORT, test "$ALSA_SUPPORT" = "1")
  190. AC_SUBST(ALSA_CFLAGS)
  191. AC_SUBST(ALSA_LIBS)
  192. dnl - Check support for PortAudio
  193. AC_ARG_ENABLE(portaudio-support, AS_HELP_STRING([--disable-portaudio-support],
  194.       [Do not compile PortAudio support (default=auto)]),
  195.   enable_portaudio_support=$enableval, enable_portaudio_support="yes")
  196. if test "x$enable_portaudio_support" != "xno"; then
  197.   PKG_CHECK_MODULES(PORTAUDIO, portaudio-2.0 >= 19, PORTAUDIO_SUPPORT=1,
  198.                     PORTAUDIO_SUPPORT=0)
  199. else
  200.   PORTAUDIO_SUPPORT=0
  201. fi
  202. if test "$PORTAUDIO_SUPPORT" = "1"; then
  203.   AC_DEFINE(PORTAUDIO_SUPPORT, 1, [Define to enable PortAudio driver])
  204. fi
  205. AM_CONDITIONAL(PORTAUDIO_SUPPORT, test "$PORTAUDIO_SUPPORT" = "1")
  206. AC_SUBST(PORTAUDIO_CFLAGS)
  207. AC_SUBST(PORTAUDIO_LIBS)
  208. dnl - Check support for OSS audio
  209. AC_OSS_AUDIO
  210. AM_CONDITIONAL(OSS_SUPPORT, test "$OSS_SUPPORT" = "1")
  211. dnl - Check support for MidiShare
  212. AC_MIDISHARE
  213. dnl - Check support for JACK
  214. AC_ARG_ENABLE(jack-support, AS_HELP_STRING([--disable-jack-support],
  215. [disable JACK support (default=auto)]),
  216.   enable_jack=$enableval, enable_jack="yes")
  217. if test "x$enable_jack" != "xno"; then
  218.   PKG_CHECK_MODULES(JACK, jack, JACK_SUPPORT=1, JACK_SUPPORT=0)
  219. else
  220.   JACK_SUPPORT=0
  221. fi
  222. if test "$JACK_SUPPORT" = "1"; then
  223.   AC_DEFINE(JACK_SUPPORT, 1, [Define to enable JACK driver])
  224. fi
  225. AM_CONDITIONAL(JACK_SUPPORT, test "$JACK_SUPPORT" = "1")
  226. AC_SUBST(JACK_CFLAGS)
  227. AC_SUBST(JACK_LIBS)
  228. dnl
  229. dnl - Check support for CoreAudio
  230. dnl
  231. AC_CHECK_HEADER(CoreAudio/AudioHardware.h, COREAUDIO_FOUND="yes",
  232.                 COREAUDIO_FOUND="no")
  233. AC_ARG_ENABLE(coreaudio, AS_HELP_STRING([--disable-coreaudio],
  234. [disable CoreAudio support (default=auto)]),
  235.   enable_coreaudio=$enableval, enable_coreaudio="yes")
  236. COREAUDIO_SUPPORT=0
  237. if test "$enable_coreaudio" = "yes" -a "$COREAUDIO_FOUND" = "yes"; then
  238.   AC_DEFINE(COREAUDIO_SUPPORT, 1, [whether or not we are supporting CoreAudio])
  239.   COREAUDIO_SUPPORT=1
  240.   COREAUDIO_LIBS="-Wl,-framework,CoreAudio"
  241. fi
  242. AM_CONDITIONAL(COREAUDIO_SUPPORT, test "$COREAUDIO_SUPPORT" = "1")
  243. AC_SUBST(COREAUDIO_LIBS)
  244. dnl
  245. dnl - Check support for CoreMIDI
  246. dnl
  247. AC_CHECK_HEADER(CoreMIDI/MIDIServices.h, COREMIDI_FOUND="yes",
  248.                 COREMIDI_FOUND="no")
  249. AC_ARG_ENABLE(coremidi, AS_HELP_STRING([--disable-coremidi],
  250. [disable CoreMIDI support (default=auto)]),
  251.   enable_coremidi=$enableval, enable_coremidi="yes")
  252. COREMIDI_SUPPORT=0
  253. if test "$enable_coremidi" = "yes" -a "$COREMIDI_FOUND" = "yes"; then
  254.   AC_DEFINE(COREMIDI_SUPPORT, 1, [whether or not we are supporting CoreMIDI])
  255.   COREMIDI_SUPPORT=1
  256.   COREMIDI_LIBS="-Wl,-framework,CoreMIDI"
  257. fi
  258. AM_CONDITIONAL(COREMIDI_SUPPORT, test "$COREMIDI_SUPPORT" = "1")
  259. AC_SUBST(COREMIDI_LIBS)
  260. dnl
  261. dnl - Check support for DART
  262. dnl
  263. AC_CHECK_HEADER(os2me.h, DART_FOUND="yes", DART_FOUND="no")
  264. AC_ARG_ENABLE(dart, AS_HELP_STRING([--disable-dart],
  265.     [disable DART support (default=auto)]),
  266.   enable_dart=$enableval, enable_dart="yes")
  267. DART_SUPPORT=0
  268. if test "$enable_dart" = "yes" -a "$DART_FOUND" = "yes"; then
  269.   AC_DEFINE(DART_SUPPORT, 1, [whether or not we are supporting DART])
  270.   DART_SUPPORT=1
  271. fi
  272. AM_CONDITIONAL(DART_SUPPORT, test "$DART_SUPPORT" = "1")
  273. AC_SUBST(DART_CFLAGS)
  274. AC_SUBST(DART_LIBS)
  275. dnl
  276. dnl Check for readline support (Josh Green 2003-06-10)
  277. dnl
  278. AC_ARG_WITH(readline,
  279.   [  --without-readline      disable readline lib line editing (default=auto)],
  280.   with_readline=$withval, with_readline="yes")
  281. if test "$with_readline" != "no"; then
  282.   AM_PATH_READLINE(FOUND_READLINE=1, FOUND_READLINE=0)
  283. fi
  284. dnl
  285. dnl The following script checks for ncurses support.
  286. dnl I copied and adapted it from DataDisplayDebugger's (DDD)
  287. dnl configure.in, written by Andreas Zeller <zeller@gnu.org>.
  288. dnl
  289. dnl Look for the tgetent() function - either in libtermcap, libcurses
  290. dnl
  291. dnl On FreeBSD systems, `-lmytinfo' is preferred to `-lncurses'.
  292. dnl Reported by Vincenzo Capuano <vcapuano@esoc.esa.de>
  293. dnl
  294. dnl On Linux ELF systems, `-lncurses' is preferred to `-ltermcap'.
  295. dnl Reported by jdassen@wi.leidenuniv.nl (J.H.M. Dassen)
  296. dnl
  297. WITH_READLINE=0
  298. have_termcap=false
  299. if test "${FOUND_READLINE}" = "1"; then
  300.   _termlib="mytinfo ncurses curses termcap terminfo termlib"
  301.   for termlib in ${_termlib}; do
  302.     AC_CHECK_LIB(${termlib}, tgetent,
  303.       [READLINE_LIBS="$READLINE_LIBS -l${termlib}"; have_termcap=true; break])
  304.   done
  305. fi
  306. if test "x${have_termcap}" = "xtrue"; then
  307.   AC_DEFINE(WITH_READLINE, 1, [Define to use the readline library for line editing])
  308.   WITH_READLINE=1
  309. fi
  310. dnl
  311. dnl lash stuff
  312. dnl
  313. AC_ARG_ENABLE(lash, AS_HELP_STRING([--disable-lash],
  314. [disable LASH support (default=auto)]),
  315.     fluid_enable_lash=$enableval,
  316.     fluid_enable_lash="yes")
  317. if test "$fluid_enable_lash" = "yes"; then
  318.   PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.3, LASH_FOUND="yes", LASH_FOUND="no")
  319.   AC_SUBST(LASH_CFLAGS)
  320.   AC_SUBST(LASH_LIBS)
  321.   if test "$LASH_FOUND" = "yes"; then
  322.      AC_DEFINE(HAVE_LASH, 1, [whether or not we are supporting lash])
  323.   fi
  324. else
  325.   LASH_FOUND="no"
  326. fi
  327. AM_CONDITIONAL(LASH_SUPPORT, test "$LASH_FOUND" = "yes")
  328. dnl
  329. dnl ladcca stuff (depricated by lash and will be removed in the future)
  330. dnl
  331. AC_ARG_ENABLE(ladcca, AS_HELP_STRING([--disable-ladcca],
  332. [disable LADCCA support (default=auto)]),
  333.     fluid_enable_ladcca=$enableval,
  334.     fluid_enable_ladcca="yes")
  335. if test "$fluid_enable_ladcca" = "yes" -a "$LASH_FOUND" = "no"; then
  336.   PKG_CHECK_MODULES(LADCCA, ladcca-1.0 >= 0.3, LADCCA_FOUND="yes", LADCCA_FOUND="no")
  337.   AC_SUBST(LADCCA_CFLAGS)
  338.   AC_SUBST(LADCCA_LIBS)
  339.   if test "$LADCCA_FOUND" = "yes"; then
  340.      AC_DEFINE(HAVE_LADCCA, 1, [whether or not we are supporting ladcca])
  341.   fi
  342. else
  343.   LADCCA_FOUND="no"
  344. fi
  345. AM_CONDITIONAL(LADCCA_SUPPORT, test "$LADCCA_FOUND" = "yes")
  346. AC_OUTPUT([
  347. Makefile
  348. macbuild/Makefile
  349. winbuild/Makefile
  350. winbuild/fluidsynth/Makefile
  351. winbuild/fluidsynth_dll/Makefile
  352. winbuild/fluidsynth_lib/Makefile
  353. src/Makefile
  354. src/config_win32.h
  355. doc/Makefile
  356. include/Makefile
  357. include/fluidsynth/Makefile
  358. include/fluidsynth/version.h
  359. fluidsynth.pc
  360. fluidsynth.spec])
  361. echo
  362. echo "**************************************************************"
  363. echo "Summary:"
  364. if test "${LIBSNDFILE_SUPPORT}" = "1"; then
  365.   if test "${LIBSNDFILE_HASVORBIS}" = "1"; then
  366.     echo "libsndfile:            yes (with ogg vorbis support)"
  367.   else
  368.     echo "libsndfile:            yes"
  369.   fi
  370. else 
  371.   echo "libsndfile:            no (raw audio file rendering only)"
  372. fi
  373. if test "${PULSE_SUPPORT}" = "1"; then
  374.   echo "PulseAudio:            yes"
  375. else 
  376.   echo "PulseAudio:            no"
  377. fi
  378. if test "${JACK_SUPPORT}" = "1"; then
  379.   echo "JACK:                  yes"
  380. else
  381.   echo "JACK:                  no"
  382. fi
  383. if test "${ALSA_SUPPORT}" = "1"; then
  384.   echo "ALSA:                  yes"
  385. else 
  386.   echo "ALSA:                  no"
  387. fi
  388. if test "${PORTAUDIO_SUPPORT}" = "1"; then
  389.   echo "PortAudio:             yes"
  390. else 
  391.   echo "PortAudio:             no"
  392. fi
  393. if test "${OSS_SUPPORT}" = "1"; then
  394.   echo "OSS:                   yes"
  395. else 
  396.   echo "OSS:                   no"
  397. fi
  398. if test "${MIDISHARE_SUPPORT}" = "1"; then
  399.   echo "MidiShare:             yes"
  400. else
  401.   echo "MidiShare:             no"
  402. fi
  403. if test "${COREAUDIO_SUPPORT}" = "1"; then
  404.   echo "CoreAudio:             yes"
  405. else
  406.   echo "CoreAudio:             no"
  407. fi
  408. if test "${COREMIDI_SUPPORT}" = "1"; then
  409.   echo "CoreMIDI:              yes"
  410. else
  411.   echo "CoreMIDI:              no"
  412. fi
  413. if test "${ENABLE_LADSPA}" = "yes"; then
  414.   echo "LADSPA support:        yes"
  415. else
  416.   echo "LADSPA support:        no"
  417. fi
  418. if test "${LASH_FOUND}" = "yes"; then
  419.   echo "LASH support:          yes (NOTE: GPL library)"
  420. else
  421.   echo "LASH support:          no"
  422. fi
  423. if test "${LADCCA_FOUND}" = "yes"; then
  424.   echo "LADCCA support:        yes (NOTE: GPL library)"
  425. else
  426.   echo "LADCCA support:        no"
  427. fi
  428. if test "${DART_SUPPORT}" = "1"; then
  429.   echo "OS/2 DART support:     yes"
  430. else
  431.   echo "OS/2 DART support:     no"
  432. fi
  433. if test "${AUFILE_SUPPORT}" = "1"; then
  434.   echo "Audio to file driver:  yes"
  435. else
  436.   echo "Audio to file driver:  no"
  437. fi
  438. if test "$WITH_READLINE" = "1"; then
  439.   echo "Readline:              yes (NOTE: GPL library)"
  440. else
  441.   echo "Readline:              no"
  442. fi
  443. if test "${profiling_flag}" = "yes"; then
  444.   echo "Profiling:             yes"
  445. else
  446.   echo "Profiling:             no"
  447. fi
  448. if test "${ENABLE_DEBUG}" = "yes"; then
  449.   echo "Debug:                 yes"
  450. else
  451.   echo "Debug:                 no"
  452. fi
  453. if test "${ENABLE_TRAPONFPE}" = "yes"; then
  454.   echo "Trap on FPE (debug):   yes"
  455. else
  456.   echo "Trap on FPE (debug):   no"
  457. fi
  458. if test "${ENABLE_FPECHECK}" = "yes"; then
  459.   echo "Check FPE (debug):     yes"
  460. else
  461.   echo "Check FPE (debug):     no"
  462. fi
  463. echo "**************************************************************"
  464. echo