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.

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