ThinkSECURE - Security Starts Here. schrieb:

> checking for openssl/ssl/h...yes
> checking for DH_new in -lcrypto...yes
> checking for SSL_new in -lssl...no

Yes, configure is appending libraries in the wrong order for its
test compilations ("-lcrypto -lssl" instead of  "-lssl -lcrypto").
While this is apparently no problem for shared libraries on most
platforms it breaks when using static libs....

> ./configure --prefix=/usr/local/radius --with-openssl-
> includes=/usr/local/openssl/include/ --with-openssl-
> libraries=/usr/local/openssl/lib/ --disable-shared

Try (in a single line):
LIBS=-L/usr/local/openssl/lib -lssl -lcrypto"
./configure --prefix=/usr/local/radius --with-openssl-
includes=/usr/local/openssl/include/ --disable-shared
That should work around the configure bug explained
above.

> the FR archives and Googling for 
> the answers to no avail. 

If you search for build problems on Solaris, you'll
find a (couple of) reference(s) to this problems in
the mailing list archive ...
Admitted, that's not really obvious...

        Regards,
                Stefan

- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to