ext/annodex/Makefile.am: Fix CFLAGS/LIBS.

Original commit message from CVS:
* ext/annodex/Makefile.am:
Fix CFLAGS/LIBS.
* ext/cdio/gstcdiocddasrc.c:
* ext/libpng/gstpngdec.c: (gst_pngdec_task):
Include stdlib
* ext/cairo/Makefile.am:
* gst/videofilter/Makefile.am:
* tests/examples/level/Makefile.am:
Use $(LIBM) instead of -lm
This commit is contained in:
Stefan Kost 2007-07-20 07:41:58 +00:00
parent c1254d31e9
commit 546bc7dbc1
7 changed files with 21 additions and 5 deletions

View file

@ -1,3 +1,17 @@
2007-07-20 Stefan Kost <ensonic@users.sf.net>
* ext/annodex/Makefile.am:
Fix CFLAGS/LIBS.
* ext/cdio/gstcdiocddasrc.c:
* ext/libpng/gstpngdec.c: (gst_pngdec_task):
Include stdlib
* ext/cairo/Makefile.am:
* gst/videofilter/Makefile.am:
* tests/examples/level/Makefile.am:
Use $(LIBM) instead of -lm
2007-07-18 Stefan Kost <ensonic@users.sf.net>
* sys/v4l2/gstv4l2src.c:

View file

@ -9,9 +9,9 @@ libgstannodex_la_SOURCES = \
gstcmmlparser.c
libgstannodex_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
$(GST_CFLAGS) $(XML_CFLAGS)
$(GST_CFLAGS) $(ANNODEX_CFLAGS)
libgstannodex_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
$(GST_LIBS) $(XML_LIBS) $(LIBM)
$(GST_LIBS) $(ANNODEX_LIBS) $(LIBM)
libgstannodex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstannodex.h gstcmmlutils.h gstcmmltag.h gstcmmlparser.h \

View file

@ -13,5 +13,5 @@ libgstcairo_la_CFLAGS = \
$(GST_CFLAGS) $(CAIRO_CFLAGS)
libgstcairo_la_LIBADD = \
$(GST_BASE_LIBS) \
$(GST_LIBS) $(CAIRO_LIBS) -lm
$(GST_LIBS) $(CAIRO_LIBS) $(LIBM)
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)

View file

@ -82,6 +82,7 @@
#include "gst/gst-i18n-plugin.h"
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

View file

@ -26,6 +26,7 @@
#include "gstpngdec.h"
#include <stdlib.h>
#include <string.h>
#include <gst/video/video.h>
#include <gst/gst-i18n-plugin.h>

View file

@ -34,7 +34,7 @@ libgstgamma_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS)
libgstgamma_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
$(GST_BASE_LIBS) $(GST_LIBS)
libgstgamma_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lm
libgstgamma_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
$(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c

View file

@ -1,4 +1,4 @@
noinst_PROGRAMS = level-example
level_example_CFLAGS = $(GST_CFLAGS)
level_example_LDADD = $(GST_LIBS) -lm
level_example_LDADD = $(GST_LIBS) $(LIBM)