Hello community, here is the log from the commit of package dvgrab checked in at Thu Nov 29 03:00:46 CET 2007. -------- --- dvgrab/dvgrab.changes 2007-08-07 09:35:56.000000000 +0200 +++ /mounts/work_users/ro/STABLE/dvgrab/dvgrab.changes 2007-11-29 03:00:27.609109000 +0100 @@ -1,0 +2,5 @@ +Thu Nov 29 03:00:14 CET 2007 - ro@suse.de + +- add many includes to fix build with gcc-4.3 + +------------------------------------------------------------------- New: ---- dvgrab-gcc43.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dvgrab.spec ++++++ --- /var/tmp/diff_new_pack.v16678/_old 2007-11-29 03:00:38.000000000 +0100 +++ /var/tmp/diff_new_pack.v16678/_new 2007-11-29 03:00:38.000000000 +0100 @@ -12,17 +12,18 @@ Name: dvgrab BuildRequires: gcc-c++ libiec61883-devel libjpeg-devel libquicktime-devel pkgconfig -URL: http://kino.schirmacher.de/ +Url: http://kino.schirmacher.de/ License: GPL v2 or later Group: Productivity/Multimedia/CD/Grabbers #Requires: xforms -Autoreqprov: on +AutoReqProv: on Version: 3.0 -Release: 1 +Release: 33 Summary: Record Digital Video (DV) via an IEEE 1394 (Firewire) Interface BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: %{name}-%{version}.tar.bz2 Patch0: dvgrab.writeable-strings.patch +Patch1: dvgrab-gcc43.patch %description dvgrab receives audio and video data from a digital camcorder via an @@ -39,6 +40,7 @@ %prep %setup -q %patch0 -p1 +%patch1 %build autoreconf -fi @@ -58,6 +60,8 @@ %{_mandir}/man1/dvgrab.1* %changelog +* Thu Nov 29 2007 - ro@suse.de +- add many includes to fix build with gcc-4.3 * Tue Aug 07 2007 - olh@suse.de - build parallel, remove INSTALL file - fix some -fwriteable-string warnings ++++++ dvgrab-gcc43.patch ++++++ --- avi.cc +++ avi.cc @@ -23,6 +23,7 @@ // C++ includes +#include <cstring> #include <string> #include <iostream> #include <iomanip> --- dvframe.cc +++ dvframe.cc @@ -26,6 +26,7 @@ */ #include "dvframe.h" +#include <cstring> VideoInfo::VideoInfo() : width( 0 ), height( 0 ), isPAL( false ) {} --- dvgrab.cc +++ dvgrab.cc @@ -26,6 +26,7 @@ #include <iostream> #include <sstream> #include <iomanip> +#include <cstring> using std::cerr; using std::endl; --- filehandler.cc +++ filehandler.cc @@ -23,6 +23,7 @@ #include <config.h> #endif +#include <cstring> #include <string> #include <iostream> #include <sstream> --- hdvframe.cc +++ hdvframe.cc @@ -18,6 +18,7 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <cstring> #include "hdvframe.h" HDVFrame::HDVFrame( HDVStreamParams *p ) --- iec13818-1.cc +++ iec13818-1.cc @@ -17,6 +17,7 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <cstring> #include <string> using std::string; --- ieee1394io.cc +++ ieee1394io.cc @@ -47,6 +47,8 @@ #include <config.h> #endif +#include <typeinfo> +#include <cstring> #include <deque> #include <iostream> --- main.cc +++ main.cc @@ -29,6 +29,7 @@ // C++ includes +#include <cstring> #include <string> #include <iostream> using std::cout; --- v4l2reader.cc +++ v4l2reader.cc @@ -22,6 +22,7 @@ #ifdef HAVE_LINUX_VIDEODEV2_H +#include <cstring> #include <string> #include <sys/types.h> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de