I was building
openssl on RedHat Linux 4.0 update 3. My goal is to disable some of the
algorithms and protocols.
I run
configure:
./Configure
--prefix=/usr --openssldir=/usr/share no-asm 386 zlib no-bf no-cast no-rc2
no-idea no-ec no - md2 no-mdc2 no-rc5 no-ec no-ripemd no-ssl2 shared
--with-krb5-flavor=MIT -I/usr/kerberos/include -L/usr/kerberos/lib
linux-elf
than
make
depend
make all build-shared
make all build-shared
Got a link error:
+ ln -s libssl.so.4
libssl.so
../libssl.so: undefined reference to `SSLv2_method'
collect2: ld returned 1 exit status
../libssl.so: undefined reference to `SSLv2_method'
collect2: ld returned 1 exit status
It seems libssl.so
still trying to reference SSLv2 even it was disabled by the
configuration.
What should I do to
resolve this?
Thanks,
Sherry
