[vlc-commits] configure: enable RemoteOSD automatically, like RAOP

Rémi Denis-Courmont git at videolan.org
Tue Feb 15 18:20:42 CET 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 15 18:25:18 2011 +0200| [2da025de84f13a130fbbe57f778ca39c51b45213] | committer: Rémi Denis-Courmont

configure: enable RemoteOSD automatically, like RAOP

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

 configure.ac |   22 ++++++++++------------
 1 files changed, 10 insertions(+), 12 deletions(-)

diff --git a/configure.ac b/configure.ac
index ed19b0e..2d2d17b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4107,24 +4107,22 @@ AS_IF([test "${enable_gnutls}" != "no"], [
 dnl
 dnl RemoteOSD plugin (VNC client as video filter)
 dnl
-AC_ARG_ENABLE(remoteosd,
-  [  --disable-remoteosd     RemoteOSD plugin (default enabled)])
-
-AS_IF([test "${enable_remoteosd}" != "no"], [
-  AS_IF([test "${have_libgcrypt}" = "yes"],[
-    VLC_ADD_PLUGIN([remoteosd])
-    VLC_ADD_LIBS([remoteosd], ${GCRYPT_LIBS})
-    VLC_ADD_CFLAGS([remoteosd], ${GCRYPT_CFLAGS})
-  ], [
-    AC_MSG_ERROR([libgcrypt support required for RemoteOSD plugin])
-  ])
+AC_MSG_CHECKING([whether to enable the RemoteOSD plugin])
+AS_IF([test "${have_libgcrypt}" = "yes"],[
+  AC_MSG_RESULT(yes)
+  VLC_ADD_PLUGIN([remoteosd])
+  VLC_ADD_LIBS([remoteosd], ${GCRYPT_LIBS})
+  VLC_ADD_CFLAGS([remoteosd], ${GCRYPT_CFLAGS})
+], [
+  AC_MSG_RESULT(no)
+  AC_MSG_WARN([libgcrypt support required for RemoteOSD plugin])
 ])
 
 
 dnl
 dnl RAOP plugin
 dnl
-AC_MSG_CHECKING([whether to enable RAOP plugin])
+AC_MSG_CHECKING([whether to enable the RAOP plugin])
 AS_IF([test "${have_libgcrypt}" = "yes"], [
   AC_MSG_RESULT(yes)
   VLC_ADD_PLUGIN([stream_out_raop])



More information about the vlc-commits mailing list