aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2023-04-01 03:43:10 +0000
committerCy Schubert <cy@FreeBSD.org>2023-04-09 03:53:05 +0000
commit6fb835f3b6eab2d7906d33c3d177ac327f033901 (patch)
treeb63df7ad69477a8356eb4df1a15b7f759e19e9a1
parent4a99b854723bb28817b01eb7bf485a072a02ae5a (diff)
downloadsrc-6fb835f3b6eab2d7906d33c3d177ac327f033901.tar.gz
src-6fb835f3b6eab2d7906d33c3d177ac327f033901.zip
heimdal: Do not build a redundant source file
Heimdal's lib/hdb/db3.c is only built if DB3 is enabled, i.e. #if HAVE_DB3. FreeBSD's bdb is DB1. Therefore the entire db3.c file is #ifdef'd out. Let's avoid building a file that results in a useless object file. (cherry picked from commit 7ee18f5aada07f03433504545c1b7bed91cbda82)
-rw-r--r--kerberos5/lib/libhdb/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/kerberos5/lib/libhdb/Makefile b/kerberos5/lib/libhdb/Makefile
index 29ba7d2c58a2..93b27afcff2b 100644
--- a/kerberos5/lib/libhdb/Makefile
+++ b/kerberos5/lib/libhdb/Makefile
@@ -39,7 +39,6 @@ INCS= hdb-protos.h \
SRCS= common.c \
db.c \
- db3.c \
dbinfo.c \
ext.c \
hdb-ldap.c \