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.

264 lines
9.3KB

  1. # Process this file with autoconf to produce a configure script.
  2. AC_INIT(RtAudio, 5.0.0, gary@music.mcgill.ca, rtaudio)
  3. AC_CONFIG_AUX_DIR(config)
  4. AC_CONFIG_SRCDIR(RtAudio.cpp)
  5. AC_CONFIG_FILES([rtaudio.pc Makefile tests/Makefile doc/Makefile doc/doxygen/Doxyfile])
  6. AM_INIT_AUTOMAKE([1.14 -Wall -Werror foreign subdir-objects])
  7. # libtool version: current:revision:age
  8. #
  9. # If the library source code has changed at all since the last update, then
  10. # increment revision (`c:r:a' becomes `c:r+1:a').
  11. #
  12. # If any interfaces have been added, removed, or changed since the last update,
  13. # increment current, and set revision to 0.
  14. #
  15. # If any interfaces have been added since the last public release, then
  16. # increment age.
  17. #
  18. # If any interfaces have been removed since the last public release, then set
  19. # age to 0.
  20. m4_define([lt_current], 6)
  21. m4_define([lt_revision], 0)
  22. m4_define([lt_age], 0)
  23. m4_define([lt_version_info], [lt_current:lt_revision:lt_age])
  24. m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)])
  25. SO_VERSION=lt_version_info
  26. AC_SUBST(SO_VERSION)
  27. AC_SUBST(api)
  28. AC_SUBST(req)
  29. AC_SUBST(visibility)
  30. api=""
  31. req=""
  32. use_asio=""
  33. # configure flags
  34. AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],[enable various debug output])])
  35. AC_ARG_WITH(jack, [AS_HELP_STRING([--with-jack], [choose JACK server support (mac and linux only)])])
  36. AC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa], [choose native ALSA API support (linux only)])])
  37. AC_ARG_WITH(pulse, [AS_HELP_STRING([--with-pulse], [choose PulseAudio API support (linux only)])])
  38. AC_ARG_WITH(oss, [AS_HELP_STRING([--with-oss], [choose OSS API support (unixes)])])
  39. AC_ARG_WITH(core, [AS_HELP_STRING([--with-core], [choose CoreAudio API support (mac only)])])
  40. AC_ARG_WITH(asio, [AS_HELP_STRING([--with-asio], [choose ASIO API support (win32 only)])])
  41. AC_ARG_WITH(ds, [AS_HELP_STRING([--with-ds], [choose DirectSound API support (win32 only)])])
  42. AC_ARG_WITH(wasapi, [AS_HELP_STRING([--with-wasapi], [choose Windows Audio Session API support (win32 only)])])
  43. # Check version number coherency between RtAudio.h and configure.ac
  44. AC_MSG_CHECKING([that version numbers are coherent])
  45. RTAUDIO_VERSION=`sed -n 's/#define RTAUDIO_VERSION "\(.*\)"/\1/p' $srcdir/RtAudio.h`
  46. AS_IF([test "x$RTAUDIO_VERSION" != "x$PACKAGE_VERSION"],[
  47. AC_MSG_RESULT([no])
  48. AC_MSG_FAILURE([testing RTAUDIO_VERSION==PACKAGE_VERSION failed, check that RtAudio.h defines RTAUDIO_VERSION as "$PACKAGE_VERSION" or that the first line of configure.ac has been updated.])
  49. ],[
  50. AC_MSG_RESULT([yes])
  51. ])
  52. # Enable some nice automake features if they are available
  53. m4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
  54. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  55. # Fill GXX with something before test.
  56. GXX="no"
  57. # if the user did not provide any CXXFLAGS, we can override them
  58. AS_IF([test "x$CXXFLAGS" = "x" ], [override_cxx=yes], [override_cxx=no])
  59. AS_IF([test "x$CFLAGS" = "x" ], [override_c=yes], [override_c=no])
  60. # Checks for programs.
  61. AC_PROG_CXX(g++ CC c++ cxx)
  62. AM_PROG_AR
  63. AC_PATH_PROG(AR, ar, no)
  64. AS_IF([test "x${AR}" = "xno" ], [
  65. AC_MSG_ERROR([Could not find ar - needed to create a library])
  66. ])
  67. # Initialize libtool
  68. LT_INIT([win32-dll])
  69. AC_CONFIG_MACRO_DIR([m4])
  70. # Checks for header files.
  71. AC_HEADER_STDC
  72. AC_CHECK_HEADERS(sys/ioctl.h unistd.h)
  73. # Check compiler and use -Wall if gnu
  74. AS_IF([test "x${GXX}" = "xyes" ], [
  75. CXXFLAGS="-Wall -Wextra ${CXXFLAGS}"
  76. AS_IF([ test "x${enable_debug}" = "xyes" ], [
  77. # Add -Werror in debug mode
  78. CXXFLAGS="-Werror ${CXXFLAGS}"
  79. ], [
  80. # hide private symbols in non-debug mode
  81. visibility="-fvisibility=hidden"
  82. ])
  83. ])
  84. # Check for debug
  85. AC_MSG_CHECKING([whether to compile debug version])
  86. debugflags=""
  87. AS_CASE([${enable_debug}],
  88. [ yes ], [
  89. AC_MSG_RESULT([yes])
  90. AC_DEFINE([__RTAUDIO_DEBUG__])
  91. debugflags="${debugflags} -g -O0"
  92. object_path=Debug
  93. ],
  94. [ no ], [
  95. AC_MSG_RESULT([no!])
  96. debugflags="${debugflags} -O3"
  97. ], [
  98. AC_MSG_RESULT([no])
  99. ])
  100. # For debugging and optimization ... overwrite default because it has both -g and -O2
  101. AS_IF([test "x$debugflags" != x],
  102. AS_IF([test "x$override_cxx" = "xyes" ], CXXFLAGS="$CXXFLAGS $debugflags", CXXFLAGS="$debugflags $CXXFLAGS")
  103. AS_IF([test "x$override_c" = "xyes" ], CFLAGS="$CFLAGS $debugflags", CFLAGS="$debugflags $CFLAGS")
  104. )
  105. # Checks for functions
  106. AC_CHECK_FUNC(gettimeofday, [cppflag="$cppflag -DHAVE_GETTIMEOFDAY"], )
  107. # Checks for doxygen
  108. AC_CHECK_PROG( DOXYGEN, [doxygen], [doxygen] )
  109. AM_CONDITIONAL( MAKE_DOC, [test "x${DOXYGEN}" != x ] )
  110. # Copy doc files to build dir if necessary
  111. AC_CONFIG_LINKS( [doc/release.txt:doc/release.txt] )
  112. AC_CONFIG_LINKS( [doc/doxygen/footer.html:doc/doxygen/footer.html] )
  113. AC_CONFIG_LINKS( [doc/doxygen/error.txt:doc/doxygen/error.txt] )
  114. AC_CONFIG_LINKS( [doc/doxygen/tutorial.txt:doc/doxygen/tutorial.txt] )
  115. AC_CONFIG_LINKS( [doc/doxygen/compiling.txt:doc/doxygen/compiling.txt] )
  116. AC_CONFIG_LINKS( [doc/doxygen/acknowledge.txt:doc/doxygen/acknowledge.txt] )
  117. AC_CONFIG_LINKS( [doc/doxygen/license.txt:doc/doxygen/license.txt] )
  118. AC_CONFIG_LINKS( [doc/doxygen/header.html:doc/doxygen/header.html] )
  119. AC_CONFIG_LINKS( [doc/doxygen/duplex.txt:doc/doxygen/duplex.txt] )
  120. AC_CONFIG_LINKS( [doc/doxygen/settings.txt:doc/doxygen/settings.txt] )
  121. AC_CONFIG_LINKS( [doc/doxygen/probe.txt:doc/doxygen/probe.txt] )
  122. AC_CONFIG_LINKS( [doc/doxygen/playback.txt:doc/doxygen/playback.txt] )
  123. AC_CONFIG_LINKS( [doc/doxygen/multi.txt:doc/doxygen/multi.txt] )
  124. AC_CONFIG_LINKS( [doc/doxygen/recording.txt:doc/doxygen/recording.txt] )
  125. AC_CONFIG_LINKS( [doc/doxygen/apinotes.txt:doc/doxygen/apinotes.txt] )
  126. AC_CONFIG_LINKS( [doc/images/mcgill.gif:doc/images/mcgill.gif] )
  127. AC_CONFIG_LINKS( [doc/images/ccrma.gif:doc/images/ccrma.gif] )
  128. # Checks for package options and external software
  129. AC_CANONICAL_HOST
  130. AC_MSG_CHECKING([for audio API])
  131. AS_IF([test "x$with_jack" = "xyes"], [
  132. AC_MSG_RESULT([using JACK])
  133. AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR([JACK support requires the jack library!]))
  134. api="$api -D__UNIX_JACK__"
  135. req="$req jack"
  136. ])
  137. AS_CASE([$host],
  138. [*-*-netbsd*],
  139. AS_IF([test "x$api" = "x"], [
  140. AC_MSG_RESULT([using OSS])
  141. api="$api -D__LINUX_OSS__"
  142. AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library]))
  143. AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))
  144. ]),
  145. [*-*-freebsd*],
  146. AS_IF([test "x$api" = "x"], [
  147. AC_MSG_RESULT([using OSS])
  148. api="$api -D__LINUX_OSS__"
  149. AC_CHECK_LIB(ossaudio, main, , AC_MSG_ERROR([RtAudio requires the ossaudio library]))
  150. AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))
  151. ]),
  152. [*-*-linux*], [
  153. # Look for ALSA flag
  154. AS_IF([test "x$with_alsa" = "xyes"], [
  155. AC_MSG_RESULT([using ALSA])
  156. api="$api -D__LINUX_ALSA__"
  157. req="$req alsa"
  158. AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!]))
  159. ])
  160. # Look for PULSE flag
  161. AS_IF([test "x$with_pulse" = "xyes"], [
  162. AC_MSG_RESULT([using PulseAudio])
  163. api="$api -D__LINUX_PULSE__"
  164. req="$req libpulse-simple"
  165. AC_CHECK_LIB(pulse-simple, pa_simple_flush, , AC_MSG_ERROR([PulseAudio support requires the pulse-simple library!]))
  166. ])
  167. # Look for OSS flag
  168. AS_IF([test "x$with_oss" = "xyes"], [
  169. AC_MSG_RESULT([using OSS])
  170. api="$api -D__LINUX_OSS__"
  171. ])
  172. # If no audio api flags specified, use ALSA
  173. AS_IF([test "x$api" = "x" ], [
  174. AC_MSG_RESULT([using ALSA])
  175. api="${api} -D__LINUX_ALSA__"
  176. req="${req} alsa"
  177. AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR([ALSA support requires the asound library!]))
  178. ])
  179. AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))
  180. ],
  181. [*-apple*],[
  182. # Look for Core flag
  183. AS_IF([test "x$with_core" = "xyes"], [
  184. AC_MSG_RESULT([using CoreAudio])
  185. api="$api -D__MACOSX_CORE__"
  186. AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR([CoreAudio header files not found!])] )
  187. LIBS="$LIBS -framework CoreAudio -framework CoreFoundation"
  188. ])
  189. # If no audio api flags specified, use CoreAudio
  190. AS_IF([test "x$api" = "x" ], [
  191. AC_MSG_RESULT([using CoreAudio])
  192. api="${api} -D__MACOSX_CORE__"
  193. AC_CHECK_HEADER(CoreAudio/CoreAudio.h,
  194. [],
  195. [AC_MSG_ERROR([CoreAudio header files not found!])] )
  196. LIBS="LIBS -framework CoreAudio -framework CoreFoundation"
  197. ])
  198. AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR([RtAudio requires the pthread library!]))
  199. ],
  200. [*-mingw32*],[
  201. AS_IF([test "x$with_asio" = "xyes" ], [
  202. AC_MSG_RESULT([using ASIO])
  203. api="$api -D__WINDOWS_ASIO__"
  204. use_asio=yes
  205. CPPFLAGS="-I$srcdir/include $CPPFLAGS"
  206. ])
  207. # Look for DirectSound flag
  208. AS_IF([test "x$with_ds" = "xyes" ], [
  209. AC_MSG_RESULT([using DirectSound])
  210. api="$api -D__WINDOWS_DS__"
  211. LIBS="-ldsound -lwinmm $LIBS"
  212. ])
  213. # Look for WASAPI flag
  214. AS_IF([test "x$with_wasapi" = "xyes"], [
  215. AC_MSG_RESULT([using WASAPI])
  216. api="$api -D__WINDOWS_WASAPI__"
  217. LIBS="-lwinmm -luuid -lksuser $LIBS"
  218. CPPFLAGS="-I$srcdir/include $CPPFLAGS"
  219. ])
  220. # If no audio api flags specified, use DS
  221. AS_IF([test "x$api" = "x" ], [
  222. AC_MSG_RESULT([using DirectSound])
  223. api="$api -D__WINDOWS_DS__"
  224. LIBS="-ldsound -lwinmm $LIBS"
  225. ])
  226. LIBS="-lole32 $LIBS"
  227. ],[
  228. AC_MSG_RESULT([none])
  229. # Default case for unknown realtime systems.
  230. AC_MSG_ERROR([Unknown system type for realtime support!])
  231. ]
  232. )
  233. AM_CONDITIONAL( ASIO, [test "x${use_asio}" = "xyes" ])
  234. CPPFLAGS="$CPPFLAGS $api"
  235. AC_OUTPUT