mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
TDB is a Trivial Database. In concept, it is very much like GDBM, and BSD's DB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. TDB is also extremely small. This port is need for the Samba 4.20. Repo copy of databases/tdb, I will commit update to 1.4.10 in next commit. PR: 280533 Sponsored by: Klara, Inc. Approved by: 0mp (mentor) Approved by: samba (0mp, kiwi)
11 lines
450 B
Text
11 lines
450 B
Text
--- lib/replace/wscript.orig 2019-02-26 06:44:21 UTC
|
|
+++ lib/replace/wscript
|
|
@@ -119,7 +119,7 @@ def configure(conf):
|
|
conf.CHECK_HEADERS('sys/atomic.h stdatomic.h')
|
|
conf.CHECK_HEADERS('libgen.h')
|
|
|
|
- if conf.CHECK_CFLAGS('-Wno-format-truncation'):
|
|
+ if conf.CHECK_CFLAGS(['-Wno-format-truncation'] + conf.env.WERROR_CFLAGS):
|
|
conf.define('HAVE_WNO_FORMAT_TRUNCATION', '1')
|
|
|
|
if conf.CHECK_CFLAGS('-Wno-unused-function'):
|