From: Margaret Wasserman Date: Wed, 19 Dec 2012 01:12:22 +0000 (-0500) Subject: Added OpenSSL crypto library and checks for dh.h and bn.h includes to build X-Git-Tag: 1.0~80 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=commitdiff_plain;h=d4eea0b00d4eed3c065c7a239e0e9936d67b0c86 Added OpenSSL crypto library and checks for dh.h and bn.h includes to build --- diff --git a/configure.ac b/configure.ac index 7338b41..ea2e662 100644 --- a/configure.ac +++ b/configure.ac @@ -14,6 +14,7 @@ AC_PROG_RANLIB AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context]) AC_CHECK_LIB([com_err], [error_message]) AC_CHECK_LIB([jansson], [json_object]) -AC_CHECK_HEADERS(gssapi.h gssapi_ext.h jansson.h) +AC_CHECK_LIB([crypto], [DH_new]) +AC_CHECK_HEADERS(gssapi.h gssapi_ext.h jansson.h openssl/dh.h openssl/bn.h) AC_CONFIG_FILES([Makefile gsscon/Makefile]) AC_OUTPUT