summaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-10-25 11:06:39 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-10-25 11:06:39 +0000
commit582a5f9cca7f8ae1f41076c8c3bc9c3bae851b09 (patch)
tree51ff2d26d58b7e1d4082bcb84d4a3dccc1db3cfe /acinclude.m4
parenta6b3daeb44d9b6f0d47fbe0cbfc6612c061352cd (diff)
Add build magic around sbctester program
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m48
1 files changed, 8 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 320f8946..671ba99a 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -157,10 +157,17 @@ AC_DEFUN([AC_PATH_INOTIFY], [
AC_CHECK_HEADERS(sys/inotify.h, dummy=yes, inotify_found=no)
])
+AC_DEFUN([AC_PATH_SNDFILE], [
+ PKG_CHECK_MODULES(SNDFILE, sndfile, sndfile_found=yes, sndfile_found=no)
+ AC_SUBST(SNDFILE_CFLAGS)
+ AC_SUBST(SNDFILE_LIBS)
+])
+
AC_DEFUN([AC_ARG_BLUEZ], [
fortify_enable=yes
debug_enable=no
pie_enable=no
+ sndfile_enable=${sndfile_found}
inotify_enable=${inotify_found}
expat_enable=${expat_found}
hal_enable=${hal_found}
@@ -375,6 +382,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AC_SUBST([SBC_CFLAGS], ['-I$(top_srcdir)/sbc'])
AC_SUBST([SBC_LIBS], ['$(top_builddir)/sbc/libsbc.la'])
+ AM_CONDITIONAL(SNDFILE, test "${sndfile_enable}" = "yes" && test "${sndfile_found}" = "yes")
AM_CONDITIONAL(INOTIFY, test "${inotify_enable}" = "yes" && test "${inotify_found}" = "yes")
AM_CONDITIONAL(HAL, test "${hal_enable}" = "yes" && test "${hal_found}" = "yes")
AM_CONDITIONAL(USB, test "${usb_enable}" = "yes" && test "${usb_found}" = "yes")