[vlc-commits] src/missing: fix compilation if httpd is disabled
Felix Paul Kühne
git at videolan.org
Mon Mar 3 18:09:21 CET 2014
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Mar 3 18:09:10 2014 +0100| [4efabf7921c9be06ba7e25d06b8d6a70f7d380c0] | committer: Felix Paul Kühne
src/missing: fix compilation if httpd is disabled
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4efabf7921c9be06ba7e25d06b8d6a70f7d380c0
---
src/missing.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/missing.c b/src/missing.c
index 7d91374..0583354 100644
--- a/src/missing.c
+++ b/src/missing.c
@@ -167,6 +167,14 @@ int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
assert (0);
}
+int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream,
+ httpd_header * headers,
+ size_t i_headers)
+{
+ (void) stream; (void) headers; (void) i_headers;
+ assert (0);
+}
+
int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
httpd_callback_sys_t *data)
{
More information about the vlc-commits
mailing list