libunwind: 1.2.1 -> 1.3.0
https://github.com/libunwind/libunwind/blob/v1.3.0/NEWS Keep backtrace patch (still needed), but drop the other.
This commit is contained in:
parent
2c9de98dba
commit
bc77c644ea
|
@ -2,17 +2,14 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libunwind-${version}";
|
name = "libunwind-${version}";
|
||||||
version = "1.2.1";
|
version = "1.3.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/libunwind/${name}.tar.gz";
|
url = "mirror://savannah/libunwind/${name}.tar.gz";
|
||||||
sha256 = "1jsslwkilwrsj959dc8b479qildawz67r8m4lzxm7glcwa8cngiz";
|
sha256 = "06jn720nk4qg1nyswlxdq1swn6kbx5a85kc8jw9dw84aqqvxa1zc";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [ ./backtrace-only-with-glibc.patch ];
|
||||||
./version-1.2.1.patch
|
|
||||||
./backtrace-only-with-glibc.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/configure.ac b/configure.ac
|
|
||||||
index a254bbe..fe0247b 100644
|
|
||||||
--- a/configure.ac
|
|
||||||
+++ b/configure.ac
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
define(pkg_major, 1)
|
|
||||||
-define(pkg_minor, 2.1)
|
|
||||||
-define(pkg_extra, )
|
|
||||||
+define(pkg_minor, 2)
|
|
||||||
+define(pkg_extra, 1)
|
|
||||||
define(pkg_maintainer, libunwind-devel@nongnu.org)
|
|
||||||
define(mkvers, $1.$2$3)
|
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
|
Loading…
Reference in New Issue