Skip to content

Commit 9ccdf60

Browse files
committedJul 3, 2017
libunwind: fix version macros
Fixes julia_05 build: #26891
1 parent dc7cc77 commit 9ccdf60

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎pkgs/development/libraries/libunwind/default.nix

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ stdenv.mkDerivation rec {
99
sha256 = "1jsslwkilwrsj959dc8b479qildawz67r8m4lzxm7glcwa8cngiz";
1010
};
1111

12+
patches = [
13+
./version-1.2.1.patch
14+
];
15+
1216
nativeBuildInputs = [ autoreconfHook ];
1317

1418
outputs = [ "out" "dev" ];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/configure.ac b/configure.ac
2+
index a254bbe..fe0247b 100644
3+
--- a/configure.ac
4+
+++ b/configure.ac
5+
@@ -1,6 +1,6 @@
6+
define(pkg_major, 1)
7+
-define(pkg_minor, 2.1)
8+
-define(pkg_extra, )
9+
+define(pkg_minor, 2)
10+
+define(pkg_extra, 1)
11+
define(pkg_maintainer, libunwind-devel@nongnu.org)
12+
define(mkvers, $1.$2$3)
13+
dnl Process this file with autoconf to produce a configure script.

0 commit comments

Comments
 (0)