]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Fix a metadata bug and add some extra diagnostic information for alsa
authorMike Brady <mikebrady@eircom.net>
Tue, 24 Nov 2015 12:20:11 +0000 (12:20 +0000)
committerMike Brady <mikebrady@eircom.net>
Tue, 24 Nov 2015 12:20:11 +0000 (12:20 +0000)
configure.ac

index 8a02fad573ef438d5bcbb2644c8d3807299746cd..3cb2e034104a44f17d94c528526bbe8a9896cf52 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.50])
-AC_INIT([shairport-sync], [2.7.1], [mikebrady@eircom.net])
+AC_INIT([shairport-sync], [2.7.2], [mikebrady@eircom.net])
 AM_INIT_AUTOMAKE
 AC_CONFIG_SRCDIR([shairport.c])
 AC_CONFIG_HEADERS([config.h])
@@ -201,7 +201,7 @@ AC_ARG_WITH(pulseaudio, [  --with-pulseaudio = choose native PulseAudio API supp
   AC_MSG_RESULT(>>Including a PulseAudio back end -- N.B. no synchronisation -- so underflow or overflow is inevitable!)
   HAS_PULSE=1
   AC_DEFINE([CONFIG_PULSE], 1, [Needed by the compiler.])
-  AC_CHECK_LIB([pulse-simple], [pa_simple_new], , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library!))
+  AC_CHECK_LIB([pulse-simple], [pa_simple_new], , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library, possibly in the package libpulse-dev!))
   AC_CHECK_LIB([pulse], [pa_stream_peek], , AC_MSG_ERROR(PulseAudio support requires the libpulse-dev library!))], )
 AM_CONDITIONAL([USE_PULSE], [test "x$HAS_PULSE" = "x1"])