Skip to content

Commit

Permalink
libunwind: fix version macros
Browse files Browse the repository at this point in the history
Fixes julia_05 build: #26891
  • Loading branch information
orivej committed Jul 3, 2017
1 parent dc7cc77 commit 9ccdf60
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/development/libraries/libunwind/default.nix
Original file line number Diff line number Diff line change
@@ -9,6 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "1jsslwkilwrsj959dc8b479qildawz67r8m4lzxm7glcwa8cngiz";
};

patches = [
./version-1.2.1.patch
];

nativeBuildInputs = [ autoreconfHook ];

outputs = [ "out" "dev" ];
13 changes: 13 additions & 0 deletions pkgs/development/libraries/libunwind/version-1.2.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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.

0 comments on commit 9ccdf60

Please sign in to comment.