From 0b705fa4247f7ce55a6f26e417c8a5a1f90919e4 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 8 May 2008 00:46:34 +0000 Subject: Compile network-related code conditionally. Originally committed as revision 13076 to svn://svn.ffmpeg.org/ffmpeg/trunk --- cmdutils.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index 8333994993..86b4a9ef21 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -31,7 +31,9 @@ #include "cmdutils.h" #include "avstring.h" #include "version.h" +#ifdef CONFIG_NETWORK #include "network.h" +#endif #undef exit @@ -181,9 +183,11 @@ void print_error(const char *filename, int err) case AVERROR(ENOENT): fprintf(stderr, "%s: no such file or directory\n", filename); break; +#ifdef CONFIG_NETWORK case AVERROR(FF_NETERROR(EPROTONOSUPPORT)): fprintf(stderr, "%s: Unsupported network protocol\n", filename); break; +#endif default: fprintf(stderr, "%s: Error while opening file\n", filename); break; -- cgit v1.2.3