[vlc-commits] commit: Fix inverted ML configure.ac logic (Srikanth Raju )
git at videolan.org
git at videolan.org
Sun Jan 16 22:49:40 CET 2011
vlc | branch: master | Srikanth Raju <srikiraju at gmail.com> | Mon Jan 17 03:26:05 2011 +0530| [e843f24f2b9a2c4f74aa408e813f73a7f5385e39] | committer: Srikanth Raju
Fix inverted ML configure.ac logic
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e843f24f2b9a2c4f74aa408e813f73a7f5385e39
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 34181d4..7df63f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4209,7 +4209,7 @@ dnl
dnl media library
dnl
AC_ARG_ENABLE(media-library, [--enable-media-library media library (default disabled)])
-if test "${enable_media_library}" != "yes"; then
+if test "${enable_media_library}" == "yes"; then
if test "${enable_sqlite}" != "yes"; then
if test "${enable_media_library}" == "yes"; then
AC_MSG_ERROR([SQLite module is required for the media library])
More information about the vlc-commits
mailing list