[arch-general] What is aclocal?
Hi, if I call urlview within mutt, I get: "urlview: error while loading shared libraries: libncursesw.so.5: cannot open shared object file: No such file or directory" ncurses is existing here of course If I try to reinstall urlview, I get: aclocal: command not found Where can I find aclocal? Gerhard -- Gerhard Kugler Bensheim
Gerhard Kugler wrote:
Where can I find aclocal?
Gerhard
In automake, which belongs to the base-devel group, which you are supposed to have installed if you want to build packages from AUR
On Wed, Apr 20, 2016 at 09:37:03AM +0200, Antonio Rojas wrote:
Gerhard Kugler wrote:
Where can I find aclocal?
Gerhard
In automake, which belongs to the base-devel group, which you are supposed to have installed if you want to build packages from AUR
This was the solution. I had to install automake which was not installed. Thanks Gerhard -- Gerhard Kugler Bensheim
Hi On Wed, Apr 20, 2016 at 2:14 AM, Gerhard Kugler <G.W.Kugler@posteo.de> wrote:
In automake, which belongs to the base-devel group, which you are supposed to have installed if you want to build packages from AUR
This was the solution. I had to install automake which was not installed.
As it was told above you need to install whole 'base-devel' group. Please read documentation for your own benefit https://wiki.archlinux.org/index.php/Arch_User_Repository
On Wed, Apr 20, 2016 at 09:31:37 +0200, Gerhard Kugler wrote:
"[...] error while loading shared libraries: libncursesw.so.5: [...]"
ncurses is existing here of course
In addition to Antonio's response, the `ncurses` package does not provide libncursesw.so.5. You should instead look for the AUR package `ncurses5-compat-libs`. Also, if urlview depends on ncurses5, the package should state so (and you might probably want to notify the maintainer).
Le 20 avril 2016 09:48:14 GMT+02:00, Tinu Weber <takeya@bluewin.ch> a écrit :
On Wed, Apr 20, 2016 at 09:31:37 +0200, Gerhard Kugler wrote:
"[...] error while loading shared libraries: libncursesw.so.5: [...]"
ncurses is existing here of course
In addition to Antonio's response, the `ncurses` package does not provide libncursesw.so.5. You should instead look for the AUR package `ncurses5-compat-libs`. Also, if urlview depends on ncurses5, the package should state so (and you might probably want to notify the maintainer).
Or the package does depend on ncurses, but since the OP didn’t rebuild it since ncurses 6.0 update, it does still link against the .5 version, hence the error message (the lib is not on the system anymore) and rebuilding it should be fine. ;) Bruno
On Wed, 20 Apr 2016 09:48:14 +0200, Tinu Weber wrote:
Also, if urlview depends on ncurses5, the package should state so (and you might probably want to notify the maintainer).
The OP is just to lazy to do the homework. $ grep "ncurses (5" /var/log/pacman.log | grep "> 6" [2015-09-18 15:59] [ALPM] upgraded ncurses (5.9-7 -> 6.0-3) [2015-09-18 18:31] [ALPM] upgraded lib32-ncurses (5.9-3 -> 6.0-2) The package could be build against the upgraded lib. There is an AUR comment: "Jonhoo commented on 2015-09-18 15:20 A pkgrel bump to force recompile with ncurses 6 would be appreciated." - https://aur.archlinux.org/packages/urlview/ I won't comment the comment, however, reading it makes everybody aware, even when missing the forest for the trees, that taking care of soname issues should solve the problem. It requires less than 1 minute using a search engine and the OP could have found out everything without sending a request. http://lmgtfy.com/?q=arch+linux+urlview http://lmgtfy.com/?q=arch+linux+aclocal
On Wed, 20 Apr 2016 10:28:58 +0200, Ralf Mardorf wrote:
"Jonhoo commented on 2015-09-18 15:20 ^^^^^ ^^^^^ A pkgrel bump to force recompile with ncurses 6 would be appreciated." - https://aur.archlinux.org/packages/urlview/
JFTR after that comment, the package was updated: "Last Updated: 2015-09-18 16:59" ^^^^^ ^^^^^ ;)
On Wed, 20 Apr 2016 09:31:37 +0200, Gerhard Kugler wrote:
if I call urlview within mutt, I get: "urlview: error while loading shared libraries: libncursesw.so.5: cannot open shared object file: No such file or directory"
ncurses is existing here of course
You are using a package from AUR!!! https://aur.archlinux.org/packages/urlview/ You likely upgraded packages from official repositories. $ pacman -Si ncurses | grep Provides Provides : libncurses++w.so=6-64 libformw.so=6-64 libmenuw.so=6-64 libpanelw.so=6-64 libncursesw.so=6-64 $ pacman -Ql ncurses | grep libncursesw.so. ncurses /usr/lib/libncursesw.so.6 ncurses /usr/lib/libncursesw.so.6.0
Where can I find aclocal?
http://lmgtfy.com/?q=arch+linux+aclocal Regards, Ralf
participants (6)
-
Anatol Pomozov
-
Antonio Rojas
-
Bruno Pagani
-
Gerhard Kugler
-
Ralf Mardorf
-
Tinu Weber