diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-12-14 14:31:16 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-12-14 14:32:34 +0100 |
commit | b31c8c01c55f707aa8c539408ede02e5efd7e478 (patch) | |
tree | 37c5db7006090d6fdbd1d1cfa08b8fb9944dd8bf /app-text/hunspell | |
parent | virtual/pypy3: Bump to 7.3.0rc1 (diff) | |
download | gentoo-b31c8c01c55f707aa8c539408ede02e5efd7e478.tar.gz gentoo-b31c8c01c55f707aa8c539408ede02e5efd7e478.tar.bz2 gentoo-b31c8c01c55f707aa8c539408ede02e5efd7e478.zip |
app-text/hunspell: Adjusted tinfo patch
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-text/hunspell')
-rw-r--r-- | app-text/hunspell/files/hunspell-1.7.0-tinfo.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch b/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch index 1fb992b0c9d5..121c53e4595e 100644 --- a/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch +++ b/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch @@ -1,4 +1,4 @@ -From ce41cfc39129ee2be67667f2d9b78cc7f7d24dca Mon Sep 17 00:00:00 2001 +From b9a07b1ff100d5efeb5698d0ffe1c56935c681b8 Mon Sep 17 00:00:00 2001 From: zimous <zimous@matfyz.cz> Date: Mon, 2 Sep 2019 12:46:53 +0200 Subject: [PATCH] Fix build against ncurses with separate tinfo lib @@ -9,7 +9,7 @@ Gentoo-bug: https://bugs.gentoo.org/692614 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac -index 9426a94..bc5e39d 100644 +index 9426a94..958375f 100644 --- a/configure.ac +++ b/configure.ac @@ -52,11 +52,23 @@ AC_ARG_WITH( @@ -21,13 +21,13 @@ index 9426a94..bc5e39d 100644 + ]) ],[AC_CHECK_LIB([curses],[tparm],[ CURSESLIB=-lcurses -+ AC_CHECK_LIB([tinfow],[tgetent], [ ++ AC_CHECK_LIB([tinfo],[tgetent], [ + CURSESLIB="$CURSESLIB -ltinfo" + ]) ],[AC_CHECK_LIB([ncurses],[tparm],[ CURSESLIB=-lncurses - ])])]) -+ AC_CHECK_LIB([tinfow],[tgetent], [ ++ AC_CHECK_LIB([tinfo],[tgetent], [ + CURSESLIB="$CURSESLIB -ltinfo" + ]) + ], @@ -57,5 +57,5 @@ index 9426a94..bc5e39d 100644 LDFLAGS="$LDFLAGS $TERMLIB" AC_CHECK_LIB([readline],[readline],[ -- -2.23.0 +2.24.1 |