Minor changes to autoconf and Makefile to resolve issues #59 and #60.
diff --git a/configure.in b/configure.in
index e518936..14d7d29 100644
--- a/configure.in
+++ b/configure.in
@@ -142,8 +142,8 @@
   [AS_HELP_STRING([--enable-openssl],
 		  [compile in OpenSSL crypto engine])],
   [], enable_openssl=no)
+AC_MSG_RESULT($enable_openssl)
 if test "$enable_openssl" = "yes"; then
-   echo $enable_openssl
    LDFLAGS="$LDFLAGS $(pkg-config --libs openssl)";
    CFLAGS="$CFLAGS $(pkg-config --cflags openssl)";
 
@@ -160,7 +160,6 @@
    USE_OPENSSL=1
    AC_SUBST(USE_OPENSSL)
 else
-   echo $enable_openssl
    AES_ICM_OBJS="crypto/cipher/aes_icm.o crypto/cipher/aes.o crypto/cipher/aes_cbc.o"
    AC_MSG_CHECKING(which random device to use)
    if test "$enable_kernel_linux" = "yes"; then
@@ -182,7 +181,6 @@
 AC_SUBST(RNG_OBJS)
 AC_SUBST(RNG_EXTRA_OBJS)
 AC_SUBST(HMAC_OBJS)
-AC_MSG_RESULT($enable_openssl)
 
 AC_MSG_CHECKING(whether to use syslog for error reporting)
 AC_ARG_ENABLE(syslog,