[vlc-devel] commit: Fix --disable-vlm --enable-sout ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Oct 23 18:24:00 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Oct 23 19:23:29 2008 +0300| [a0bc270c37df7f28c5d9fa2f5070f3c5638a6efc] | committer: Rémi Denis-Courmont
Fix --disable-vlm --enable-sout
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0bc270c37df7f28c5d9fa2f5070f3c5638a6efc
---
src/missing.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/missing.c b/src/missing.c
index d6a38fc..06c2b1b 100644
--- a/src/missing.c
+++ b/src/missing.c
@@ -294,9 +294,10 @@ char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg,
{
return NULL;
}
+#endif /* !ENABLE_SOUT */
-# ifndef ENABLE_VLM
-# include <vlc_vlm.h>
+#ifndef ENABLE_VLM
+# include <vlc_vlm.h>
int vlm_Control (vlm_t *vlm, int query, ...)
{
@@ -333,6 +334,4 @@ vlm_t *__vlm_New (vlc_object_t *obj)
msg_Err (obj, "VLM not compiled-in!");
return NULL;
}
-
-# endif /* !ENABLE_VLM */
-#endif /* !ENABLE_SOUT */
+#endif /* !ENABLE_VLM */
More information about the vlc-devel
mailing list