mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-11 22:54:17 +00:00
080bcf1783
Python bindings will be re-build with its distutils script to get private module built against all supported python versions. Let's fix setup.py to use the defined CFLAGS.
19 lines
671 B
Python
19 lines
671 B
Python
#! /usr/bin/python
|
|
# $Id: setupmingw32.py,v 1.7 2012/03/05 04:54:00 nanard Exp $
|
|
# the MiniUPnP Project (c) 2007-2012 Thomas Bernard
|
|
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
|
#
|
|
# python script to build the miniupnpc module under windows (using mingw32)
|
|
#
|
|
from distutils.core import setup, Extension
|
|
from distutils import sysconfig
|
|
sysconfig.get_config_vars()["OPT"] = ''
|
|
sysconfig.get_config_vars()["CFLAGS"] = ''
|
|
setup(name="miniupnpc", version="1.6",
|
|
ext_modules=[
|
|
Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
|
|
libraries=["ws2_32", "iphlpapi"],
|
|
extra_objects=["libminiupnpc.a"])
|
|
])
|
|
|