summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2017-03-15 13:33:09 +0100
committerGuillem Jover <guillem@debian.org>2018-03-26 15:30:18 +0200
commit9f7e58acdf28043bce2dfaf24ba27bb878418658 (patch)
treef5aabf9b868cb158cf380af4ab065fc2cdcf402b /m4
parent9622251478262d26ab6e01aa865417370a533069 (diff)
downloaddpkg-9f7e58acdf28043bce2dfaf24ba27bb878418658.tar.gz
Use internerr() or BUG() instead of assert()
The problem with assert() is that it does not print the contents of the variables. It also can be disabled on NDEBUG. But we always want these consistency checks no matter what, and they are not performance sensitive anyway. Enable -Wno-nonnull-compare so that we can keep doing run-time non-NULL checks in functions, instead of just compile-time checks.
Diffstat (limited to 'm4')
-rw-r--r--m4/dpkg-compiler.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/m4/dpkg-compiler.m4 b/m4/dpkg-compiler.m4
index a2e68e372..a6192f63a 100644
--- a/m4/dpkg-compiler.m4
+++ b/m4/dpkg-compiler.m4
@@ -56,6 +56,7 @@ AC_DEFUN([DPKG_CHECK_COMPILER_WARNINGS], [
DPKG_CHECK_COMPILER_FLAG([-Wmissing-declarations])
DPKG_CHECK_COMPILER_FLAG([-Wmissing-format-attribute])
DPKG_CHECK_COMPILER_FLAG([-Wno-missing-field-initializers])
+ DPKG_CHECK_COMPILER_FLAG([-Wno-nonnull-compare])
DPKG_CHECK_COMPILER_FLAG([-Wno-tautological-constant-out-of-range-compare])
DPKG_CHECK_COMPILER_FLAG([-Wno-unused-parameter])
DPKG_CHECK_COMPILER_FLAG([-Wnull-dereference])