diff options
| author | 2012-03-21 14:52:55 +0100 | |
|---|---|---|
| committer | 2012-03-21 14:52:55 +0100 | |
| commit | 103694072082ee7d55b134d7dad3084200e38871 (patch) | |
| tree | 0cd345849d4ea746a34c04bf08a5d56ab352815e /cython | |
| parent | a81bc7e8c36219270e2218861ffa0db7c1d8d77b (diff) | |
| download | libimobiledevice-103694072082ee7d55b134d7dad3084200e38871.tar.gz libimobiledevice-103694072082ee7d55b134d7dad3084200e38871.tar.bz2 | |
cython: Silence a couple of warnings when generating bindings with Cython
The Cython team apparently does not care a lot about polishing warnings out,
thus we have to supress them here or it looks really ugly.
Diffstat (limited to 'cython')
| -rw-r--r-- | cython/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cython/Makefile.am b/cython/Makefile.am index 16b464e..ae10b06 100644 --- a/cython/Makefile.am +++ b/cython/Makefile.am | |||
| @@ -30,7 +30,7 @@ EXTRA_DIST = imobiledevice.pyx imobiledevice.pxd $(PXIINCLUDES) | |||
| 30 | imobiledevicedir = $(pyexecdir) | 30 | imobiledevicedir = $(pyexecdir) |
| 31 | imobiledevice_LTLIBRARIES = imobiledevice.la | 31 | imobiledevice_LTLIBRARIES = imobiledevice.la |
| 32 | imobiledevice_la_SOURCES = imobiledevice.pyx | 32 | imobiledevice_la_SOURCES = imobiledevice.pyx |
| 33 | imobiledevice_la_CFLAGS = -I../include -I../src $(PYTHON_CPPFLAGS) $(AM_CFLAGS) | 33 | imobiledevice_la_CFLAGS = -I../include -I../src $(PYTHON_CPPFLAGS) $(AM_CFLAGS) -Wno-shadow -Wno-redundant-decls -Wno-switch-default -Wno-strict-aliasing -Wno-implicit-function-declaration |
| 34 | imobiledevice_la_LDFLAGS = -module -avoid-version -L$(libdir) $(PYTHON_LDFLAGS) $(AM_LDFLAGS) | 34 | imobiledevice_la_LDFLAGS = -module -avoid-version -L$(libdir) $(PYTHON_LDFLAGS) $(AM_LDFLAGS) |
| 35 | imobiledevice_la_LIBADD = ../src/libimobiledevice.la | 35 | imobiledevice_la_LIBADD = ../src/libimobiledevice.la |
| 36 | 36 | ||
