ipmitool / test

0 stars 0 forks source link

IPMI does not compile the lanplus interface in cygwin environment on windows platform #69

Open AlexanderAmelkin opened 8 years ago

AlexanderAmelkin commented 8 years ago

Reported by: mareedu srinivasa rao Original Ticket: ipmitool/bugs/458

Hi,

I am getting lanplus = no while building the ipmitool source in cygwin environment on windows platform.

Interfaces lan : yes lanplus : no open : no free : no imb : no bmc : no lipmi : no wmi : yes

Extra tools ipmievd : yes

any idea to resolve this issue!

Br, MSR

AlexanderAmelkin commented 8 years ago

You nee libcrypto to build lanplus. I'm not an expert in cygwin, but according to search that library is likely in libopenssl package...

Original comment by: Dmitry Rakhchev

AlexanderAmelkin commented 8 years ago

Original comment by: Zdenek Styblik

AlexanderAmelkin commented 8 years ago

Hello Dmitry Rakhchev,

I have updated my Cyzwin environment with latest libopenssl pkg, even though build is not copiling lanplus interface.

Br, MSR

Original comment by: mareedu srinivasa rao

AlexanderAmelkin commented 8 years ago

I've just build cygwin version of ipmitool with lanplus using cross-compiler. No issues.

You need openssl-devel, not just openssl, since you are going to use that library for development.

Here's how to check that required library is present:

$ ls /usr/lib/libcrypto*
/usr/lib/libcrypto.a  /usr/lib/libcrypto.dll.a

If that does not help, you'll have to dig config.log file created by configure to find out why lanplus was not enabled. Passing --enable-intf-lanplus to configure script might help.

Original comment by: Dmitry Rakhchev