diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ade77ab5..188e6cd4 100644 --- a/configure.ac +++ b/configure.ac @@ -150,6 +150,12 @@ dnl *** checks for dependancy libraries *** dnl GLib is required GST_GLIB_CHECK([2.6]) +dnl liboil is required +PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no) +if test "x${HAVE_LIBOIL}" != xyes ; then + AC_ERROR([liboil-0.3 is required]) +fi + dnl checks for gstreamer dnl uninstalled is selected preferentially -- see pkg-config(1) GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ]) |