diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2023-03-31 20:43:10 -0700 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2023-04-01 19:18:05 -0700 |
| commit | 7ee18f5aada07f03433504545c1b7bed91cbda82 (patch) | |
| tree | 307fd497e38fdbfe2f552e1237bb2d54fa1ec66f /kerberos5 | |
| parent | 4913a24e7910edf5a3f52536b780d1b1d4bb73a4 (diff) | |
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.
MFC after: 1 week
Diffstat (limited to 'kerberos5')
| -rw-r--r-- | kerberos5/lib/libhdb/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kerberos5/lib/libhdb/Makefile b/kerberos5/lib/libhdb/Makefile index f39d54d6c2d7..26caf43e5429 100644 --- a/kerberos5/lib/libhdb/Makefile +++ b/kerberos5/lib/libhdb/Makefile @@ -43,7 +43,6 @@ INCS= hdb-protos.h \ SRCS= common.c \ db.c \ - db3.c \ dbinfo.c \ ext.c \ hdb-ldap.c \ |
