BootsSiR
03-15-2004, 06:39 PM
configure: error: You must have libmhash properly installed.
any suggestions? I searched but didn't come up with anything
any suggestions? I searched but didn't come up with anything
![]() | View Full Version : Trying to compile aide and i get this.. BootsSiR 03-15-2004, 06:39 PM configure: error: You must have libmhash properly installed. any suggestions? I searched but didn't come up with anything cbaker17 03-15-2004, 06:56 PM Try apt-get install aide BootsSiR 03-15-2004, 06:58 PM my bad running redhat enterprise 3 I don't have apt-get :) linux-tech 03-15-2004, 07:35 PM www.rpmfind.net rpm.pbone.net look for aide The configuration error tells you exactly what the problem is, you need libmhash. If you've installed it, make sure the libraries are installed and ldconfig is configured to their location, then re-run ldconfig. Another thing is to make sure the path to libmhash is in your path (if it's trying to exec a binary). BootsSiR 03-15-2004, 07:53 PM root@honda [~/aide-0.10]# ldconfig -v | grep hash libmhash.so.2 -> libmhash.so.2.0.0 doesn't that confirm that it is installed ok ? linux-tech 03-15-2004, 07:58 PM In configuration, tell the script where to find what it's looking for, sometimes it's looking for older (or newer) versions of something. This isn't really unusual. Try ./configure --help , usually that'll show you the options you can specify, one is probably just the option you need. Brightadmin 03-16-2004, 08:43 AM Hi, Please try to download and install mhash-0.8.18. or It may because of: /usr/local/lib is not on your linker's path, so it can't find libmhash.*, which is fixed on Linux by doing the following: #vi /etc/ld.so.conf add /usr/local/lib to the end (save) run ldconfig (traditionally in /sbin)(if it is a linker problem then resolved) Regards, Bright:) BootsSiR 03-16-2004, 09:20 AM thanks Brightadmin, installing mhash-0.8.18 did the trick :D |