From 530d023e87f54f56a52b9f001e2c53b3389f8ef0 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sun, 9 May 2004 14:17:32 +0000 Subject: [PATCH] libs/gst/bytestream/Makefile.am: we should indeed add .c files to makefiles or they won't be built (d'oh) Original commit message from CVS: * libs/gst/bytestream/Makefile.am: we should indeed add .c files to makefiles or they won't be built (d'oh) --- ChangeLog | 6 ++++++ libs/gst/bytestream/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bf4ad74db1..2fc6130ffa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-05-09 Benjamin Otte + + * libs/gst/bytestream/Makefile.am: + we should indeed add .c files to makefiles or they won't be built + (d'oh) + 2004-05-08 Benjamin Otte * gst/gstpad.c: (gst_pad_proxy_fixate): diff --git a/libs/gst/bytestream/Makefile.am b/libs/gst/bytestream/Makefile.am index 4d35588c3d..3d7b26585c 100644 --- a/libs/gst/bytestream/Makefile.am +++ b/libs/gst/bytestream/Makefile.am @@ -8,7 +8,7 @@ noinst_DATA = $(as_libtool_noinst_DATA_files) libgstbytestreamincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/bytestream libgstbytestreaminclude_HEADERS = bytestream.h adapter.h -libgstbytestream_la_SOURCES = bytestream.c +libgstbytestream_la_SOURCES = bytestream.c adapter.c libgstbytestream_la_CFLAGS = $(GST_OBJ_CFLAGS) libgstbytestream_la_LIBS = $(GST_OBJ_LIBS) libgstbytestream_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)