mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
gst/playback/: Also include config.h when relying on defines from it. Fixes the build. Its been a please to serve :)
Original commit message from CVS: * gst/playback/test4.c: * gst/playback/test5.c: * gst/playback/test6.c: * gst/playback/test7.c: Also include config.h when relying on defines from it. Fixes the build. Its been a please to serve :)
This commit is contained in:
parent
32c304ad6f
commit
2b843ca69f
5 changed files with 24 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2008-05-02 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/playback/test4.c:
|
||||
* gst/playback/test5.c:
|
||||
* gst/playback/test6.c:
|
||||
* gst/playback/test7.c:
|
||||
Also include config.h when relying on defines from it. Fixes the
|
||||
build. Its been a please to serve :)
|
||||
|
||||
2008-05-02 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||
|
||||
* gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_STDLIB_H
|
||||
#include <stdlib.h> /* exit() */
|
||||
#endif
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
|
|
@ -16,7 +16,12 @@
|
|||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_STDLIB_H
|
||||
#include <stdlib.h> /* exit() */
|
||||
#endif
|
||||
#include <gst/gst.h>
|
||||
|
||||
#define UPDATE_INTERVAL 500
|
||||
|
|
Loading…
Reference in a new issue