From: Eugene Crosser Date: Wed, 15 Aug 2018 15:55:24 +0000 (+0200) Subject: configure: add option "--disable-openssl" X-Git-Url: http://www.average.org/gitweb/?p=pam_pcsc_cr.git;a=commitdiff_plain;h=14c33fc7940be40d5da2b527474e59bfbabf5f71;hp=14c33fc7940be40d5da2b527474e59bfbabf5f71 configure: add option "--disable-openssl" As of openssl 1.1.0, HMAC_CTX is an opaque structure and as such cannot be allocated in the stack. One has to use HMAC_CTX_new() that ultimately uses OPENSSL_zmalloc(), so the user has to free it afterwards. Not something I want to do. What they where thinking?! Richard Levitte, I am looking at you! Signed-off-by: Eugene Crosser ---