if test c${cross_compiling} = cno; then
BAKCFLAGS="$CFLAGS"
if test -n "$ssldir"; then
- CFLAGS="$CFLAGS -Wl,-rpath=$ssldir/lib"
+ CFLAGS="$CFLAGS -Wl,-rpath,$ssldir/lib"
fi
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
if(!EVP_DigestInit_ex(ctx, md, NULL)) return 3;
if(!EVP_DigestUpdate(ctx, str, 10)) return 4;
if(!EVP_DigestFinal_ex(ctx, digest, NULL)) return 5;
- if(1) {
- int i;
+ /* uncomment to see the hash calculated.
+ {int i;
for(i=0; i<32; i++)
printf(" %2.2x", (int)digest[i]);
- printf("\n");
- }
+ printf("\n");}
+ */
if(memcmp(digest, check, sizeof(check)) != 0)
return 6;
return 0;
if test c${cross_compiling} = cno; then
BAKCFLAGS="$CFLAGS"
if test -n "$ssldir"; then
- CFLAGS="$CFLAGS -Wl,-rpath=$ssldir/lib"
+ CFLAGS="$CFLAGS -Wl,-rpath,$ssldir/lib"
fi
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#include <string.h>
if(!EVP_DigestInit_ex(ctx, md, NULL)) return 3;
if(!EVP_DigestUpdate(ctx, str, 10)) return 4;
if(!EVP_DigestFinal_ex(ctx, digest, NULL)) return 5;
- if(1) {
- int i;
+ /* uncomment to see the hash calculated.
+ {int i;
for(i=0; i<32; i++)
printf(" %2.2x", (int)digest[i]);
- printf("\n");
- }
+ printf("\n");}
+ */
if(memcmp(digest, check, sizeof(check)) != 0)
return 6;
return 0;
19 October 2011: Wouter
- fix unbound-anchor for broken strptime on OSX lion, detected
in configure.
+ - Detect if GOST really works, openssl1.0 on OSX fails.
17 October 2011: Wouter
- better documentation for inform_super (Thanks Yang Zhe).