diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-09-06 20:37:56 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-09-06 20:37:56 +0000 |
commit | a43a4d5747317c7a8f82406436369757616fa23c (patch) | |
tree | d38bbed0c6b9ee70bf23bcf3e214c8e58e2bfcc4 | |
parent | c9611e6507ffd7b84c70429afdf5d1c16cde11c1 (diff) | |
download | gst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.tar.gz gst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.tar.bz2 gst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.zip |
gst/mpegtsparse/mpegtsparse.c: Fix the build (missing stdlib.h).
Original commit message from CVS:
* gst/mpegtsparse/mpegtsparse.c:
Fix the build (missing stdlib.h).
-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" |