diff options
author | Christian Schaller <uraeus@gnome.org> | 2006-01-09 17:04:52 +0000 |
---|---|---|
committer | Christian Schaller <uraeus@gnome.org> | 2006-01-09 17:04:52 +0000 |
commit | 9b94e38300ef023c12e66aa4df0efa1a8911a92c (patch) | |
tree | 49f69768275d034faf5c6cb318b55dd34034771f /configure.ac | |
parent | 8189a4da729d4df81a9143887948e35193ccf13a (diff) |
add Sun Audio plugin. Verified that nothing breaks and that make check works.
Original commit message from CVS:
add Sun Audio plugin. Verified that nothing breaks and that make check works.
Don't think the docs gets properly built yet, but I don't understand exactly how to enable that.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 27809d07..9692f244 100644 --- a/configure.ac +++ b/configure.ac @@ -168,6 +168,10 @@ AC_CHECK_HEADERS([netinet/in.h]) AC_CHECK_HEADERS([winsock2.h]) AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes") +dnl Check for FIONREAD ioctl declaration. This check is needed +dnl for the UDP plugin to build on Solaris +GST_CHECK_FIONREAD() + dnl *** checks for compiler characteristics *** dnl FIXME: check if this is used; was used for floatcast.h in base @@ -297,6 +301,12 @@ dnl Some old BSD versions and also newer OpenBSD versions : ]) ]) +dnl *** Sun Audio *** +translit(dnm, m, l) AM_CONDITIONAL(USE_SUNAUDIO, true) +GST_CHECK_FEATURE(SUNAUDIO, [Sun Audio], sunaudiosink, [ + AC_CHECK_HEADER(sys/audioio.h, HAVE_SUNAUDIO="yes", HAVE_SUNAUDIO="no") +]) + dnl *** ext plug-ins *** dnl keep this list sorted alphabetically ! @@ -597,6 +607,7 @@ ext/shout2/Makefile ext/speex/Makefile sys/Makefile sys/oss/Makefile +sys/sunaudio/Makefile po/Makefile.in gconf/Makefile gconf/gstreamer.schemas |