[SCM] mididings/master: Fix FTBFS with eglibc 2.17

sramacher at users.alioth.debian.org sramacher at users.alioth.debian.org
Fri Jul 5 01:29:41 UTC 2013


The following commit has been merged in the master branch:
commit 3c69f9c33da3f9aa64c4c15cf3a663ae908bfc86
Author: Sebastian Ramacher <sramacher at debian.org>
Date:   Fri Jul 5 03:19:39 2013 +0200

    Fix FTBFS with eglibc 2.17
    
    Closes: #710636

diff --git a/debian/patches/eglibc-2.17.patch b/debian/patches/eglibc-2.17.patch
new file mode 100644
index 0000000..f594895
--- /dev/null
+++ b/debian/patches/eglibc-2.17.patch
@@ -0,0 +1,17 @@
+Description: Fix FTBFS with eglibc 2.17
+ TIME_UTC is now provided by eglibc and boost has renamed it to TIME_UTC_.
+Author: Sebastian Ramacher <sramacher at debian.org>
+Bug-Debian: http://bugs.debian.org/710636
+Last-Update: 2013-07-05
+
+--- a/src/python_caller.cc
++++ b/src/python_caller.cc
+@@ -148,7 +148,7 @@
+             _cond.timed_wait(lock, boost::posix_time::milliseconds(Config::ASYNC_CALLBACK_INTERVAL));
+ #else
+             boost::xtime xt;
+-            boost::xtime_get(&xt, boost::TIME_UTC);
++            boost::xtime_get(&xt, boost::TIME_UTC_);
+             xt.nsec += Config::ASYNC_CALLBACK_INTERVAL * 1000000;
+             _cond.timed_wait(lock, xt);
+ #endif
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..ba3ec22
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+eglibc-2.17.patch

-- 
mididings packaging



More information about the pkg-multimedia-commits mailing list