diff -Nru blobby-1.0~rc3/debian/changelog blobby-1.0~rc3/debian/changelog --- blobby-1.0~rc3/debian/changelog 2013-05-08 19:50:04.000000000 +0000 +++ blobby-1.0~rc3/debian/changelog 2013-06-01 13:18:06.000000000 +0000 @@ -1,3 +1,10 @@ +blobby (1.0~rc3-3) unstable; urgency=low + + * Fix FTBFS: 'assert' was not declared in this scope. (Closes: #710632) + - Add 06_fix_ftbfs_assert_include.patch + + -- Felix Geyer Sat, 01 Jun 2013 15:18:00 +0200 + blobby (1.0~rc3-2) unstable; urgency=low * Upload to unstable. diff -Nru blobby-1.0~rc3/debian/patches/06_fix_ftbfs_assert_include.patch blobby-1.0~rc3/debian/patches/06_fix_ftbfs_assert_include.patch --- blobby-1.0~rc3/debian/patches/06_fix_ftbfs_assert_include.patch 1970-01-01 00:00:00.000000000 +0000 +++ blobby-1.0~rc3/debian/patches/06_fix_ftbfs_assert_include.patch 2013-06-01 13:17:46.000000000 +0000 @@ -0,0 +1,16 @@ +Description: Add missing #include statement to fix FTBFS. +Bug: https://sourceforge.net/apps/mantisbt/blobby/view.php?id=103 +Bug-Debian: http://bugs.debian.org/710632 +Author: Felix Geyer + +--- a/src/CrossCorrelation.h ++++ b/src/CrossCorrelation.h +@@ -19,6 +19,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + #pragma once + ++#include ++ + typedef float(*timeWeightFunction)(float pdt); + inline float constantWeightFunction(float ) + { diff -Nru blobby-1.0~rc3/debian/patches/series blobby-1.0~rc3/debian/patches/series --- blobby-1.0~rc3/debian/patches/series 2012-11-04 10:59:53.000000000 +0000 +++ blobby-1.0~rc3/debian/patches/series 2013-06-01 11:04:10.000000000 +0000 @@ -2,3 +2,4 @@ 02_use_system_lua.patch 04_use_system_tinyxml.patch 05_server_config_file.patch +06_fix_ftbfs_assert_include.patch