compile fixen
authorAndy Wingo <wingo@pobox.com>
Sat, 5 Jan 2002 01:43:16 +0000 (01:43 +0000)
committerAndy Wingo <wingo@pobox.com>
Sat, 5 Jan 2002 01:43:16 +0000 (01:43 +0000)
Original commit message from CVS:
compile fixen

configure.ac
examples/events/Makefile.am
tests/bufspeed/Makefile.am
tests/bufspeed/test1.c
tests/bufspeed/test2.c
tests/memchunk/Makefile.am
tests/old/examples/events/Makefile.am

index 9871a65..5c0ab93 100644 (file)
@@ -703,15 +703,15 @@ libs/gst/getbits/Makefile
 libs/gst/putbits/Makefile
 libs/gst/control/Makefile
 tests/Makefile
-tests/sched/Makefile
-tests/eos/Makefile
+tests/bufspeed/Makefile
+tests/memchunk/Makefile
 tests/muxing/Makefile
+tests/sched/Makefile
 testsuite/Makefile
 testsuite/bytestream/Makefile
 testsuite/capsnego/Makefile
 testsuite/plugin/Makefile
 testsuite/cleanup/Makefile
-tests/nego/Makefile
 examples/Makefile
 examples/autoplug/Makefile
 examples/helloworld/Makefile
index 82d65e2..975ebab 100644 (file)
@@ -1,4 +1,4 @@
 noinst_PROGRAMS = seek
 
-LIBS = $(GLIB_LIBS) $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
index e86b7a7..7e00830 100644 (file)
@@ -2,5 +2,5 @@ noinst_PROGRAMS = test1 test2
 
 test1_SOURCES = test1.c gstbuffer.c gstmempool.c
 
-#LIBS += $(GST_LIBS)
-CFLAGS += $(GST_CFLAGS) 
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS) 
index 951af46..7bedae6 100644 (file)
@@ -6,9 +6,7 @@ main (int argc, char *argv[])
   GstBuffer *buf;
   guint i;
   
-  g_thread_init (NULL);
-  gtk_init (&argc, &argv);
-  _gst_buffer_initialize ();
+  gst_init (&argc, &argv);
 
   for (i=0; i<5000000; i++) {
     buf = gst_buffer_new ();
index 616ad1f..270ea9a 100644 (file)
@@ -6,9 +6,7 @@ main (int argc, char *argv[])
   GstBuffer *buf;
   guint i;
   
-  g_thread_init (NULL);
-  gtk_init (&argc, &argv);
-  _gst_buffer_initialize ();
+  gst_init (&argc, &argv);
 
   for (i=0; i<5000000; i++) {
     buf = gst_buffer_new ();
index fdc2c40..fbb2028 100644 (file)
@@ -3,5 +3,5 @@ noinst_PROGRAMS = gmemchunktest gstmemchunktest
 gmemchunktest_SOURCES = gmemchunktest.c
 gstmemchunktest_SOURCES = gstmemchunktest.c gstmemchunk.c gstmemchunk.h
 
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
index 82d65e2..975ebab 100644 (file)
@@ -1,4 +1,4 @@
 noinst_PROGRAMS = seek
 
-LIBS = $(GLIB_LIBS) $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)