Module Name:    src
Committed By:   rillig
Date:           Tue Sep 12 22:11:08 UTC 2023

Modified Files:
        src/external/public-domain/sqlite/lib: Makefile

Log Message:
sqlite: re-enable lint

Since <assert.h> 1.26, the 'assert' macro expands to the same text,
whether in lint mode or not.

Defining the NDEBUG macro was redundant, as it is conditionally defined
depending on SQLITE_DEBUG.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/external/public-domain/sqlite/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/public-domain/sqlite/lib/Makefile
diff -u src/external/public-domain/sqlite/lib/Makefile:1.18 src/external/public-domain/sqlite/lib/Makefile:1.19
--- src/external/public-domain/sqlite/lib/Makefile:1.18	Mon Sep  4 17:05:25 2023
+++ src/external/public-domain/sqlite/lib/Makefile	Tue Sep 12 22:11:08 2023
@@ -1,14 +1,11 @@
-# $NetBSD: Makefile,v 1.18 2023/09/04 17:05:25 christos Exp $
+# $NetBSD: Makefile,v 1.19 2023/09/12 22:11:08 rillig Exp $
 
-NOLINT=yes	# XXX: broken
 LIB=		sqlite3
 INCS=		sqlite3.h sqlite3ext.h
 INCSDIR=	/usr/include
 
 SRCS=		sqlite3.c
 
-CFLAGS+=	-DNDEBUG
-
 LDADD+=		-lm
 DPADD+=		${LIBM}
 

Reply via email to