diff options
author | mathieui <mathieui@mathieui.net> | 2014-03-20 19:35:56 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-03-20 19:43:51 +0100 |
commit | 9a09aa8e09db5f6a44bbf8c0932757a1502db6fd (patch) | |
tree | 9d41727bddff8d109dc81da977388a5bfe9378ed /setup.py | |
parent | 1dc423505b7c8e076ff91dfb7814d0da2164ed45 (diff) | |
download | poezio-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)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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']) |