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.

564 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=6
  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, [Define to 1 if SSE assembly is available.])
  187. SSE_FLAGS="-msse -mfpmath=sse"
  188. AC_MSG_RESULT(yes)
  189. ,
  190. enable_sse=no
  191. AC_MSG_RESULT(no)
  192. AC_MSG_WARN([The assembler does not support the SSE command set.])
  193. )
  194. fi
  195. ,
  196. enable_mmx=no
  197. AC_MSG_RESULT(no)
  198. AC_MSG_WARN([The assembler does not support the MMX command set.])
  199. )
  200. fi
  201. AC_DEFINE(x86, 1, "Nope it's intel")
  202. COMMON_X86_OPT_FLAGS="-DREENTRANT -O3 -fomit-frame-pointer -ffast-math -funroll-loops -fmove-all-movables"
  203. if test "$target_cpu" = "i586"; then
  204. JACK_OPT_CFLAGS="-march=i586 "
  205. elif test "$target_cpu" = "i686"; then
  206. JACK_OPT_CFLAGS="-march=i686"
  207. else
  208. :
  209. fi
  210. JACK_OPT_CFLAGS="$COMMON_X86_OPT_FLAGS $JACK_OPT_CFLAGS $MMX_FLAGS $SSE_FLAGS"
  211. fi
  212. AC_ARG_ENABLE(optimize,
  213. [ --enable-optimize ask the compiler for its best optimizations],
  214. [ if test x$enable_optimize != xno ; then
  215. JACK_CFLAGS="$JACK_CORE_CFLAGS $JACK_OPT_CFLAGS" ;
  216. fi
  217. ]
  218. )
  219. AC_SUBST(JACK_CFLAGS)
  220. dnl
  221. dnl use JACK_CFLAGS for jackd compilation
  222. dnl
  223. CFLAGS=$JACK_CFLAGS
  224. # allow buffer resizing unless --disable-resize specified
  225. enable_resize=yes
  226. AC_ARG_ENABLE(resize,
  227. AC_HELP_STRING([--disable-resize], [disable buffer resizing]),
  228. [
  229. if test x$enable_resize != xno ; then
  230. AC_DEFINE(DO_BUFFER_RESIZE,,[Enable buffer resizing])
  231. fi
  232. ]
  233. )
  234. AC_ARG_ENABLE(ensure-mlock,
  235. AC_HELP_STRING([--enable-ensure-mlock],
  236. [fail if unable to lock memory]),
  237. [
  238. if test x$enable_ensure_mlock != xno ; then
  239. AC_DEFINE(ENSURE_MLOCK,,[Ensure that memory locking succeeds])
  240. fi
  241. ]
  242. )
  243. AC_ARG_ENABLE(debug,
  244. AC_HELP_STRING([--enable-debug],
  245. [enable debugging messages in jackd and libjack]),
  246. [
  247. if test x$enable_debug != xno ; then
  248. AC_DEFINE(DEBUG_ENABLED,,[Enable debugging messages])
  249. fi
  250. ]
  251. )
  252. AC_ARG_ENABLE(timestamps,
  253. AC_HELP_STRING([--enable-timestamps],
  254. [allow clients to use the JACK timestamp API]),
  255. [
  256. if test x$enable_timestamps != xno ; then
  257. AC_DEFINE(WITH_TIMESTAMPS,,[Enable JACK timestamp API])
  258. fi
  259. ]
  260. )
  261. USE_CAPABILITIES=false
  262. AC_ARG_ENABLE(capabilities,
  263. [ --enable-capabilities use libcap to gain realtime scheduling priviledges],
  264. [ if test "x$enable_capabilities" != "xno" ; then
  265. AC_CHECK_LIB(cap, capgetp,
  266. [AC_CHECK_HEADER(sys/capability.h,
  267. [HAVE_CAPABILITIES=true],
  268. [AC_MSG_WARN([*** no kernel support for capabilities])
  269. HAVE_CAPABILITIES=false]
  270. )],
  271. [AC_MSG_WARN([*** no libcap present])
  272. HAVE_CAPABILITIES=false]
  273. )
  274. if test "x$HAVE_CAPABILITIES" = "xtrue"; then
  275. AC_CHECK_PROG(HAVE_CAPABILITIES, md5sum, true, false)
  276. fi
  277. if test "x$HAVE_CAPABILITIES" = "xfalse"; then
  278. AC_MSG_WARN([*** required program md5sum not found])
  279. fi
  280. if test "x$HAVE_CAPABILITIES" = "xfalse"; then
  281. AC_MSG_ERROR([*** Capabilities support not present. Run configure again without --enable-capabilities.])
  282. fi
  283. USE_CAPABILITIES=true
  284. AC_DEFINE(USE_CAPABILITIES,,[Enable POSIX 1.e capabilities support])
  285. fi
  286. ]
  287. )
  288. with_oldtrans=yes
  289. AC_ARG_ENABLE(oldtrans,
  290. [ --disable-oldtrans remove old transport interfaces],
  291. [ if test "x$enable_oldtrans" = "xno" ; then
  292. with_oldtrans=no
  293. fi
  294. ]
  295. )
  296. if test "x$with_oldtrans" != "xno" ; then
  297. AC_DEFINE(OLD_TRANSPORT,,[Include old transport interfaces])
  298. fi
  299. STRIPPED_JACKD=false
  300. AC_ARG_ENABLE(stripped-jackd,
  301. [ --enable-stripped-jackd strip jack before computing its md5 sum ],
  302. [ if test "x$USE_CAPABILITIES" != "xtrue" ; then
  303. AC_MSG_WARN([*** capabilities not enabled, stripped jackd has no effect])
  304. elif test "x$enable_stripped_jackd" != "xno"; then
  305. STRIPPED_JACKD=true
  306. fi
  307. ]
  308. )
  309. # plugins go in the addon dir.
  310. AS_AC_EXPAND(ADDON_DIR,${libdir}/jack)
  311. AC_SUBST(ADDON_DIR)
  312. AC_DEFINE_UNQUOTED(ADDON_DIR,"$ADDON_DIR",[Directory for plugins])
  313. AC_ARG_WITH(html-dir,
  314. [ --with-html-dir=PATH where to install the html documentation])
  315. if test "x$with_html_dir" = "x" ; then
  316. HTML_DIR='${pkgdatadir}'
  317. else
  318. HTML_DIR=$with_html_dir
  319. fi
  320. AC_SUBST(HTML_DIR)
  321. # allow specifying default tmpdir
  322. AC_ARG_WITH(default-tmpdir,
  323. [ --with-default-tmpdir=PATH where jackd and clients will put tmp files (/tmp)])
  324. if test "x$with_default_tmpdir" = "x" ; then
  325. DEFAULT_TMP_DIR=/tmp
  326. else
  327. DEFAULT_TMP_DIR=$with_default_tmpdir
  328. fi
  329. AC_SUBST(DEFAULT_TMP_DIR)
  330. AC_DEFINE_UNQUOTED(DEFAULT_TMP_DIR,"$DEFAULT_TMP_DIR",[Default tmp directory])
  331. # Check for barrier functions in the pthreads library. The default
  332. # option setting may be OS-dependent, otherwise it's "yes".
  333. test "x$USE_BARRIER" = "x" && USE_BARRIER="yes"
  334. AC_ARG_WITH(barrier,
  335. AC_HELP_STRING([--without-barrier],
  336. [avoid using pthread barrier functions]),
  337. [ USE_BARRIER=$withval ])
  338. if test "x$USE_BARRIER" = "xyes"; then
  339. AC_CHECK_LIB([pthread], [pthread_barrier_init],
  340. AC_DEFINE(USE_BARRIER, 1, [Use pthread barrier functions]))
  341. fi
  342. # Check which drivers can be built. The last one successfully
  343. # configured becomes the default JACK driver; so the order of
  344. # precedence is: alsa, oss, coreaudio, portaudio, dummy.
  345. JACK_DEFAULT_DRIVER=\"dummy\"
  346. AC_ARG_ENABLE(portaudio, [ --disable-portaudio ignore PortAudio driver ],
  347. TRY_PORTAUDIO=$enableval , TRY_PORTAUDIO=yes )
  348. HAVE_PA="false"
  349. if test "x$TRY_PORTAUDIO" = "xyes"
  350. then
  351. # check for portaudio V18
  352. AC_CHECK_LIB(portaudio, Pa_Initialize,
  353. [ AC_CHECK_HEADERS(portaudio.h,
  354. [ HAVE_PA="true"
  355. PA_LIBS=-lportaudio
  356. JACK_DEFAULT_DRIVER=\"portaudio\"
  357. ])
  358. ])
  359. AC_SUBST(PA_LIBS)
  360. fi
  361. AM_CONDITIONAL(HAVE_PA, $HAVE_PA)
  362. AC_ARG_ENABLE(coreaudio, [ --disable-coreaudio ignore CoreAudio driver ],
  363. TRY_COREAUDIO=$enableval , TRY_COREAUDIO=yes )
  364. HAVE_COREAUDIO="false"
  365. if test "x$TRY_COREAUDIO" = "xyes"
  366. then
  367. # check for coreaudio
  368. AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
  369. [ HAVE_COREAUDIO="true"
  370. CA_LIBS="-framework CoreAudio"
  371. JACK_DEFAULT_DRIVER=\"coreaudio\"
  372. ])
  373. AC_SUBST(CA_LIBS)
  374. fi
  375. AM_CONDITIONAL(HAVE_COREAUDIO, $HAVE_COREAUDIO)
  376. AC_ARG_ENABLE(oss, [ --disable-oss ignore OSS driver ],
  377. TRY_OSS=$enableval , TRY_OSS=yes )
  378. HAVE_OSS="false"
  379. if test "x$TRY_OSS" = "xyes"
  380. then
  381. # check for Open Sound System
  382. AC_CHECK_HEADER([sys/soundcard.h],
  383. [HAVE_OSS="true"
  384. JACK_DEFAULT_DRIVER=\"oss\"])
  385. fi
  386. AM_CONDITIONAL(HAVE_OSS, $HAVE_OSS)
  387. AC_ARG_ENABLE(alsa, [ --disable-alsa ignore ALSA driver ],
  388. TRY_ALSA=$enableval , TRY_ALSA=yes )
  389. HAVE_ALSA="false"
  390. if test "x$TRY_ALSA" = "xyes"
  391. then
  392. # check for ALSA >= 0.9
  393. AC_CHECK_LIB(asound,snd_pcm_drop,
  394. [HAVE_ALSA="true"
  395. ALSA_LIBS=-lasound
  396. JACK_DEFAULT_DRIVER=\"alsa\"
  397. ], [], [-lm]
  398. )
  399. AC_SUBST(ALSA_LIBS)
  400. fi
  401. AM_CONDITIONAL(HAVE_ALSA, $HAVE_ALSA)
  402. if test "$JACK_DEFAULT_DRIVER" = \"dummy\"; then
  403. AC_MSG_WARN([Only the dummy driver can be built])
  404. fi
  405. AC_DEFINE_UNQUOTED(JACK_DEFAULT_DRIVER,
  406. [$JACK_DEFAULT_DRIVER],
  407. [Default JACK driver])
  408. # some example-clients need libsndfile
  409. HAVE_SNDFILE=false
  410. PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0,[HAVE_SNDFILE=true], [true])
  411. if test x$HAVE_SNDFILE = xfalse; then
  412. AC_MSG_WARN([*** the jackrec example client will not be built])
  413. fi
  414. # On some systems, readline depends on termcap or ncurses. But, the
  415. # MacOSX linker complains bitterly if these libraries are explicitly
  416. # referenced.
  417. #
  418. # AC_CHECK_LIB() foolishly assumes that checking a library for an entry
  419. # point always returns the same result regardless of any dependent
  420. # libraries specified. The `unset ac_cv_lib_readline_readline' erases
  421. # the cached result to work around this problem.
  422. READLINE_DEPS=""
  423. HAVE_READLINE=true
  424. AC_CHECK_LIB(readline, readline, [:],
  425. [unset ac_cv_lib_readline_readline
  426. AC_CHECK_LIB(readline, readline, [READLINE_DEPS="-ltermcap"],
  427. [unset ac_cv_lib_readline_readline
  428. AC_CHECK_LIB(readline, readline,
  429. [READLINE_DEPS="-lncurses"], [HAVE_READLINE=false], "-lncurses")],
  430. "-ltermcap")])
  431. if test x$HAVE_READLINE = xfalse; then
  432. AC_MSG_WARN([*** the jack_transport example client will not be built])
  433. fi
  434. AC_SUBST(READLINE_DEPS)
  435. # you need doxygen to make dist.
  436. AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, true, false)
  437. if test $HAVE_DOXYGEN = "false"; then
  438. AC_MSG_WARN([*** doxygen not found, docs will not be built])
  439. fi
  440. AM_CONDITIONAL(HAVE_SNDFILE, $HAVE_SNDFILE)
  441. AM_CONDITIONAL(HAVE_READLINE, $HAVE_READLINE)
  442. AM_CONDITIONAL(HAVE_DOXYGEN, $HAVE_DOXYGEN)
  443. AM_CONDITIONAL(USE_CAPABILITIES, $USE_CAPABILITIES)
  444. AM_CONDITIONAL(STRIPPED_JACKD, $STRIPPED_JACKD)
  445. AC_OUTPUT(
  446. Makefile
  447. config/Makefile
  448. config/sysdeps/Makefile
  449. doc/Makefile
  450. doc/reference.doxygen
  451. drivers/Makefile
  452. drivers/alsa/Makefile
  453. drivers/dummy/Makefile
  454. drivers/oss/Makefile
  455. drivers/portaudio/Makefile
  456. drivers/coreaudio/Makefile
  457. example-clients/Makefile
  458. jack.pc
  459. jack.spec
  460. jack/Makefile
  461. jack/version.h
  462. jackd/Makefile
  463. jackd/jackd.1
  464. libjack/Makefile
  465. )
  466. dnl
  467. dnl Output summary message
  468. dnl
  469. echo
  470. echo $PACKAGE $VERSION :
  471. echo
  472. echo \| Build with OSS support................................ : $HAVE_OSS
  473. echo \| Build with ALSA support............................... : $HAVE_ALSA
  474. echo \| Build with PortAudio support.......................... : $HAVE_PA
  475. echo \| Build with CoreAudio support.......................... : $HAVE_COREAUDIO
  476. echo \|
  477. echo \| Default driver is..................................... : $JACK_DEFAULT_DRIVER
  478. echo