aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c16fbdcba..30f5a823c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -440,6 +440,18 @@ AC_CHECK_LIB(ogg, ogg_stream_flush_fill,
440 AM_CONDITIONAL(HAVE_OGG, false) 440 AM_CONDITIONAL(HAVE_OGG, false)
441 ogg=0) 441 ogg=0)
442 442
443PKG_CHECK_MODULES([ABE], [glib-2.0])
444# check for pbc library
445pbc=0
446AC_CHECK_HEADER([pbc/pbc.h],pbc=1)
447AM_CONDITIONAL(HAVE_PBC, [test "$pbc" = 1])
448if test "x$pbc" = x1
449then
450 AC_DEFINE([HAVE_PBC],[1],[Have pbc library])
451else
452 AC_DEFINE([HAVE_PBC],[0],[Lacking pbc library])
453fi
454
443 455
444 456
445gst=0 457gst=0