r14139 - in packages/trunk/0ad/debian: . patches
Vincent Cheng
vincentc-guest at alioth.debian.org
Fri May 24 08:48:35 UTC 2013
Author: vincentc-guest
Date: 2013-05-24 08:48:34 +0000 (Fri, 24 May 2013)
New Revision: 14139
Added:
packages/trunk/0ad/debian/patches/boost-libnames.patch
Modified:
packages/trunk/0ad/debian/changelog
packages/trunk/0ad/debian/patches/series
Log:
0ad: Add patch to fix FTBFS #709570
Modified: packages/trunk/0ad/debian/changelog
===================================================================
--- packages/trunk/0ad/debian/changelog 2013-05-23 21:38:25 UTC (rev 14138)
+++ packages/trunk/0ad/debian/changelog 2013-05-24 08:48:34 UTC (rev 14139)
@@ -1,3 +1,9 @@
+0ad (0.0.13-2) unstable; urgency=low
+
+ * Add boost-libnames.patch to fix FTBFS with boost 1.53. (Closes: #709570)
+
+ -- Vincent Cheng <Vincentc1208 at gmail.com> Fri, 24 May 2013 01:47:14 -0700
+
0ad (0.0.13-1) unstable; urgency=low
* New upstream release.
Added: packages/trunk/0ad/debian/patches/boost-libnames.patch
===================================================================
--- packages/trunk/0ad/debian/patches/boost-libnames.patch (rev 0)
+++ packages/trunk/0ad/debian/patches/boost-libnames.patch 2013-05-24 08:48:34 UTC (rev 14139)
@@ -0,0 +1,25 @@
+Description: Don't look for -mt libs anymore with boost >= 1.53
+Author: Adam Conrad <adconrad at ubuntu.com>
+Forwarded: http://trac.wildfiregames.com/ticket/1938
+Last-Update: 2013-03-24
+
+--- a/build/premake/extern_libs4.lua
++++ b/build/premake/extern_libs4.lua
+@@ -242,7 +242,7 @@
+ -- The following are not strictly link dependencies on all systems, but
+ -- are included for compatibility with different versions of Boost
+ android_names = { "boost_filesystem-gcc-mt", "boost_system-gcc-mt" },
+- unix_names = { "boost_filesystem-mt", "boost_system-mt" },
++ unix_names = { "boost_filesystem", "boost_system" },
+ bsd_names = { "boost_filesystem", "boost_system" },
+ })
+ end,
+@@ -251,7 +251,7 @@
+ link_settings = function()
+ add_default_links({
+ android_names = { "boost_signals-gcc-mt" },
+- unix_names = { "boost_signals-mt" },
++ unix_names = { "boost_signals" },
+ bsd_names = { "boost_signals" },
+ })
+ end,
Modified: packages/trunk/0ad/debian/patches/series
===================================================================
--- packages/trunk/0ad/debian/patches/series 2013-05-23 21:38:25 UTC (rev 14138)
+++ packages/trunk/0ad/debian/patches/series 2013-05-24 08:48:34 UTC (rev 14139)
@@ -1,2 +1,3 @@
fix-bindir.patch
enable-hardening-relro.patch
+boost-libnames.patch
More information about the Pkg-games-commits
mailing list