diff options
author | Michal Ratajsky <[email protected]> | 2014-07-25 23:47:46 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-07-25 23:47:46 +0200 |
commit | 59a9aabf7b66e130f68b797c5a3674798fae437b (patch) | |
tree | 2645bf1511fb6e23540941796373b60a04767bfb /configure.ac | |
parent | 0bc3aa762cd794da510f03229840d939ee7bc0c9 (diff) | |
download | libmatemixer-59a9aabf7b66e130f68b797c5a3674798fae437b.tar.bz2 libmatemixer-59a9aabf7b66e130f68b797c5a3674798fae437b.tar.xz |
Support OSS
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d9bffc6..65e06e0 100644 --- a/configure.ac +++ b/configure.ac @@ -67,6 +67,7 @@ PKG_CHECK_MODULES(GLIB, [ glib-2.0 >= $GLIB_REQUIRED_VERSION gobject-2.0 >= $GLIB_REQUIRED_VERSION gmodule-2.0 >= $GLIB_REQUIRED_VERSION + gio-2.0 >= $GLIB_REQUIRED_VERSION ]) GTK_DOC_CHECK([1.10], [--flavour no-tmpl]) @@ -131,6 +132,7 @@ if test "x$enable_oss" != "xno"; then if test "x$ac_cv_header_soundcard_h" = "xyes" -o \ "x$ac_cv_header_sys_soundcard_h" = "xyes" -o \ "x$ac_cv_header_machine_soundcard_h" = "xyes"; then + AC_CHECK_LIB([ossaudio], [_oss_ioctl], [OSS_LIBS="-lossaudio"]) have_oss=yes else have_oss=no @@ -151,6 +153,7 @@ AM_CONDITIONAL(HAVE_OSS, test "x$have_oss" = "xyes") AC_SUBST(HAVE_OSS) AC_SUBST(OSS_CFLAGS) +AC_SUBST(OSS_LIBS) # ======================================================================= # Compiler warnings |