ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.22 by pcg, Sat Jan 17 15:43:02 2004 UTC vs.
Revision 1.24 by pcg, Thu Jan 29 19:22:05 2004 UTC

1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2 2
3AC_PREREQ(2.57) 3AC_PREREQ(2.57)
4AC_INIT(src/vped.C) 4AC_INIT(src/vped.C)
5AC_CANONICAL_TARGET 5AC_CANONICAL_TARGET
6AM_INIT_AUTOMAKE(vpe, 1.4) 6AM_INIT_AUTOMAKE(vpe, 1.5)
7AM_CONFIG_HEADER(config.h) 7AM_CONFIG_HEADER(config.h)
8AM_MAINTAINER_MODE 8AM_MAINTAINER_MODE
9 9
10AH_TOP([ 10AH_TOP([
11#ifndef CONFIG_H__ 11#ifndef CONFIG_H__
351echo "*** Digest used: $DIGEST" 351echo "*** Digest used: $DIGEST"
352echo "*** HMAC length: $HMAC" 352echo "*** HMAC length: $HMAC"
353echo "*** RAND used: $RAND" 353echo "*** RAND used: $RAND"
354echo "*** Max. MTU: $MTU" 354echo "*** Max. MTU: $MTU"
355echo "*** Compression: $COMPRESS" 355echo "*** Compression: $COMPRESS"
356echo "***"
357 356
358if test "x$DIGEST" = xmd4; then 357if test "x$DIGEST" = xmd4; then
359echo "*** WARNING" 358echo "***"
360echo "*** The digest you have chosen ($DIGEST) is known to be insecure" 359echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
361echo "***"
362fi 360fi
361
362if test "$HMAC" -lt 12; then
363echo "***"
364echo "*** WARNING: The hmac length you have chosen ($HMAC) might be insecure"
365fi
366
367if test "$RAND" -lt 8; then
368echo "***"
369echo "*** WARNING: The random prefix you have chosen ($RAND) might be insecure"
370fi
371
372echo "***"
363 373
364echo 374echo
365 375
366]) 376])
367 377

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines