tests/check/elements/multifile.c: Include stdlib.h and unistd.h for mkdtemp. Some...
authorSebastian Dröge <slomo@circular-chaos.org>
Thu, 24 Apr 2008 22:04:57 +0000 (22:04 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Thu, 24 Apr 2008 22:04:57 +0000 (22:04 +0000)
Original commit message from CVS:
* tests/check/elements/multifile.c:
Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
declared in the former, some have it declared in the latter.

ChangeLog
tests/check/elements/multifile.c

index 5868fc0..edea7f2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
+
+       * tests/check/elements/multifile.c:
+       Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
+       declared in the former, some have it declared in the latter.
+
 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
 
        * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
index b190851..0e15c08 100644 (file)
@@ -24,6 +24,8 @@
 
 #include <glib/gstdio.h>
 #include <gst/check/gstcheck.h>
+#include <stdlib.h>
+#include <unistd.h>
 
 static void
 run_pipeline (GstElement * pipeline)