tags 417705 + patch
thanks

Hi,

Attached is the diff for my stopmotion 0.6.0-1.1 NMU.
diff -u stopmotion-0.6.0/debian/changelog stopmotion-0.6.0/debian/changelog
--- stopmotion-0.6.0/debian/changelog
+++ stopmotion-0.6.0/debian/changelog
@@ -1,3 +1,10 @@
+stopmotion (0.6.0-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with GCC 4.3 (Closes: #417705).
+
+ -- Luk Claes <[EMAIL PROTECTED]>  Sat, 15 Mar 2008 17:19:55 +0000
+
 stopmotion (0.6.0-1) unstable; urgency=low
 
   * New upstream release
only in patch2:
unchanged:
--- stopmotion-0.6.0.orig/src/technical/grabber/commandlinegrabber.cpp
+++ stopmotion-0.6.0/src/technical/grabber/commandlinegrabber.cpp
@@ -20,10 +20,12 @@
 #include "src/technical/grabber/commandlinegrabber.h"
 #include "src/technical/util.h"
 
+#include <cstdlib>
 #include <sstream>
 #include <sys/types.h>
 #include <signal.h>
 #include <iostream>
+#include <cstring>
 
 using namespace std;
 
only in patch2:
unchanged:
--- stopmotion-0.6.0.orig/src/technical/projectserializer.cpp
+++ stopmotion-0.6.0/src/technical/projectserializer.cpp
@@ -27,7 +27,7 @@
 #include <sys/types.h>
 #include <libgen.h>
 #include <stdlib.h>
-
+#include <cstring>
 
 const char ProjectSerializer::imageDirectory[] = "images/";
 const char ProjectSerializer::soundDirectory[] = "sounds/";
only in patch2:
unchanged:
--- stopmotion-0.6.0.orig/src/technical/video/videofactory.cpp
+++ stopmotion-0.6.0/src/technical/video/videofactory.cpp
@@ -18,7 +18,7 @@
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 #include "videofactory.h"
-
+#include <cstring>
 
 VideoFactory::VideoFactory(ProjectSerializer *serializer, Frontend *frontend)
 		: serializer(serializer), frontend(frontend)
only in patch2:
unchanged:
--- stopmotion-0.6.0.orig/src/technical/audio/ossdriver.cpp
+++ stopmotion-0.6.0/src/technical/audio/ossdriver.cpp
@@ -30,7 +30,8 @@
 #endif	
 #include <fcntl.h>
 #include <errno.h>
-
+#include <stdio.h>
+#include <cstring>
 
 // Help function for starting a new thread
 extern "C" void* startupThread(void *arg)
only in patch2:
unchanged:
--- stopmotion-0.6.0.orig/src/domain/animation/scene.cpp
+++ stopmotion-0.6.0/src/domain/animation/scene.cpp
@@ -19,7 +19,7 @@
  ***************************************************************************/
 #include "scene.h"
 #include <sstream>
-
+#include <cstring>
 
 Scene::Scene()
 {

Reply via email to