View | Details | Raw Unified | Return to bug 230301
Collapse All | Expand All

(-)Mk/Uses/bdb.mk (-11 / +2 lines)
Lines 18-28 Link Here
18
#			  version.
18
#			  version.
19
# WITH_BDB_HIGHEST
19
# WITH_BDB_HIGHEST
20
#			- Use the highest installed version of Berkeley DB.
20
#			- Use the highest installed version of Berkeley DB.
21
# WITH_BDB6_PERMITTED
22
# 			- If defined, BerkeleyDB 6 is added to the
23
# 			  default version set, making it eligible even
24
# 			  if not already installed. This is due to its
25
# 			  stricter Affero GNU Public License.
26
#
21
#
27
# These variables will then be filled in by this .mk file:
22
# These variables will then be filled in by this .mk file:
28
#
23
#
Lines 59-70 Link Here
59
54
60
_BDB_DEFAULT_save:=${BDB_DEFAULT}
55
_BDB_DEFAULT_save:=${BDB_DEFAULT}
61
56
62
_DB_PORTS=		48 5 6
57
_DB_PORTS=	48 5 6
63
_DB_DEFAULTS=	48 5	# does not include 6 due to different licensing
58
_DB_DEFAULTS=	48 5 6
64
#	but user can re-add it through WITH_BDB6_PERMITTED
65
. if defined(WITH_BDB6_PERMITTED)
66
_DB_DEFAULTS+=	6
67
. endif
68
59
69
# Dependency lines for different db versions
60
# Dependency lines for different db versions
70
db48_DEPENDS=	libdb-4.8.so:databases/db48
61
db48_DEPENDS=	libdb-4.8.so:databases/db48

Return to bug 230301