From 2e895795b6e5ae85ed969b3e6686a78b9aefca44 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 9 Jan 2008 07:12:04 +0000 Subject: [PATCH] Force '-DNDEBUG'. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 51a3a913c..0b8374273 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,8 @@ _extra_compile_args = [ "-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1", "-DHAVE_SSL=1", - "-O2" + "-O2", + "-DNDEBUG" ] removals = ["-Wstrict-prototypes"]