Ops, seems I cann't reproduce the building problem without this commit. still under testing...
On 8/31/07, Zou Lunkai <[EMAIL PROTECTED]> wrote: > CVSROOT: /sources/gnash > Module name: gnash > Changes by: Zou Lunkai <zoulunkai> 07/08/31 00:49:16 > > Modified files: > . : ChangeLog > libbase : image.cpp > > Log message: > * libbase/image.cpp: don't ommit the default parameter, should fix > the building, please check > > CVSWeb URLs: > http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4166&r2=1.4167 > http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/image.cpp?cvsroot=gnash&r1=1.22&r2=1.23 > > Patches: > Index: ChangeLog > =================================================================== > RCS file: /sources/gnash/gnash/ChangeLog,v > retrieving revision 1.4166 > retrieving revision 1.4167 > diff -u -b -r1.4166 -r1.4167 > --- ChangeLog 30 Aug 2007 21:21:57 -0000 1.4166 > +++ ChangeLog 31 Aug 2007 00:49:15 -0000 1.4167 > @@ -1,3 +1,8 @@ > +2007-08-31 Zou Lunkai <[EMAIL PROTECTED]> > + > + * libbase/image.cpp: don't ommit the default parameter, should fix > + the building, please check. > + > 2007-08-30 Sandro Santilli <[EMAIL PROTECTED]> > > * server/dlist.{cpp,h}: drop unused methods and optional args. > > Index: libbase/image.cpp > =================================================================== > RCS file: /sources/gnash/gnash/libbase/image.cpp,v > retrieving revision 1.22 > retrieving revision 1.23 > diff -u -b -r1.22 -r1.23 > --- libbase/image.cpp 16 Jun 2007 19:03:00 -0000 1.22 > +++ libbase/image.cpp 31 Aug 2007 00:49:16 -0000 1.23 > @@ -373,7 +373,7 @@ > // > rgba* read_swf_jpeg3(tu_file* in) > { > - std::auto_ptr<jpeg::input> j_in ( > jpeg::input::create_swf_jpeg2_header_only(in) ); > + std::auto_ptr<jpeg::input> j_in ( > jpeg::input::create_swf_jpeg2_header_only(in, false) ); > if ( ! j_in.get() ) return 0; > > j_in->start_image(); > > > _______________________________________________ > Gnash-commit mailing list > [email protected] > http://lists.gnu.org/mailman/listinfo/gnash-commit > _______________________________________________ Gnash-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnash-commit
