gl-openssl.m4 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # gl-openssl.m4 serial 3
  2. dnl Copyright (C) 2013-2015 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_SET_CRYPTO_CHECK_DEFAULT],
  7. [
  8. m4_define([gl_CRYPTO_CHECK_DEFAULT], [$1])
  9. ])
  10. gl_SET_CRYPTO_CHECK_DEFAULT([no])
  11. AC_DEFUN([gl_CRYPTO_CHECK],
  12. [
  13. dnl gnulib users set this before gl_INIT with gl_SET_CRYPTO_CHECK_DEFAULT()
  14. m4_divert_once([DEFAULTS], [with_openssl_default='gl_CRYPTO_CHECK_DEFAULT'])
  15. dnl Only clear once, so crypto routines can be checked for individually
  16. m4_divert_once([DEFAULTS], [LIB_CRYPTO=])
  17. AC_ARG_WITH([openssl],
  18. [AS_HELP_STRING([--with-openssl],
  19. [use libcrypto hash routines. Valid ARGs are:
  20. 'yes', 'no', 'auto' => use if available,
  21. 'optional' => use if available and warn if not available;
  22. default is ']gl_CRYPTO_CHECK_DEFAULT['])],
  23. [],
  24. [with_openssl=$with_openssl_default])
  25. if test "x$1" = xMD5; then
  26. ALG_header=md5.h
  27. else
  28. ALG_header=sha.h
  29. fi
  30. AC_SUBST([LIB_CRYPTO])
  31. if test "x$with_openssl" != xno; then
  32. AC_CHECK_LIB([crypto], [$1],
  33. [AC_CHECK_HEADERS([openssl/$ALG_header],
  34. [LIB_CRYPTO=-lcrypto
  35. AC_DEFINE([HAVE_OPENSSL_$1], [1],
  36. [Define to 1 if libcrypto is used for $1.])])])
  37. if test "x$LIB_CRYPTO" = x; then
  38. if test "x$with_openssl" = xyes; then
  39. AC_MSG_ERROR([openssl development library not found for $1])
  40. elif test "x$with_openssl" = xoptional; then
  41. AC_MSG_WARN([openssl development library not found for $1])
  42. fi
  43. fi
  44. fi
  45. ])