jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

578 lines
17KB

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(jackd/jackd.c)
  3. AC_CONFIG_AUX_DIR(config)
  4. AC_CANONICAL_TARGET
  5. dnl ---
  6. dnl HOWTO: updating the JACK version number
  7. dnl
  8. dnl major version = ask on jackit-devel :)
  9. dnl minor version = incremented when any of the public or internal
  10. dnl interfaces are changed
  11. dnl micro version = incremented when implementation-only
  12. dnl changes are made
  13. dnl ---
  14. JACK_MAJOR_VERSION=0
  15. JACK_MINOR_VERSION=99
  16. JACK_MICRO_VERSION=25
  17. dnl ---
  18. dnl HOWTO: updating the jack protocol version
  19. dnl
  20. dnl increment the protocol version whenever a change is
  21. dnl made to the way libjack communicates with jackd
  22. dnl that would break applications linked with an older
  23. dnl version of libjack.
  24. dnl ---
  25. JACK_PROTOCOL_VERSION=14
  26. dnl ---
  27. dnl HOWTO: updating the libjack interface version
  28. dnl
  29. dnl current = incremented whenever the public libjack API is changed
  30. dnl revision = incremented when the libjack implementation is changed
  31. dnl age = current libjack is both source and binary compatible with
  32. dnl libjack interfaces current,current-1,...,current-age
  33. dnl
  34. dnl Note! see libtool documentation for detailed documentation
  35. dnl
  36. dnl Note Also! until we reach CURRENT>=1, the rules are somewhat
  37. dnl slacker than this, and closer to those for the JACK version
  38. dnl number.
  39. dnl ---
  40. JACK_API_CURRENT=0
  41. JACK_API_REVISION=23
  42. JACK_API_AGE=0
  43. AC_SUBST(JACK_MAJOR_VERSION)
  44. AC_SUBST(JACK_MINOR_VERSION)
  45. AC_SUBST(JACK_MICRO_VERSION)
  46. AC_SUBST(JACK_PROTOCOL_VERSION)
  47. AC_DEFINE_UNQUOTED(PROTOCOL_VERSION, "$JACK_PROTOCOL_VERSION", [Protocol version])
  48. AC_SUBST(JACK_API_MAJOR_VERSION)
  49. AC_SUBST(JACK_API_MINOR_VERSION)
  50. AC_SUBST(JACK_API_MICRO_VERSION)
  51. JACK_SO_VERSION=${JACK_API_CURRENT}:${JACK_API_REVISION}:${JACK_API_AGE}
  52. JACK_VERSION=$JACK_MAJOR_VERSION.$JACK_MINOR_VERSION.${JACK_MICRO_VERSION}${BETA}
  53. JACK_RELEASE=$JACK_MAJOR_VERSION-$JACK_MINOR_VERSION-${JACK_MICRO_VERSION}${BETA}
  54. AC_SUBST(JACK_SO_VERSION)
  55. AC_SUBST(JACK_VERSION)
  56. AC_SUBST(JACK_RELEASE)
  57. AM_INIT_AUTOMAKE(jack-audio-connection-kit,${JACK_VERSION})
  58. AM_MAINTAINER_MODE
  59. AM_CONFIG_HEADER(config.h)
  60. AC_ENABLE_STATIC(no)
  61. AC_ENABLE_SHARED(yes)
  62. AC_PROG_CC
  63. AC_PROG_CXX
  64. AC_PROG_LD
  65. AM_PROG_LIBTOOL
  66. AC_PROG_LN_S
  67. AC_C_BIGENDIAN
  68. # configure CPU and OS dependencies for host platform
  69. AC_MSG_CHECKING([platform dependencies])
  70. source $srcdir/config/configure.host
  71. AC_MSG_RESULT([${os_include_dir}, ${cpu_include_dir}])
  72. AC_SUBST(OS_LDFLAGS)
  73. AC_SUBST(os_include_dir)
  74. AC_SUBST(cpu_include_dir)
  75. # system-dependent config.h values
  76. test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=1000000
  77. AC_DEFINE_UNQUOTED(JACK_THREAD_STACK_TOUCH,
  78. [$JACK_THREAD_STACK_TOUCH],
  79. [Guaranteed size of realtime stack])
  80. if test "x$JACK_CPP_VARARGS_BROKEN" != "x"; then
  81. AC_DEFINE_UNQUOTED(JACK_CPP_VARARGS_BROKEN,
  82. [$JACK_CPP_VARARGS_BROKEN],
  83. [CPP has a broken varargs implementation])
  84. fi
  85. if test "x$JACK_USE_MACH_THREADS" != "x"; then
  86. AC_DEFINE_UNQUOTED(JACK_USE_MACH_THREADS,
  87. [$JACK_USE_MACH_THREADS],
  88. [Use MACH threads where possible])
  89. fi
  90. # headers
  91. AC_CHECK_HEADERS(string.h strings.h)
  92. AC_CHECK_HEADERS(getopt.h, [], [
  93. for d in /Developer/SDKs/MacOSX10.3.0.sdk/usr/include/ ; do
  94. AC_CHECK_HEADERS($d/getopt.h, [], [CFLAGS="$CFLAGS -I$d"])
  95. done])
  96. AC_CHECK_HEADER(/usr/include/nptl/pthread.h,
  97. [CFLAGS="$CFLAGS -I/usr/include/nptl"])
  98. # functions and libraries
  99. AC_CHECK_FUNC(getopt_long, [],
  100. AC_MSG_ERROR([*** JACK requires GNU getopt_long]))
  101. AC_CHECK_FUNC(gethostent, [], AC_CHECK_LIB(nsl, gethostent))
  102. AC_CHECK_FUNC(setsockopt, [], AC_CHECK_LIB(socket, setsockopt))
  103. AC_CHECK_FUNC(connect, [], AC_CHECK_LIB(inet, connect))
  104. AC_CHECK_FUNC(dlopen, [],
  105. AC_CHECK_LIB(dl, dlopen, [],
  106. AC_MSG_ERROR([*** JACK requires dynamic load support])))
  107. AC_CHECK_FUNC(pthread_create, [],
  108. AC_CHECK_LIB(pthread, pthread_create, [],
  109. AC_MSG_ERROR([*** JACK requires POSIX threads support])))
  110. AC_CHECK_FUNCS(on_exit atexit)
  111. AC_CHECK_FUNCS(posix_memalign)
  112. AC_CHECK_LIB(m, sin)
  113. # should we use mlockall() on this platform?
  114. if test "x$JACK_DO_NOT_MLOCK" = "x"; then
  115. AC_CHECK_HEADER(sys/mman.h,
  116. [AC_CHECK_FUNC(mlockall,
  117. [AC_DEFINE(USE_MLOCK, 1, [Use POSIX memory locking])])])
  118. fi
  119. # look for system support for POSIX shm API
  120. AC_ARG_ENABLE(posix-shm,
  121. AC_HELP_STRING([--enable-posix-shm], [use POSIX shm API]),
  122. [TRY_POSIX_SHM=$enableval])
  123. if test "x$TRY_POSIX_SHM" = "xyes"
  124. then
  125. AC_CHECK_FUNC(shm_open, [],
  126. AC_CHECK_LIB(rt, shm_open, [], [TRY_POSIX_SHM=no]))
  127. fi
  128. AC_MSG_CHECKING([shared memory support])
  129. if test "x$TRY_POSIX_SHM" = "xyes"
  130. then
  131. AC_MSG_RESULT([POSIX shm_open().])
  132. AC_DEFINE(USE_POSIX_SHM,1,[Use POSIX shared memory interface])
  133. else
  134. AC_MSG_RESULT([System V shmget().])
  135. fi
  136. JACK_CORE_CFLAGS="-I\$(top_builddir)/config -I\$(top_srcdir) \
  137. -I\$(top_builddir) -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall"
  138. JACK_OPT_CFLAGS="$JACK_CORE_CFLAGS -g -march=pentium2 -mcpu=pentium4 -O3 \
  139. -ffast-math -funroll-loops -fprefetch-loop-arrays"
  140. JACK_CFLAGS="$JACK_CORE_CFLAGS $CFLAGS"
  141. dnl
  142. dnl figure out how best to optimize
  143. dnl JOQ: this should be done via config/configure.hosts
  144. dnl
  145. dnl ----------------------------------------------------------------------
  146. if test "$target_cpu" = "powerpc"; then
  147. AC_DEFINE(POWERPC, 1, "Are we running a ppc CPU?")
  148. ############################
  149. # Check for Altivec assembly
  150. ############################
  151. AC_ARG_ENABLE(altivec,
  152. [ --enable-altivec enable Altivec support (default=auto)],,
  153. [ enable_altivec=yes ])
  154. if test "x$enable_altivec" = xyes; then
  155. AC_MSG_CHECKING(whether we can compile Altivec code)
  156. AC_COMPILE_IFELSE([asm ("vand %v0, %v0, %v0");],
  157. AC_DEFINE(USE_ALTIVEC, 1, [Define to 1 if Altivec assembly is available.])
  158. AC_DEFINE(HAVE_ALTIVEC_LINUX, 1, "Is there Altivec Support ?")
  159. ALTIVEC_OPT_FLAGS="-maltivec -mabi=altivec"
  160. AC_MSG_RESULT(yes)
  161. ,
  162. enable_altivec=no
  163. AC_MSG_RESULT(no)
  164. AC_MSG_WARN([The assembler does not support the Altivec command set.])
  165. )
  166. fi
  167. dnl -mcpu=7450 does not reliably work with gcc 3.*
  168. JACK_OPT_CFLAGS="-D_REENTRANT -O2 -mcpu=7400 $ALTIVEC_OPT_FLAGS_FLAGS -mhard-float -mpowerpc-gfxopt"
  169. elif echo $target_cpu | grep "i*86" >/dev/null; then
  170. dnl Check for MMX assembly
  171. AC_ARG_ENABLE(mmx,
  172. [ --enable-mmx enable MMX support (default=auto)],,
  173. enable_mmx=yes)
  174. AC_ARG_ENABLE(sse,
  175. [ --enable-sse enable SSE support (default=auto)],,
  176. enable_sse=$enable_mmx)
  177. if test "x$enable_mmx" = xyes; then
  178. AC_MSG_CHECKING(whether we can compile MMX code)
  179. AC_COMPILE_IFELSE([asm ("movq 0, %mm0");],
  180. AC_DEFINE(USE_MMX, 1, [Define to 1 if MMX assembly is available.])
  181. AC_MSG_RESULT(yes)
  182. MMX_FLAGS="-mmmx"
  183. if test "x$enable_sse" = xyes; then
  184. AC_MSG_CHECKING(whether we can compile SSE code)
  185. AC_COMPILE_IFELSE([asm ("movntps %xmm0, 0");],
  186. AC_DEFINE(USE_SSE, 1,
  187. [Define to 1 if SSE assembly is available.])
  188. SSE_FLAGS="-msse -mfpmath=sse"
  189. AC_MSG_RESULT(yes)
  190. ,
  191. enable_sse=no
  192. AC_MSG_RESULT(no)
  193. AC_MSG_WARN(
  194. [The assembler does not support the SSE command set.]
  195. )
  196. )
  197. fi
  198. ,
  199. enable_mmx=no
  200. AC_MSG_RESULT(no)
  201. AC_MSG_WARN([The assembler does not support the MMX command set.])
  202. )
  203. fi
  204. AC_DEFINE(x86, 1, "Nope it's intel")
  205. COMMON_X86_OPT_FLAGS="-DREENTRANT -O3 -fomit-frame-pointer -ffast-math -funroll-loops -fmove-all-movables"
  206. if test "$target_cpu" = "i586"; then
  207. JACK_OPT_CFLAGS="-march=i586 "
  208. elif test "$target_cpu" = "i686"; then
  209. JACK_OPT_CFLAGS="-march=i686"
  210. else
  211. :
  212. fi
  213. JACK_OPT_CFLAGS="$COMMON_X86_OPT_FLAGS $JACK_OPT_CFLAGS $MMX_FLAGS $SSE_FLAGS"
  214. fi
  215. AC_ARG_ENABLE(optimize,
  216. AC_HELP_STRING([--disable-optimize], [do not ask the compiler to optimize]),
  217. [ if test x$enable_optimize != xno ; then
  218. JACK_CFLAGS="$JACK_CORE_CFLAGS $JACK_OPT_CFLAGS" ;
  219. fi
  220. ]
  221. )
  222. AC_SUBST(JACK_CFLAGS)
  223. dnl
  224. dnl use JACK_CFLAGS for jackd compilation
  225. dnl
  226. CFLAGS=$JACK_CFLAGS
  227. # allow buffer resizing unless --disable-resize specified
  228. enable_resize=yes
  229. AC_ARG_ENABLE(resize,
  230. AC_HELP_STRING([--disable-resize], [disable buffer resizing]),
  231. [
  232. if test x$enable_resize != xno ; then
  233. AC_DEFINE(DO_BUFFER_RESIZE,,[Enable buffer resizing])
  234. fi
  235. ]
  236. )
  237. AC_ARG_ENABLE(ensure-mlock,
  238. AC_HELP_STRING([--enable-ensure-mlock],
  239. [fail if unable to lock memory]),
  240. [
  241. if test x$enable_ensure_mlock != xno ; then
  242. AC_DEFINE(ENSURE_MLOCK,,[Ensure that memory locking succeeds])
  243. fi
  244. ]
  245. )
  246. AC_ARG_ENABLE(debug,
  247. AC_HELP_STRING([--enable-debug],
  248. [enable debugging messages in jackd and libjack]),
  249. [
  250. if test x$enable_debug != xno ; then
  251. AC_DEFINE(DEBUG_ENABLED,,[Enable debugging messages])
  252. fi
  253. ]
  254. )
  255. AC_ARG_ENABLE(timestamps,
  256. AC_HELP_STRING([--enable-timestamps],
  257. [allow clients to use the JACK timestamp API]),
  258. [
  259. if test x$enable_timestamps != xno ; then
  260. AC_DEFINE(WITH_TIMESTAMPS,,[Enable JACK timestamp API])
  261. fi
  262. ]
  263. )
  264. AC_ARG_ENABLE(preemption-check,
  265. AC_HELP_STRING([--enable-preemption-check],
  266. [check for inappropriate realtime preemption]),
  267. [
  268. if test x$enable_preemption_check != xno ; then
  269. echo checking for realtime preemption bugs
  270. AC_DEFINE(DO_PREEMPTION_CHECKING,,
  271. [check realtime preemption])
  272. fi
  273. ])
  274. USE_CAPABILITIES=false
  275. AC_ARG_ENABLE(capabilities,
  276. [ --enable-capabilities use libcap to gain realtime scheduling priviledges],
  277. [ if test "x$enable_capabilities" != "xno" ; then
  278. AC_CHECK_LIB(cap, capgetp,
  279. [AC_CHECK_HEADER(sys/capability.h,
  280. [HAVE_CAPABILITIES=true],
  281. [AC_MSG_WARN([*** no kernel support for capabilities])
  282. HAVE_CAPABILITIES=false]
  283. )],
  284. [AC_MSG_WARN([*** no libcap present])
  285. HAVE_CAPABILITIES=false]
  286. )
  287. if test "x$HAVE_CAPABILITIES" = "xtrue"; then
  288. AC_CHECK_PROG(HAVE_CAPABILITIES, md5sum, true, false)
  289. fi
  290. if test "x$HAVE_CAPABILITIES" = "xfalse"; then
  291. AC_MSG_WARN([*** required program md5sum not found])
  292. fi
  293. if test "x$HAVE_CAPABILITIES" = "xfalse"; then
  294. AC_MSG_ERROR([*** Capabilities support not present. Run configure again without --enable-capabilities.])
  295. fi
  296. USE_CAPABILITIES=true
  297. AC_DEFINE(USE_CAPABILITIES,,[Enable POSIX 1.e capabilities support])
  298. fi
  299. ]
  300. )
  301. with_oldtrans=yes
  302. AC_ARG_ENABLE(oldtrans,
  303. [ --disable-oldtrans remove old transport interfaces],
  304. [ if test "x$enable_oldtrans" = "xno" ; then
  305. with_oldtrans=no
  306. fi
  307. ]
  308. )
  309. if test "x$with_oldtrans" != "xno" ; then
  310. AC_DEFINE(OLD_TRANSPORT,,[Include old transport interfaces])
  311. fi
  312. STRIPPED_JACKD=false
  313. AC_ARG_ENABLE(stripped-jackd,
  314. [ --enable-stripped-jackd strip jack before computing its md5 sum ],
  315. [ if test "x$USE_CAPABILITIES" != "xtrue" ; then
  316. AC_MSG_WARN([*** capabilities not enabled, stripped jackd has no effect])
  317. elif test "x$enable_stripped_jackd" != "xno"; then
  318. STRIPPED_JACKD=true
  319. fi
  320. ]
  321. )
  322. # plugins go in the addon dir.
  323. AS_AC_EXPAND(ADDON_DIR,${libdir}/jack)
  324. AC_SUBST(ADDON_DIR)
  325. AC_DEFINE_UNQUOTED(ADDON_DIR,"$ADDON_DIR",[Directory for plugins])
  326. AC_ARG_WITH(html-dir,
  327. [ --with-html-dir=PATH where to install the html documentation])
  328. if test "x$with_html_dir" = "x" ; then
  329. HTML_DIR='${pkgdatadir}'
  330. else
  331. HTML_DIR=$with_html_dir
  332. fi
  333. AC_SUBST(HTML_DIR)
  334. # allow specifying default tmpdir
  335. AC_ARG_WITH(default-tmpdir,
  336. [ --with-default-tmpdir=PATH where jackd and clients will put tmp files (/tmp)])
  337. if test "x$with_default_tmpdir" = "x" ; then
  338. DEFAULT_TMP_DIR=/tmp
  339. else
  340. DEFAULT_TMP_DIR=$with_default_tmpdir
  341. fi
  342. AC_SUBST(DEFAULT_TMP_DIR)
  343. AC_DEFINE_UNQUOTED(DEFAULT_TMP_DIR,"$DEFAULT_TMP_DIR",[Default tmp directory])
  344. # Check for barrier functions in the pthreads library. The default
  345. # option setting may be OS-dependent, otherwise it's "yes".
  346. test "x$USE_BARRIER" = "x" && USE_BARRIER="yes"
  347. AC_ARG_WITH(barrier,
  348. AC_HELP_STRING([--without-barrier],
  349. [avoid using pthread barrier functions]),
  350. [ USE_BARRIER=$withval ])
  351. if test "x$USE_BARRIER" = "xyes"; then
  352. AC_CHECK_LIB([pthread], [pthread_barrier_init],
  353. AC_DEFINE(USE_BARRIER, 1, [Use pthread barrier functions]))
  354. fi
  355. # Check which drivers can be built. The last one successfully
  356. # configured becomes the default JACK driver; so the order of
  357. # precedence is: alsa, oss, coreaudio, portaudio, dummy.
  358. JACK_DEFAULT_DRIVER=\"dummy\"
  359. AC_ARG_ENABLE(portaudio, [ --disable-portaudio ignore PortAudio driver ],
  360. TRY_PORTAUDIO=$enableval , TRY_PORTAUDIO=yes )
  361. HAVE_PA="false"
  362. if test "x$TRY_PORTAUDIO" = "xyes"
  363. then
  364. # check for portaudio V18
  365. AC_CHECK_LIB(portaudio, Pa_Initialize,
  366. [ AC_CHECK_HEADERS(portaudio.h,
  367. [ HAVE_PA="true"
  368. PA_LIBS=-lportaudio
  369. JACK_DEFAULT_DRIVER=\"portaudio\"
  370. ])
  371. ])
  372. AC_SUBST(PA_LIBS)
  373. fi
  374. AM_CONDITIONAL(HAVE_PA, $HAVE_PA)
  375. AC_ARG_ENABLE(coreaudio, [ --disable-coreaudio ignore CoreAudio driver ],
  376. TRY_COREAUDIO=$enableval , TRY_COREAUDIO=yes )
  377. HAVE_COREAUDIO="false"
  378. if test "x$TRY_COREAUDIO" = "xyes"
  379. then
  380. # check for coreaudio
  381. AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
  382. [ HAVE_COREAUDIO="true"
  383. CA_LIBS="-framework CoreAudio"
  384. JACK_DEFAULT_DRIVER=\"coreaudio\"
  385. ])
  386. AC_SUBST(CA_LIBS)
  387. fi
  388. AM_CONDITIONAL(HAVE_COREAUDIO, $HAVE_COREAUDIO)
  389. AC_ARG_ENABLE(oss, [ --disable-oss ignore OSS driver ],
  390. TRY_OSS=$enableval , TRY_OSS=yes )
  391. HAVE_OSS="false"
  392. if test "x$TRY_OSS" = "xyes"
  393. then
  394. # check for Open Sound System
  395. AC_CHECK_HEADER([sys/soundcard.h],
  396. [HAVE_OSS="true"
  397. JACK_DEFAULT_DRIVER=\"oss\"])
  398. fi
  399. AM_CONDITIONAL(HAVE_OSS, $HAVE_OSS)
  400. AC_ARG_ENABLE(alsa, [ --disable-alsa ignore ALSA driver ],
  401. TRY_ALSA=$enableval , TRY_ALSA=yes )
  402. HAVE_ALSA="false"
  403. if test "x$TRY_ALSA" = "xyes"
  404. then
  405. # check for ALSA >= 0.9
  406. AC_CHECK_LIB(asound,snd_pcm_drop,
  407. [HAVE_ALSA="true"
  408. ALSA_LIBS=-lasound
  409. JACK_DEFAULT_DRIVER=\"alsa\"
  410. ], [], [-lm]
  411. )
  412. AC_SUBST(ALSA_LIBS)
  413. fi
  414. AM_CONDITIONAL(HAVE_ALSA, $HAVE_ALSA)
  415. if test "$JACK_DEFAULT_DRIVER" = \"dummy\"; then
  416. AC_MSG_WARN([Only the dummy driver can be built])
  417. fi
  418. AC_DEFINE_UNQUOTED(JACK_DEFAULT_DRIVER,
  419. [$JACK_DEFAULT_DRIVER],
  420. [Default JACK driver])
  421. # some example-clients need libsndfile
  422. HAVE_SNDFILE=false
  423. PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0,[HAVE_SNDFILE=true], [true])
  424. if test x$HAVE_SNDFILE = xfalse; then
  425. AC_MSG_WARN([*** the jackrec example client will not be built])
  426. fi
  427. # On some systems, readline depends on termcap or ncurses. But, the
  428. # MacOSX linker complains bitterly if these libraries are explicitly
  429. # referenced.
  430. #
  431. # AC_CHECK_LIB() foolishly assumes that checking a library for an entry
  432. # point always returns the same result regardless of any dependent
  433. # libraries specified. The `unset ac_cv_lib_readline_readline' erases
  434. # the cached result to work around this problem.
  435. READLINE_DEPS=""
  436. HAVE_READLINE=true
  437. AC_CHECK_LIB(readline, readline, [:],
  438. [unset ac_cv_lib_readline_readline
  439. AC_CHECK_LIB(readline, readline, [READLINE_DEPS="-ltermcap"],
  440. [unset ac_cv_lib_readline_readline
  441. AC_CHECK_LIB(readline, readline,
  442. [READLINE_DEPS="-lncurses"], [HAVE_READLINE=false], "-lncurses")],
  443. "-ltermcap")])
  444. if test x$HAVE_READLINE = xfalse; then
  445. AC_MSG_WARN([*** the jack_transport example client will not be built])
  446. fi
  447. AC_SUBST(READLINE_DEPS)
  448. # you need doxygen to make dist.
  449. AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, true, false)
  450. if test $HAVE_DOXYGEN = "false"; then
  451. AC_MSG_WARN([*** doxygen not found, docs will not be built])
  452. fi
  453. AM_CONDITIONAL(HAVE_SNDFILE, $HAVE_SNDFILE)
  454. AM_CONDITIONAL(HAVE_READLINE, $HAVE_READLINE)
  455. AM_CONDITIONAL(HAVE_DOXYGEN, $HAVE_DOXYGEN)
  456. AM_CONDITIONAL(USE_CAPABILITIES, $USE_CAPABILITIES)
  457. AM_CONDITIONAL(STRIPPED_JACKD, $STRIPPED_JACKD)
  458. AC_OUTPUT(
  459. Makefile
  460. config/Makefile
  461. config/sysdeps/Makefile
  462. doc/Makefile
  463. doc/reference.doxygen
  464. drivers/Makefile
  465. drivers/alsa/Makefile
  466. drivers/dummy/Makefile
  467. drivers/oss/Makefile
  468. drivers/portaudio/Makefile
  469. drivers/coreaudio/Makefile
  470. example-clients/Makefile
  471. jack.pc
  472. jack.spec
  473. jack/Makefile
  474. jack/version.h
  475. jackd/Makefile
  476. jackd/jackd.1
  477. libjack/Makefile
  478. )
  479. dnl
  480. dnl Output summary message
  481. dnl
  482. echo
  483. echo $PACKAGE $VERSION :
  484. echo
  485. echo \| Build with ALSA support............................... : $HAVE_ALSA
  486. echo \| Build with OSS support................................ : $HAVE_OSS
  487. echo \| Build with CoreAudio support.......................... : $HAVE_COREAUDIO
  488. echo \| Build with PortAudio support.......................... : $HAVE_PA
  489. echo \|
  490. echo \| Default driver backend................................ : $JACK_DEFAULT_DRIVER
  491. echo