0027-Add-an-option-to-disable-the-ssl-module.patch 972 B

1234567891011121314151617181920212223242526272829303132
  1. From a0e56b96c3bfb04a5c8ecc0987cdd294d8ce116b Mon Sep 17 00:00:00 2001
  2. From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  3. Date: Tue, 7 Mar 2017 22:30:22 +0100
  4. Subject: [PATCH] Add an option to disable the ssl module
  5. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  6. [Peter: update for 2.7.16]
  7. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
  8. ---
  9. configure.ac | 6 ++++++
  10. 1 file changed, 6 insertions(+)
  11. diff --git a/configure.ac b/configure.ac
  12. index 361e8c120e..8fe47d8c37 100644
  13. --- a/configure.ac
  14. +++ b/configure.ac
  15. @@ -2863,6 +2863,12 @@ AC_ARG_ENABLE(nis,
  16. DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
  17. fi])
  18. +AC_ARG_ENABLE(ssl,
  19. + AS_HELP_STRING([--disable-ssl], [disable SSL]),
  20. + [ if test "$enableval" = "no"; then
  21. + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _ssl"
  22. + fi])
  23. +
  24. AC_ARG_ENABLE(dbm,
  25. AS_HELP_STRING([--disable-dbm], [disable DBM]),
  26. [ if test "$enableval" = "no"; then
  27. --
  28. 2.11.0