[vlc-devel] commit: Fix configure with --disable-sout (Pierre Ynard )

git version control git at videolan.org
Mon Aug 24 14:03:24 CEST 2009


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Aug 24 14:01:35 2009 +0200| [6e0f047be321a4fe7bd24f2985b5c53666d80322] | committer: Pierre Ynard 

Fix configure with --disable-sout

This is ugly, until jb finds "a clever solution."

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6e0f047be321a4fe7bd24f2985b5c53666d80322
---

 configure.ac |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7a38023..e484bcf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2568,11 +2568,15 @@ dnl
 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
 if test "${enable_sout}" != "no"; then
     PKG_ENABLE_MODULES_VLC([MUX_OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
+else
+    AM_CONDITIONAL(HAVE_MUX_OGG, 0)
 fi
 
 if test "${enable_sout}" != "no"; then
 dnl Check for libshout
 PKG_ENABLE_MODULES_VLC([shout], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
+else
+    AM_CONDITIONAL(HAVE_shout, 0)
 fi
 
 dnl




More information about the vlc-devel mailing list