wrap config.h include

Original commit message from CVS:
wrap config.h include
This commit is contained in:
Thomas Vander Stichele 2005-12-01 09:23:20 +00:00
parent 6799e86555
commit e0d86774fd
5 changed files with 20 additions and 4 deletions

View file

@ -1,3 +1,11 @@
2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
* libs/gst/controller/gstcontroller.c:
* libs/gst/controller/gsthelper.c:
* libs/gst/controller/gstinterpolation.c:
* libs/gst/controller/lib.c:
wrap config.h include
2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org> 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
* docs/gst/gstreamer-sections.txt: * docs/gst/gstreamer-sections.txt:

View file

@ -66,7 +66,9 @@
* </orderedlist> * </orderedlist>
*/ */
#include "config.h" #ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "gstcontroller.h" #include "gstcontroller.h"
#define GST_CAT_DEFAULT gst_controller_debug #define GST_CAT_DEFAULT gst_controller_debug

View file

@ -29,7 +29,9 @@
* the #GObject class. * the #GObject class.
*/ */
#include "config.h" #ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "gstcontroller.h" #include "gstcontroller.h"
#define GST_CAT_DEFAULT gst_controller_debug #define GST_CAT_DEFAULT gst_controller_debug

View file

@ -20,7 +20,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#include "config.h" #ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "gstcontroller.h" #include "gstcontroller.h"
#define GST_CAT_DEFAULT gst_controller_debug #define GST_CAT_DEFAULT gst_controller_debug

View file

@ -20,7 +20,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#include "config.h" #ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gst/gst.h> #include <gst/gst.h>
/* library initialisation */ /* library initialisation */