[patch] bash: don't link against obsoloete termcap
Hi! Well, just in case you have termcap installed, bash will link against it, which is propably not what you want. The attached patch avoids that. ./configure says: --with-curses: This causes bash to be linked against the curses library instead of the default termcap library which is becoming obsolete. -- Clemens Koller __________________________________ R&D Imaging Devices Anagramm GmbH Rupert-Mayer-Straße 45/1 Linhof Werksgelände D-81379 München Tel.089-741518-50 Fax 089-741518-19 http://www.anagramm-technology.com --- Pkgfile.old 2007-05-29 17:24:38.000000000 +0200 +++ Pkgfile 2007-05-29 17:34:00.000000000 +0200 @@ -5,7 +5,7 @@ name=bash version=3.2.17 -release=1 +release=2 source=(http://ftp.gnu.org/gnu/$name/$name-3.2.tar.gz \ $name-3.2-001-017.patch \ $name-3.2-doc.patch \ @@ -21,7 +21,8 @@ build() { ./configure --prefix=/usr \ --exec-prefix= \ --mandir=/usr/man \ - --disable-nls + --disable-nls \ + --with-curses make -j1 make DESTDIR=$PKG install
On Tue, May 29, 2007 at 05:39:25PM +0200, Clemens Koller wrote:
Hi!
Hi Clemens,
Well, just in case you have termcap installed, bash will link against it, which is propably not what you want. The attached patch avoids that.
./configure says: --with-curses: This causes bash to be linked against the curses library instead of the default termcap library which is becoming obsolete.
thanks, applied today for bash 3.2.25 regards Juergen -- Juergen Daubert | mailto:jue@jue.li Korb, Germany | http://jue.li/crux
participants (2)
-
Clemens Koller
-
Juergen Daubert