summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-03-20 19:35:56 +0100
committermathieui <mathieui@mathieui.net>2014-03-20 19:43:51 +0100
commit9a09aa8e09db5f6a44bbf8c0932757a1502db6fd (patch)
tree9d41727bddff8d109dc81da977388a5bfe9378ed
parent1dc423505b7c8e076ff91dfb7814d0da2164ed45 (diff)
downloadpoezio-9a09aa8e09db5f6a44bbf8c0932757a1502db6fd.tar.gz
poezio-9a09aa8e09db5f6a44bbf8c0932757a1502db6fd.tar.bz2
poezio-9a09aa8e09db5f6a44bbf8c0932757a1502db6fd.tar.xz
poezio-9a09aa8e09db5f6a44bbf8c0932757a1502db6fd.zip
Remove C89 warnings on build
(no idea why this is appearing now)
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 930e44d9..9e8ee2ad 100644
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@ from distutils.core import setup, Extension
import os, sys
module_poopt = Extension('poezio.poopt',
+ extra_compile_args=['-Wno-declaration-after-statement'],
sources = ['src/pooptmodule.c'])