ensure we get explicit definition of various _XOPEN_SOURCE functions we use
authorAurelien Jacobs <aurel@gnuage.org>
Thu, 14 Aug 2008 22:01:59 +0000 (22:01 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Thu, 14 Aug 2008 22:01:59 +0000 (22:01 +0000)
Originally committed as revision 14766 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffmpeg.c
libavcodec/utils.c
libavformat/os_support.c
libavformat/rtpdec.c
libavformat/rtsp.c

index 53009d395f8dd4f2aebbc44fb3fb06345553b12b..07c3ac41f48a68f1e268a5a135ea676389308cc7 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/* needed for usleep() */
+#define _XOPEN_SOURCE 500
+
 #include "config.h"
 #include <ctype.h>
 #include <string.h>
@@ -27,6 +30,7 @@
 #include <errno.h>
 #include <signal.h>
 #include <limits.h>
+#include <unistd.h>
 #include "libavformat/avformat.h"
 #include "libavdevice/avdevice.h"
 #include "libswscale/swscale.h"
@@ -45,7 +49,6 @@
 #endif
 
 #if defined(HAVE_TERMIOS_H)
-#include <unistd.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/time.h>
index 8ca19aed00cf341d1da07b6cffcf109e2ba6e9f7..6e5c40a588d88e7a23126ee90cb66a07255d09bd 100644 (file)
@@ -25,6 +25,9 @@
  * utils.
  */
 
+/* needed for mkstemp() */
+#define _XOPEN_SOURCE 500
+
 #include "libavutil/integer.h"
 #include "libavutil/crc.h"
 #include "avcodec.h"
@@ -32,6 +35,7 @@
 #include "opt.h"
 #include "imgconvert.h"
 #include "audioconvert.h"
+#include <stdlib.h>
 #include <stdarg.h>
 #include <limits.h>
 #include <float.h>
index cc109d596759bade308d61d24d0a5f901d8c7dc3..3357595590d5c4859ec57ef6add42d62fd2b7151 100644 (file)
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
+
+/* needed by inet_aton() */
+#define _SVID_SOURCE
+
 #include "config.h"
 #include "avformat.h"
 #include <unistd.h>
index e469a597c336850c152105d4109517a8792c434a..3500cad717a9cf67d53c8628030c38fd8fcf4459 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/* needed for gethostname() */
+#define _XOPEN_SOURCE 500
+
 #include "libavcodec/bitstream.h"
 #include "avformat.h"
 #include "mpegts.h"
index d1f454da161ce33ec1ed19446b6e0854b0dbdd87..a3af365cae1adcc91e000ccae8ab823755f2395a 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/* needed by inet_aton() */
+#define _SVID_SOURCE
+
 #include "libavutil/avstring.h"
 #include "avformat.h"