After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 118304 - mplex break the build
mplex break the build
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other Linux
: Normal normal
: 0.7.x
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2003-07-25 14:41 UTC by lucky_gedn
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description lucky_gedn 2003-07-25 14:41:24 UTC
vector.cc on mplex plugin break the build . To solve that problem just
come back to previous revision of the files , 1.2 -> 1.1 

 Anyway here there's the patch

 RCS file: /cvsroot/gstreamer/gst-plugins/ext/mplex/vector.cc,v
retrieving revision 1.2
diff -c -u -p -r1.2 vector.cc
cvs server: conflicting specifications of output style
--- ext/mplex/vector.cc	25 Jul 2003 10:15:53 -0000	1.2
+++ ext/mplex/vector.cc	25 Jul 2003 14:33:21 -0000
@@ -9,7 +9,7 @@
 AUStream::AUStream ():
 cur_rd (0), cur_wr (0), totalctr (0), size (0), buf (0)
 {
-  buf = new (Aunit **)[AUStream::BUF_SIZE];
+  buf = new (Aunit *)[AUStream::BUF_SIZE];
 }


 Bye All
Comment 1 David Schleef 2003-07-25 19:44:07 UTC
Yep, you're right.

Applied and fixed, thanks.