From a0bc270c37df7f28c5d9fa2f5070f3c5638a6efc Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 23 Oct 2008 19:23:29 +0300 Subject: [PATCH] Fix --disable-vlm --enable-sout --- src/missing.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/missing.c b/src/missing.c index d6a38fc096..06c2b1b19d 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 +#ifndef ENABLE_VLM +# include 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 */ -- 2.39.2