From: Reuben Hawkins <reubenhwk@gmail.com>
To: git@vger.kernel.org
Cc: Reuben Hawkins <reubenhwk@gmail.com>
Subject: [PATCH 3/3] configure.ac,imap-send.c: check HMAC_CTX_cleanup
Date: Sun, 21 Dec 2014 10:53:36 -0800 [thread overview]
Message-ID: <1419188016-26134-3-git-send-email-reubenhwk@gmail.com> (raw)
In-Reply-To: <1419188016-26134-1-git-send-email-reubenhwk@gmail.com>
Older versions of OpenSSL have HMAC_cleanup, but not HMAC_CTX_cleanup.
This change checks for both, uses HMAC_CTX_cleanup on platforms which
have it, otherwise falls back to HMAC_cleanup.
This changes makes building GIT on older platforms less tedious.
---
Makefile | 6 ++++++
configure.ac | 13 +++++++++++++
imap-send.c | 6 ++++++
3 files changed, 25 insertions(+)
diff --git a/Makefile b/Makefile
index 7482a4d..a495d94 100644
--- a/Makefile
+++ b/Makefile
@@ -1059,6 +1059,12 @@ ifndef NO_OPENSSL
ifdef NEEDS_CRYPTO_WITH_SSL
OPENSSL_LIBSSL += -lcrypto
endif
+ ifdef HAVE_HMAC_CTX_CLEANUP
+ BASIC_CFLAGS += -DHAVE_HMAC_CTX_CLEANUP
+ endif
+ ifdef HAVE_HMAC_CLEANUP
+ BASIC_CFLAGS += -DHAVE_HMAC_CLEANUP
+ endif
else
BASIC_CFLAGS += -DNO_OPENSSL
BLK_SHA1 = 1
diff --git a/configure.ac b/configure.ac
index 3900044..b22788c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -899,6 +899,7 @@ GIT_CONF_SUBST([SNPRINTF_RETURNS_BOGUS])
## Checks for library functions.
## (in default C library and libraries checked by AC_CHECK_LIB)
AC_MSG_NOTICE([CHECKS for library functions])
+
#
# Define NO_LIBGEN_H if you don't have libgen.h.
AC_CHECK_HEADER([libgen.h],
@@ -932,6 +933,18 @@ AC_CHECK_LIB([iconv], [locale_charset],
[CHARSET_LIB=-lcharset])])
GIT_CONF_SUBST([CHARSET_LIB])
#
+# Define HAVE_HMAC_CTX_CLEANUP=Yes if we have the newer HMAC cleanup function
+AC_CHECK_LIB([crypto], [HMAC_CTX_cleanup],
+ [HAVE_HMAC_CTX_CLEANUP=Yes],
+ [], [])
+GIT_CONF_SUBST([HAVE_HMAC_CTX_CLEANUP])
+#
+# Define HAVE_HMAC_CLEANUP=Yes if we have the older HMAC cleanup function
+AC_CHECK_LIB([crypto], [HMAC_cleanup],
+ [HAVE_HMAC_CLEANUP=Yes],
+ [], [])
+GIT_CONF_SUBST([HAVE_HMAC_CLEANUP])
+#
# Define NO_CLOCK_GETTIME if you don't have clock_gettime.
GIT_CHECK_FUNC(clock_gettime,
[HAVE_CLOCK_GETTIME=Yes],
diff --git a/imap-send.c b/imap-send.c
index 70bcc7a..eec2378 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -861,7 +861,13 @@ static char *cram(const char *challenge_64, const char *user, const char *pass)
HMAC_Init(&hmac, (unsigned char *)pass, strlen(pass), EVP_md5());
HMAC_Update(&hmac, (unsigned char *)challenge, decoded_len);
HMAC_Final(&hmac, hash, NULL);
+#if defined(HAVE_HMAC_CTX_CLEANUP)
HMAC_CTX_cleanup(&hmac);
+#elif defined(HAVE_HMAC_CLEANUP)
+ HMAC_cleanup(&hmac);
+#else
+# error "no HMAC_cleanup function"
+#endif
hex[32] = 0;
for (i = 0; i < 16; i++) {
--
2.2.0.GIT
next prev parent reply other threads:[~2014-12-21 18:54 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-21 18:53 [PATCH 1/3] configure.ac: check tv_nsec field in struct stat Reuben Hawkins
2014-12-21 18:53 ` [PATCH 2/3] configure.ac,trace.c: check for CLOCK_MONOTONIC Reuben Hawkins
2014-12-21 20:54 ` Eric Sunshine
2014-12-22 4:12 ` brian m. carlson
2014-12-22 12:36 ` Reuben Hawkins
2014-12-21 18:53 ` Reuben Hawkins [this message]
2014-12-21 21:28 ` [PATCH 3/3] configure.ac,imap-send.c: check HMAC_CTX_cleanup Eric Sunshine
2015-01-07 20:23 ` v2 patches for fixes on RHEL3 Reuben Hawkins
2015-01-07 20:23 ` [PATCH 1/3] configure.ac: check tv_nsec field in struct stat Reuben Hawkins
2015-01-07 21:19 ` Eric Sunshine
2015-01-07 21:33 ` Reuben Hawkins
2015-01-07 21:57 ` Eric Sunshine
2015-01-07 22:19 ` Reuben Hawkins
2015-01-08 5:41 ` Eric Sunshine
2015-01-07 20:23 ` [PATCH 2/3] configure.ac: check for clock_gettime and CLOCK_MONOTONIC Reuben Hawkins
2015-01-07 21:37 ` Eric Sunshine
2015-01-07 22:31 ` Reuben Hawkins
2015-01-08 5:54 ` Eric Sunshine
2015-01-07 20:23 ` [PATCH 3/3] configure.ac: check for HMAC_CTX_cleanup Reuben Hawkins
2015-01-07 21:46 ` Eric Sunshine
2014-12-21 20:20 ` [PATCH 1/3] configure.ac: check tv_nsec field in struct stat Eric Sunshine
2014-12-21 21:47 ` Eric Sunshine
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1419188016-26134-3-git-send-email-reubenhwk@gmail.com \
--to=reubenhwk@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).