On Tuesday 28 May 2002 10:46, Pramila Rani wrote: > gcc -g -O2 -o openca-ocspd ocspd.o ocsp_response.o server.o http_request.o > configuration.o support.o db.o -lcrypto -lssl -L/usr/lib -L/usr -lfl -ldl > -lresolv -lnsl ocspd.o: In function `main': > /home/pramila/openca-0.9/src/modules/openca-ocspd/src/ocspd.c:129: > undefined reference to `OPENSSL_add_all_algorithms_noconf' collect2: ld > returned 1 exit status
OPENSSL_add_all_algorithms_noconf is only present in OpenSSL 0.9.7. So normally this is a hint that you forget to set the path to your OpenSSL-snapshot. This you must set during configure via --with-openssl-prefix=/usr/local/ssl /usr/local/ssl is the default-path where OpenSSL places it's directories. You must find an includefile openssl/evp.h where OPENSSL_add_all_algorithms_noconf is defined. Michael -- ------------------------------------------------------------------- Michael Bell Email (private): [EMAIL PROTECTED] Rechenzentrum - Datacenter Email: [EMAIL PROTECTED] Humboldt-University of Berlin Tel.: +49 (0)30-2093 2482 Unter den Linden 6 Fax: +49 (0)30-2093 2959 10099 Berlin Germany http://www.openca.org _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
