From: Erik M. <er...@us...> - 2002-01-06 18:59:43
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv26911 Modified Files: acconfig.h configure.in Log Message: MD5 support by Chris Hoover Index: acconfig.h =================================================================== RCS file: /cvsroot/blob/blob/acconfig.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- acconfig.h 2001/12/27 18:27:37 1.10 +++ acconfig.h 2002/01/06 18:59:40 1.11 @@ -98,6 +98,9 @@ /* Define if LCD support is wanted */ #undef CONFIG_LCD_SUPPORT +/* Define if MD5 support is wanted */ +#undef CONFIG_MD5_SUPPORT + @BOTTOM@ #endif Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- configure.in 2002/01/03 16:07:17 1.32 +++ configure.in 2002/01/06 18:59:40 1.33 @@ -292,6 +292,11 @@ [lcd_flag=$enable_lcd], [lcd_flag=no]) +AC_ARG_ENABLE(md5, +[ --enable-md5 Enable md5 support ], +[md5_flag=$enable_md5], +[md5_flag=no]) + dnl Check if the user wants *all* features AC_ARG_ENABLE(all-features, @@ -304,6 +309,7 @@ chkmem_flag=yes debug_flag=yes lcd_flag=yes + md5_flag=yes fi @@ -352,6 +358,11 @@ AC_SUBST(LCD) +dnl Check wether or not MD5 support is wanted +if test "x$md5_flag" = "xyes" ; then + AC_DEFINE(CONFIG_MD5_SUPPORT) +fi + dnl Check wether or not additional platform source code dnl for is needed @@ -444,5 +455,6 @@ echo "Memory test support ${chkmem_flag}" echo "Debugging commands support ${debug_flag}" echo "LCD support ${lcd_flag}" +echo "MD5 support ${md5_flag}" echo "Run-time debug information ${blob_debug_flag}" echo "" |