OSDN Git Service

strcasecmp() requires #include <strings.h>
authorAurelien Jacobs <aurel@gnuage.org>
Wed, 13 Aug 2008 17:22:53 +0000 (17:22 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Wed, 13 Aug 2008 17:22:53 +0000 (17:22 +0000)
Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffserver.c
libavdevice/dv1394.c
libavdevice/v4l.c
libavdevice/v4l2.c
libavformat/mp3.c
libavformat/rtsp.c
libavformat/utils.c

index 400009a..08b89a8 100644 (file)
@@ -26,6 +26,7 @@
 #define closesocket close
 #endif
 #include <string.h>
+#include <strings.h>
 #include <stdlib.h>
 #include "libavutil/random.h"
 #include "libavutil/avstring.h"
index 56e6122..de9725b 100644 (file)
@@ -28,6 +28,7 @@
 #include <sys/poll.h>
 #include <sys/time.h>
 #include <time.h>
+#include <strings.h>
 
 #include "libavformat/avformat.h"
 
index de5080c..03694e8 100644 (file)
@@ -30,6 +30,7 @@
 #define _LINUX_TIME_H 1
 #include <linux/videodev.h>
 #include <time.h>
+#include <strings.h>
 
 typedef struct {
     int fd;
index 0b03640..81875f6 100644 (file)
@@ -37,6 +37,7 @@
 #include <asm/types.h>
 #include <linux/videodev2.h>
 #include <time.h>
+#include <strings.h>
 
 static const int desired_video_buffers = 256;
 
index 346c7ea..1e4f21c 100644 (file)
@@ -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"
index 79fa4e1..d1f454d 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <sys/time.h>
 #include <unistd.h> /* for select() prototype */
+#include <strings.h>
 #include "network.h"
 #include "rtsp.h"
 
index 723427a..613de23 100644 (file)
@@ -24,6 +24,7 @@
 #include "riff.h"
 #include <sys/time.h>
 #include <time.h>
+#include <strings.h>
 
 #undef NDEBUG
 #include <assert.h>