Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-08-25 14:29:25 +0400
committerDavid Schleef <ds@schleef.org>2010-08-25 14:30:22 +0400
commit0505fd8cf4d6123eb73dfa4668e58feef68c97a2 (patch)
treefade9de1d194c69c8aca2cf1fe7a9436dad839c1
parent95fc49f2edc72c83bd32ba91f395f2fa7d4df3b9 (diff)
orcc: remove (fake) dependency on liborc-test
-rw-r--r--tools/Makefile.am3
-rw-r--r--tools/orcc.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 64bd805..fd303be 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -2,7 +2,8 @@
bin_PROGRAMS = orcc orc-bugreport
AM_CFLAGS = $(ORC_CFLAGS)
-LDADD = $(ORC_LIBS) ../orc-test/liborc-test-@ORC_MAJORMINOR@.la
+LDADD = $(ORC_LIBS)
+orc_bugreport_LDADD = $(ORC_LIBS) ../orc-test/liborc-test-@ORC_MAJORMINOR@.la
EXTRA_DIST = test.orc
diff --git a/tools/orcc.c b/tools/orcc.c
index 66103fe..1a42d2a 100644
--- a/tools/orcc.c
+++ b/tools/orcc.c
@@ -2,7 +2,6 @@
#include "config.h"
#include <orc/orc.h>
-#include <orc-test/orctest.h>
#include <orc/orcparse.h>
#include <stdio.h>
@@ -91,7 +90,6 @@ main (int argc, char *argv[])
char *log = NULL;
orc_init ();
- orc_test_init ();
for(i=1;i<argc;i++) {
if (strcmp(argv[i], "--header") == 0) {