Merge pull request #3 from berkus/master
[rtaudio-cdist.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT(RtAudio, 4.0, gary@music.mcgill.ca, rtaudio)
3 AC_CONFIG_AUX_DIR(config)
4 AC_CONFIG_SRCDIR(RtAudio.cpp)
5 AC_CONFIG_FILES([rtaudio-config librtaudio.pc Makefile tests/Makefile])
6
7 # Fill GXX with something before test.
8 AC_SUBST( GXX, ["no"] )
9
10 dnl Check for pkg-config program, used for configuring some libraries.
11 m4_define_default([PKG_PROG_PKG_CONFIG],
12 [AC_MSG_CHECKING([pkg-config])
13 AC_MSG_RESULT([no])])
14
15 PKG_PROG_PKG_CONFIG
16
17 dnl If the pkg-config autoconf support isn't installed, define its
18 dnl autoconf macro to disable any packages depending on it.
19 m4_define_default([PKG_CHECK_MODULES],
20 [AC_MSG_CHECKING([$1])
21 AC_MSG_RESULT([no])
22 $4])
23
24 # Checks for programs.
25 AC_PROG_CXX(g++ CC c++ cxx)
26 AC_PROG_RANLIB
27 AC_PATH_PROG(AR, ar, no)
28 if [[ $AR = "no" ]] ; then
29     AC_MSG_ERROR("Could not find ar - needed to create a library");
30 fi
31
32 # Checks for header files.
33 AC_HEADER_STDC
34 AC_CHECK_HEADERS(sys/ioctl.h unistd.h)
35
36 # Check for debug
37 AC_MSG_CHECKING(whether to compile debug version)
38 AC_ARG_ENABLE(debug,
39   [  --enable-debug = enable various debug output],
40   [AC_SUBST( cppflag, [-D__RTAUDIO_DEBUG__] ) AC_SUBST( cxxflag, [-g] ) AC_SUBST( object_path, [Debug] ) AC_MSG_RESULT(yes)],
41   [AC_SUBST( cppflag, [] ) AC_SUBST( cxxflag, [-O2] ) AC_SUBST( object_path, [Release] ) AC_MSG_RESULT(no)])
42
43
44 # Checks for functions
45 AC_CHECK_FUNC(gettimeofday, [cppflag="$cppflag -DHAVE_GETTIMEOFDAY"], )
46
47 # Set paths if prefix is defined
48 if test "x$prefix" != "x" && test "x$prefix" != "xNONE"; then
49   LIBS="$LIBS -L$prefix/lib"
50   CPPFLAGS="$CPPFLAGS -I$prefix/include"
51 fi
52
53 # For -I and -D flags
54 CPPFLAGS="$CPPFLAGS $cppflag"
55
56 # For debugging and optimization ... overwrite default because it has both -g and -O2
57 #CXXFLAGS="$CXXFLAGS $cxxflag"
58 CXXFLAGS="$cxxflag"
59
60 # Check compiler and use -Wall if gnu.
61 if [test $GXX = "yes" ;] then
62   AC_SUBST( cxxflag, ["-Wall -Wextra"] )
63 fi
64
65 CXXFLAGS="$CXXFLAGS $cxxflag"
66
67 AC_CANONICAL_HOST
68
69 AC_SUBST( sharedlib, ["librtaudio.so"] )
70 AC_SUBST( sharedname, ["librtaudio.so.\$(RELEASE)"] )
71 AC_SUBST( libflags, ["-shared -Wl,-soname,\$(SHARED).\$(MAJOR) -o \$(SHARED).\$(RELEASE)"] )
72 case $host in
73   *-apple*)
74   AC_SUBST( sharedlib, ["librtaudio.dylib"] )
75   AC_SUBST( sharedname, ["librtaudio.\$(RELEASE).dylib"] )
76   AC_SUBST( libflags, ["-dynamiclib -o librtaudio.\$(RELEASE).dylib"] )
77 esac
78
79 # Checks for package options and external software
80 AC_SUBST( api, [""] )
81 AC_SUBST( req, [""] )
82 AC_MSG_CHECKING(for audio API)
83 case $host in
84   *-*-netbsd*)
85     AC_MSG_RESULT(using OSS)
86     api="$api -D__LINUX_OSS__"
87     LIBS="$LIBS -lossaudio"
88     AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!))
89   ;;
90
91   *-*-linux*)
92   AC_ARG_WITH(jack, [  --with-jack = choose JACK server support (mac and linux only)], [
93     api="$api -D__UNIX_JACK__"
94     AC_MSG_RESULT(using JACK)
95     AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))
96     AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], )
97
98   # Look for ALSA flag
99   AC_ARG_WITH(alsa, [  --with-alsa = choose native ALSA API support (linux only)], [
100     api="$api -D__LINUX_ALSA__"
101     req="$req alsa"
102     AC_MSG_RESULT(using ALSA)
103     AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], )
104
105   # Look for PULSE flag
106   AC_ARG_WITH(pulse, [  --with-pulse = choose PulseAudio API support (linux only)], [
107     api="$api -D__LINUX_PULSE__"
108     req="$req libpulse-simple"
109     AC_MSG_RESULT(using PulseAudio)
110     PKG_CHECK_MODULES([PULSE], [libpulse-simple], , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library!))
111         LIBS="$LIBS `pkg-config --libs libpulse-simple`" ], )
112
113   # Look for OSS flag
114   AC_ARG_WITH(oss, [  --with-oss = choose OSS API support (linux only)], [
115     api="$api -D__LINUX_OSS__"
116     AC_MSG_RESULT(using OSS)], )
117
118   # If no audio api flags specified, use ALSA
119   if [test "$api" == "";] then
120     AC_MSG_RESULT(using ALSA)
121     AC_SUBST( api, [-D__LINUX_ALSA__] )
122     req="$req alsa"
123     AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))
124   fi
125
126   AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!))
127   ;;
128
129   *-apple*)
130   AC_ARG_WITH(jack, [  --with-jack = choose JACK server support (unix only)], [
131     api="$api -D__UNIX_JACK__"
132     AC_MSG_RESULT(using JACK)
133     AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))], )
134
135 #    AC_CHECK_HEADER(jack/jack.h, [], [AC_MSG_ERROR(Jack header file not found!)] )
136 #    LIBS="$LIBS -framework jackmp" ], )
137
138
139   # Look for Core flag
140   AC_ARG_WITH(core, [  --with-core = choose CoreAudio API support (mac only)], [
141     api="$api -D__MACOSX_CORE__"
142     AC_MSG_RESULT(using CoreAudio)
143     AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR(CoreAudio header files not found!)] )
144     LIBS="$LIBS -framework CoreAudio -framework CoreFoundation" ], )
145
146   # If no audio api flags specified, use CoreAudio
147   if [test "$api" == ""; ] then
148     AC_SUBST( api, [-D__MACOSX_CORE__] )
149     AC_MSG_RESULT(using CoreAudio)
150     AC_CHECK_HEADER(CoreAudio/CoreAudio.h,
151       [],
152       [AC_MSG_ERROR(CoreAudio header files not found!)] )
153     AC_SUBST( LIBS, ["-framework CoreAudio -framework CoreFoundation"] )
154   fi
155
156   AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!))
157   ;;
158
159   *-mingw32*)
160   AC_ARG_WITH(asio, [  --with-asio = choose ASIO API support (windoze only)], [
161     api="$api -D__WINDOWS_ASIO__"
162     AC_MSG_RESULT(using ASIO)
163     AC_SUBST( objects, ["asio.o asiodrivers.o asiolist.o iasiothiscallresolver.o"] ) ], )
164
165   # Look for DirectSound flag
166   AC_ARG_WITH(ds, [  --with-ds = choose DirectSound API support (windoze only)], [
167     api="$api -D__WINDOWS_DS__"
168     AC_MSG_RESULT(using DirectSound)
169     LIBS="-ldsound -lwinmm $LIBS" ], )
170
171   # If no audio api flags specified, use DirectSound
172   if [test "$api" == "";] then
173     AC_SUBST( api, [-D__WINDOWS_DS__] )
174     AC_MSG_RESULT(using DirectSound)
175     LIBS="-ldsound -lwinmm $LIBS"
176   fi
177
178   LIBS="-lole32 $LIBS"
179   ;;
180
181   *)
182   # Default case for unknown realtime systems.
183   AC_MSG_ERROR(Unknown system type for realtime support!)
184   ;;
185 esac
186
187 CPPFLAGS="$CPPFLAGS $api"
188
189 AC_OUTPUT
190
191 chmod oug+x rtaudio-config