From cd744791c50a86ecbbefe2ef5dd9dcbfffdd8182 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Mon, 1 Jan 2001 21:21:25 +0000 Subject: [PATCH] More build fixes Original commit message from CVS: More build fixes --- Makefile.am | 4 +- configure.in | 2 - examples/xml/Makefile.am | 2 +- gst/Makefile.am | 118 ++++++++++++++--------------- tests/old/examples/xml/Makefile.am | 2 +- 5 files changed, 61 insertions(+), 67 deletions(-) diff --git a/Makefile.am b/Makefile.am index e130fc3905..8f435693c3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,10 +5,10 @@ else SUBDIRS_LGG = endif -SUBDIRS = include gst libs plugins tools test tests examples docs $(SUBDIRS_LGG) +SUBDIRS = include gst libs plugins tools test tests examples $(SUBDIRS_LGG) # These are all the possible subdirs -DIST_SUBDIRS = include gst libs plugins tools test tests examples docs gstplay editor +DIST_SUBDIRS = include gst libs plugins tools test tests examples gstplay editor bin_SCRIPTS = gstreamer-config diff --git a/configure.in b/configure.in index 292d29c7bd..39997155b3 100644 --- a/configure.in +++ b/configure.in @@ -534,7 +534,6 @@ components/bonobo-gstmediaplay/Makefile test/Makefile test/xml/Makefile test/bindings/Makefile -test/cothreads/Makefile tests/Makefile tests/sched/Makefile examples/Makefile @@ -547,7 +546,6 @@ examples/queue3/Makefile examples/queue4/Makefile examples/thread/Makefile examples/xml/Makefile -examples/launch/Makefile editor/Makefile tools/Makefile docs/Makefile diff --git a/examples/xml/Makefile.am b/examples/xml/Makefile.am index 02a9a780fe..0d73f10623 100644 --- a/examples/xml/Makefile.am +++ b/examples/xml/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = runxml createxml +bin_PROGRAMS = createxml runxml LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) diff --git a/gst/Makefile.am b/gst/Makefile.am index 08974b94c6..5707386c91 100644 --- a/gst/Makefile.am +++ b/gst/Makefile.am @@ -3,11 +3,6 @@ SUBDIRS = . types meta elements lib_LTLIBRARIES = libgst.la -GSTOBJECT_SRCS = \ - gstobject.c -GSTOBJECT_INCLUDES = \ - gstobject.h - if HAVE_CPU_I386 GSTARCH_SRCS = gstcpuid_i386.s else @@ -17,34 +12,34 @@ endif EXTRA_libgst_la_SOURCES = \ gstcpuid_i386.s -libgst_la_SOURCES = \ - gst.c \ - gstinfo.c \ - $(GSTOBJECT_SRCS) \ - gstpad.c \ - gstautoplug.c \ - gstbuffer.c \ - gstbufferpool.c \ - gstclock.c \ - gstcpu.c \ - $(GSTARCH_SRCS) \ - gstelement.c \ +libgst_la_SOURCES = \ + cothreads.c \ + gst.c \ + gstautoplug.c \ + gstbin.c \ + gstbuffer.c \ + gstbufferpool.c \ + gstcaps.c \ + gstclock.c \ + gstcpu.c \ + gstelement.c \ gstelementfactory.c \ - gstextratypes.c \ - gstbin.c \ - gstpipeline.c \ - gstthread.c \ - gsttype.c \ - gstcaps.c \ - gstprops.c \ - gstplugin.c \ - gstutils.c \ - gsttrace.c \ - gstmeta.c \ - gsttee.c \ - gstxml.c \ - cothreads.c \ - gstscheduler.c + gstextratypes.c \ + gstinfo.c \ + gstmeta.c \ + gstobject.c \ + gstpad.c \ + gstpipeline.c \ + gstplugin.c \ + gstprops.c \ + gstscheduler.c \ + gsttee.c \ + gstthread.c \ + gsttrace.c \ + gsttype.c \ + gstutils.c \ + gstxml.c \ + $(GSTARCH_SRCS) # the compiler shoots cothreads.c in the head at -O6 cothreads.lo: cothreads.c @@ -53,40 +48,41 @@ cothreads.o: cothreads.c $(COMPILE) -O2 -c $< libgstincludedir = $(includedir)/gst -libgstinclude_HEADERS = \ - gst.h \ - gstinfo.h \ - gstlog.h \ - $(GSTOBJECT_INCLUDES) \ - gstpad.h \ - gstautoplug.h \ - gstbuffer.h \ - gstbufferpool.h \ - gstclock.h \ - gstcpu.h \ - gstelement.h \ - gstextratypes.h \ - gstbin.h \ - gstpipeline.h \ - gstthread.h \ - gsttype.h \ - gstcaps.h \ - gstprops.h \ - gstpropsprivate.h \ - gstplugin.h \ - gstutils.h \ - gsttrace.h \ - gstmeta.h \ - gsttee.h \ - gstxml.h \ - cothreads.h \ - gstscheduler.h +libgstinclude_HEADERS = \ + cothreads.h \ + gst.h \ + gstautoplug.h \ + gstbin.h \ + gstbuffer.h \ + gstbufferpool.h \ + gstcaps.h \ + gstclock.h \ + gstcpu.h \ + gstelement.h \ + gstextratypes.h \ + gstinfo.h \ + gstlog.h \ + gstmeta.h \ + gstobject.h \ + gstpad.h \ + gstpipeline.h \ + gstplugin.h \ + gstprops.h \ + gstscheduler.h \ + gsttee.h \ + gstthread.h \ + gsttrace.h \ + gsttype.h \ + gstutils.h \ + gstxml.h + noinst_HEADERS = \ gst_private.h \ gstarch.h \ gsti386.h \ - gstppc.h + gstppc.h \ + gstpropsprivate.h libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS) libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE) diff --git a/tests/old/examples/xml/Makefile.am b/tests/old/examples/xml/Makefile.am index 02a9a780fe..0d73f10623 100644 --- a/tests/old/examples/xml/Makefile.am +++ b/tests/old/examples/xml/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = runxml createxml +bin_PROGRAMS = createxml runxml LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)