diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-10-03 00:16:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-10-03 00:16:19 +0000 |
commit | b1cb73aa1589bda105859221198d55a97c3eddee (patch) | |
tree | 57caac8ef43a41208827172d366bb12904cc8f1f | |
parent | b37b13066d48d78289f8f92cd4ffd85d195e9975 (diff) | |
download | ffmpeg-streaming-b1cb73aa1589bda105859221198d55a97c3eddee.zip ffmpeg-streaming-b1cb73aa1589bda105859221198d55a97c3eddee.tar.gz |
Make sure strcasecmp() is declared.
On recent glibc versions strings.h is not included by default, so the compiler
will issue a warning for implicit declaration of strcasecmp().
patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com
Originally committed as revision 15531 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | vhook/imlib2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vhook/imlib2.c b/vhook/imlib2.c index 49a5bb2..e371f38 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -53,6 +53,7 @@ #include <fcntl.h> #include <stdarg.h> #include <string.h> +#include <strings.h> #include <unistd.h> #undef time #include <sys/time.h> |