diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-15 22:18:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-15 22:18:10 +0200 |
commit | 7190ae7743f84c78ec689e0ff1059cfbdcf3cb66 (patch) | |
tree | 4125c62f13bfb4024658123e4d024f885b7d622f /gnu/packages/ncurses.scm | |
parent | c3428a08bef079c107ad3e2cd396192a3eec071e (diff) | |
download | guix-7190ae7743f84c78ec689e0ff1059cfbdcf3cb66.tar guix-7190ae7743f84c78ec689e0ff1059cfbdcf3cb66.tar.gz |
Reverting "gnu: ncurses: Build libtinfo."
This reverts commit 953c9fcf8c1a2e0cbebadd9c07591caed7d26f8a. It turns
out that most packages (guile-ncurses, cursynth, aumix, util-linux,
etc.) expect libncurses to provide everything. So they had to be
patched to add -ltinfow to their LDFLAGS, which is counterproductive.
Other recent distros take that approach---e.g.,
<https://bugs.launchpad.net/ubuntu/+source/ncurses/+bug/259139>.
Diffstat (limited to 'gnu/packages/ncurses.scm')
-rw-r--r-- | gnu/packages/ncurses.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm index 95ad57a10c..de7e6f6721 100644 --- a/gnu/packages/ncurses.scm +++ b/gnu/packages/ncurses.scm @@ -94,9 +94,6 @@ `(#:configure-flags `("--with-shared" "--without-debug" "--enable-widec" - ;; Create a separate libtinfo.so, as many distributions do. - "--with-termlib" - ;; By default headers land in an `ncursesw' subdir, which is not ;; what users expect. ,(string-append "--includedir=" (assoc-ref %outputs "out") |