31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From fc0169eb03c893d63dc44f2ada954d42e0e759ed Mon Sep 17 00:00:00 2001
|
|
From: Panu Matilainen <pmatilai@redhat.com>
|
|
Date: Mon, 23 Mar 2020 11:22:31 +0200
|
|
Subject: [PATCH] Deprecate Berkeley DB database backend
|
|
|
|
Berkeley DB 5.x is dead upstream ever since the license change some
|
|
seven years ago. Mark as deprecated for later removal now that we're
|
|
starting to have viable alternatives.
|
|
|
|
URL:https://github.com/rpm-software-management/rpm/commit/fc0169eb03c893d63dc44f2ada954d42e0e759ed
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index d5ce5ef..bdfe2c6 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -533,7 +533,7 @@ AM_CONDITIONAL(HAVE_LIBDW_STRTAB,[test "$HAVE_LIBDW_STRTAB" = yes])
|
|
#=================
|
|
# Check for BDB support
|
|
AC_ARG_ENABLE([bdb],
|
|
- [AS_HELP_STRING([--enable-bdb=@<:@yes/no/auto@:>@],
|
|
+ [AS_HELP_STRING([--enable-bdb=@<:@yes/no/auto@:>@ (DEPRECATED)],
|
|
[build with Berkeley DB rpm database format support (default=yes)])],
|
|
[enable_bdb="$enableval"],
|
|
[enable_bdb=yes])
|
|
--
|
|
1.8.3.1
|
|
|