Imported Upstream version 3.0.4
[debian/gnuradio] / config / macosx_audiounit.m4
1 # Copyright 2006 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3, or (at your option)
6 # any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Boston, MA
16 # 02110-1301, USA.
17
18 AC_DEFUN([MACOSX_AUDIOUNIT],
19 [
20     audiounitok=yes
21     case "$host_os" in
22         darwin*);;
23         *) 
24            audiounitok=no
25            AC_MSG_RESULT([gr-audio-osx requires darwin or MacOS X.])
26     esac
27
28     AC_CHECK_HEADERS([AudioUnit/AudioUnit.h],[],
29           [audiounitok=no;AC_MSG_RESULT([gr-audio-osx requires AudioUnit/AudioUnit.h, which is available on MacOS X.])])
30
31     AC_CHECK_HEADERS([AudioToolbox/AudioToolbox.h],[],
32           [audiounitok=no;AC_MSG_RESULT([gr-audio-osx requires AudioToolbox/AudioToolbox.h, which is available on MacOS X.])])    
33
34     if test $audiounitok = yes; then
35         ifelse([$1], , :, [$1])
36     else
37         ifelse([$2], , :, [$2])
38     fi
39 ])