aiff: remove unused includes and fix flags order in Makefile.am

Also remove GST_PLUGINS_BASE_LIBS from LIBADD since we don't
need to link against any of the -base libs (we just use a define
from the gstaudio headers).
This commit is contained in:
Tim-Philipp Müller 2009-10-31 17:25:15 +00:00
parent 8a1b22836f
commit 8246f755cf
3 changed files with 2 additions and 5 deletions

View file

@ -2,11 +2,10 @@ plugin_LTLIBRARIES = libgstaiff.la
libgstaiff_la_SOURCES = aiffparse.c
libgstaiff_la_CFLAGS = \
$(GST_BASE_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS)
libgstaiff_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
$(GST_BASE_LIBS) \
$(LIBM)
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)

View file

@ -56,7 +56,7 @@
#include <math.h>
#include "aiffparse.h"
#include "gst/audio/audio.h"
#include <gst/audio/audio.h>
#include <gst/gst-i18n-plugin.h>
GST_DEBUG_CATEGORY_STATIC (aiffparse_debug);

View file

@ -23,8 +23,6 @@
#include <gst/gst.h>
#include "gst/riff/riff-ids.h"
#include "gst/riff/riff-read.h"
#include <gst/base/gstadapter.h>
G_BEGIN_DECLS