changeset 3714:3790cb6c893d libavformat

strcasecmp() requires #include <strings.h>
author aurel
date Wed, 13 Aug 2008 17:22:53 +0000
parents b337fe64a31f
children 460059833ae3
files mp3.c rtsp.c utils.c
diffstat 3 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mp3.c	Wed Aug 13 09:36:45 2008 +0000
+++ b/mp3.c	Wed Aug 13 17:22:53 2008 +0000
@@ -19,6 +19,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <strings.h>
 #include "libavutil/avstring.h"
 #include "libavcodec/mpegaudio.h"
 #include "libavcodec/mpegaudiodecheader.h"
--- a/rtsp.c	Wed Aug 13 09:36:45 2008 +0000
+++ b/rtsp.c	Wed Aug 13 17:22:53 2008 +0000
@@ -24,6 +24,7 @@
 
 #include <sys/time.h>
 #include <unistd.h> /* for select() prototype */
+#include <strings.h>
 #include "network.h"
 #include "rtsp.h"
 
--- a/utils.c	Wed Aug 13 09:36:45 2008 +0000
+++ b/utils.c	Wed Aug 13 17:22:53 2008 +0000
@@ -24,6 +24,7 @@
 #include "riff.h"
 #include <sys/time.h>
 #include <time.h>
+#include <strings.h>
 
 #undef NDEBUG
 #include <assert.h>