aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-08-18 14:29:50 +0200
committerChristian Grothoff <christian@grothoff.org>2019-08-18 14:29:50 +0200
commit73b6978e227022f7d1baed13d3342898159fc05d (patch)
tree57a3a878602e72bf6fd0bcfd6f0ce61b13c1771f /configure.ac
parentf25b1edb8dae188d40e85347ff45f783708acfa9 (diff)
downloadgnunet-73b6978e227022f7d1baed13d3342898159fc05d.tar.gz
gnunet-73b6978e227022f7d1baed13d3342898159fc05d.zip
fix libpulse check
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0dc4d3b02..4ab537b31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -682,7 +682,8 @@ AS_IF([test "x$jansson" = x1],
682 682
683# check for libpulse(audio) library 683# check for libpulse(audio) library
684pulse=0 684pulse=0
685CHECK_LIBHEADER(LIBPULSE, pulse, pa_stream_peek, pulse/simple.h,jansson=1,) 685libpulse_msg="no"
686CHECK_LIBHEADER(LIBPULSE, pulse, pa_stream_peek, pulse/simple.h,pulse=1,)
686AS_IF([test "$build_target" = "mingw"], 687AS_IF([test "$build_target" = "mingw"],
687 [pulse=0]) 688 [pulse=0])
688AS_IF([test "$pulse" = 1], 689AS_IF([test "$pulse" = 1],
@@ -691,6 +692,7 @@ AS_IF([test "$pulse" = 1],
691 692
692# check for libopus(audio) library 693# check for libopus(audio) library
693opus=0 694opus=0
695libopus_msg="no"
694CHECK_LIBHEADER(LIBOPUS, 696CHECK_LIBHEADER(LIBOPUS,
695 opus, 697 opus,
696 opus_decode_float, 698 opus_decode_float,
@@ -733,6 +735,7 @@ PKG_CHECK_MODULES([GLIB],
733 AC_DEFINE([HAVE_PBC],[0],[Lacking glib library])]) 735 AC_DEFINE([HAVE_PBC],[0],[Lacking glib library])])
734 736
735gst=0 737gst=0
738gstreamer_msg="no"
736PKG_CHECK_MODULES( 739PKG_CHECK_MODULES(
737 [GST], 740 [GST],
738 [glib-2.0 gobject-2.0 gstreamer-1.0 gstreamer-app-1.0 gstreamer-audio-1.0], 741 [glib-2.0 gobject-2.0 gstreamer-1.0 gstreamer-app-1.0 gstreamer-audio-1.0],