diff options
author | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-02-08 23:32:10 +0000 |
---|---|---|
committer | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-02-08 23:32:10 +0000 |
commit | 42d9c6f495503d3d9d2db47a9979036c9233f976 (patch) | |
tree | b4d2be737c3ad6836e62dc35c861e987ea3729e0 /config/grc_gr_audio_osx.m4 | |
parent | 6bf2c048d94e1c673c06c058b23213cd28292520 (diff) |
Merged r7478:7608 from michaelld/t186 into trunk. Adds ability to compile GNU Radio modules individually, using already installed dependent libraries and include files. New functionality is enabled using --with-* on configure command line; existing build options should remain unchanged. Nice work by Michael Dickens, still needs documentation update on wiki.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7617 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'config/grc_gr_audio_osx.m4')
-rw-r--r-- | config/grc_gr_audio_osx.m4 | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/config/grc_gr_audio_osx.m4 b/config/grc_gr_audio_osx.m4 index 1d7f453a3d..a42ecd5c5c 100644 --- a/config/grc_gr_audio_osx.m4 +++ b/config/grc_gr_audio_osx.m4 @@ -1,4 +1,4 @@ -dnl Copyright 2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc. +dnl Copyright 2001,2002,2003,2004,2005,2006,2008 Free Software Foundation, Inc. dnl dnl This file is part of GNU Radio dnl @@ -19,17 +19,28 @@ dnl Boston, MA 02110-1301, USA. AC_DEFUN([GRC_GR_AUDIO_OSX],[ GRC_ENABLE([gr-audio-osx]) - + AC_CONFIG_FILES([ \ gr-audio-osx/Makefile \ gr-audio-osx/src/Makefile \ gr-audio-osx/src/run_tests \ ]) - + passed=yes MACOSX_AUDIOUNIT([], [passed=no;AC_MSG_RESULT([gr-audio-osx requires AudioUnit, not found.])]) + # Don't do gr-audio-osx if omnithread skipped + if test x$omnithread_skipped = xyes; then + AC_MSG_RESULT([Component gr-audio-osx requires omnithread, which is not being built or specified via pre-installed files.]) + passed=no + fi + # Don't do gr-audio-osx if gnuradio-core skipped + if test x$gnuradio_core_skipped = xyes; then + AC_MSG_RESULT([Component gr-audio-osx requires gnuradio-core, which is not being built or specified via pre-installed files.]) + passed=no + fi + GRC_BUILD_CONDITIONAL([gr-audio-osx],[ dnl run_tests is created from run_tests.in. Make it executable. AC_CONFIG_COMMANDS([run_tests_osx], [chmod +x gr-audio-osx/src/run_tests]) |