summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorArwed v. Merkatz <v.merkatz@gmx.net>2004-11-13 14:13:26 +0000
committerArwed v. Merkatz <v.merkatz@gmx.net>2004-11-13 14:13:26 +0000
commit82a776d6450ce9fd559d995a1130cd23132af2c1 (patch)
treead6130ac0fd62f0d4e26598eedb3e0ef4be0dff5 /configure.ac
parentbe213f63de9685b40011e23acaaa455fd0603f9a (diff)
fix mplex configure check (bug #140994)
Original commit message from CVS: fix mplex configure check (bug #140994)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 89c5c880..a2381013 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1342,7 +1342,7 @@ main (int argc,
vector<IBitStream *> inputs;
job->SetupInputStreams (inputs);
TestOutputStream *out = new TestOutputStream ();
- Multiplexor mux (*job, *out);
+ Multiplexor *mux = new Multiplexor(*job, *out);
return 0;
}
],[