I am attempting to build OpenSSL on a fairly stock RedHat 6.1 system. Since I'm in the US, I'd like a patent-unencumbered build, and so I'm trying to compile without rsa, rc5 and idea. I realize that without rsa I'm limited to SSLv3 only. For my purposes, that's ok. I do the following: ./config --prefix=/usr --openssldir=/var/ssl no-rc5 no-rsa no-idea make linux-shared make install The first two commands execute without problems. The make install part of it, however, dies with the following: rm -f openssl gcc -o openssl -DMONOLITH -I../include -DTHREADS -D_REENTRANT -DNO_RC5 -DNO_RSA -DNO_IDEA -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM openssl.o verify.o asn1pars.o req.o dgst.o dh.o enc.o gendh.o errstr.o ca.o pkcs7.o crl2p7.o crl.o rsa.o dsa.o dsaparam.o x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o s_time.o apps.o s_cb.o s_socket.o version.o sess_id.o ciphers.o nseq.o pkcs12.o pkcs8.o -L. -L.. -L../.. -L../../.. -L.. -lssl -L.. -lcrypto ../libssl.so: undefined reference to `ssl2_generate_key_material' ../libssl.so: undefined reference to `ssl2_clear' ../libssl.so: undefined reference to `ssl2_new' ../libssl.so: undefined reference to `ssl2_get_cipher' ../libssl.so: undefined reference to `ssl2_get_cipher_by_char' ../libssl.so: undefined reference to `ssl2_write_error' ../libssl.so: undefined reference to `ssl2_return_error' ../libssl.so: undefined reference to `SSLv2_client_method' ../libssl.so: undefined reference to `ssl2_num_ciphers' ../libssl.so: undefined reference to `SSLv2_server_method' collect2: ld returned 1 exit status make[1]: *** [openssl] Error 1 make[1]: Leaving directory `/home/hanksdc/openssl-0.9.4/apps' make: *** [all] Error 1 It seems that even though I told it not to use the RSA stuff, it's still trying to somehow. I've seen posts of folks trying to do similar builds on the windows platform, and editing the .defs file to fix the problem. I don't think that's applicable in my situation (Linux). (Or is it?) What are your suggestions? Thanks, Dan Hanks ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]