2
1

0025-Add-an-option-to-disable-the-berkeleydb-module.patch 814 B

123456789101112131415161718192021222324252627282930
  1. From 7ee16a7096ccf9001f30b9076f562229efb9bcf3 Mon Sep 17 00:00:00 2001
  2. From: Bernd Kuhls <bernd.kuhls@t-online.de>
  3. Date: Sat, 11 Apr 2020 22:01:40 +0200
  4. Subject: [PATCH] Add an option to disable the berkeleydb module
  5. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  6. ---
  7. configure.ac | 6 ++++++
  8. 1 file changed, 6 insertions(+)
  9. diff --git a/configure.ac b/configure.ac
  10. index da884ddf441..852cbaa6e4c 100644
  11. --- a/configure.ac
  12. +++ b/configure.ac
  13. @@ -4331,6 +4331,12 @@ if test "$UUID" = "no"; then
  14. DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _uuid"
  15. fi
  16. +AC_ARG_ENABLE(berkeleydb,
  17. + AS_HELP_STRING([--disable-berkeleydb], [disable berkeleydb]),
  18. + [ if test "$enableval" = "no"; then
  19. + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _dbm"
  20. + fi])
  21. +
  22. AC_SUBST(PYDOC)
  23. AC_ARG_ENABLE(pydoc,
  24. --
  25. 2.44.0