*** empty log message ***

svn path=/trunk/boinc/; revision=6980
This commit is contained in:
Eric J. Korpela 2005-08-02 18:37:58 +00:00
parent ab1be5bb64
commit 444060ba8d
2 changed files with 8 additions and 2 deletions

View File

@ -9799,10 +9799,13 @@ David 1 Aug 2005
boinc_api.C
Eric 2 Aug 2005
- added autoconf macro to check for openssl and set up the USE_RSAEURO or USE_OPENSSL macros in config.h.
- added a check for whether hard and soft links function as expected.
(People were having problems where soft links were faked.)
- added autoconf macro to check for openssl and set up the
USE_RSAEURO or USE_OPENSSL macros in config.h.
- modified configure.ac to run this check.
configure.ac
m4/
check_ssl.m4

View File

@ -24,8 +24,11 @@
// We use our own data structures (R_RSA_PUBLIC_KEY and R_RSA_PRIVATE_KEY)
// to store keys in either case.
// Only define these here if they haven't been defined elsewhere
#if !(defined(USE_OPENSSL) || defined(USE_RSAEURO))
#define USE_OPENSSL 1
//#define USE_RSAEURO 1
#endif
#include <cstdio>