diff options
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | gst/mpegtsparse/mpegtsparse.c | 3 |
3 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-09-06 Stefan Kost <ensonic@users.sf.net> + + * gst/mpegtsparse/mpegtsparse.c: + Fix the build (missing stdlib.h). + 2007-09-06 Sebastian Dröge <slomo@circular-chaos.org> * gst/spectrum/fix_fft.c: diff --git a/common b/common -Subproject cd25ca736bc2446800de2180ad71fc1da858d32 +Subproject 76752780462a3c4da712d56d54c45402144b3d0 diff --git a/gst/mpegtsparse/mpegtsparse.c b/gst/mpegtsparse/mpegtsparse.c index 9d344c27..13ba609e 100644 --- a/gst/mpegtsparse/mpegtsparse.c +++ b/gst/mpegtsparse/mpegtsparse.c @@ -24,6 +24,9 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif + +#include <stdlib.h> + #include "mpegtsparse.h" #include "mpegtsparsemarshal.h" #include "flutspatinfo.h" |