This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: improving distutils swig support (2)
Type: Stage:
Components: Distutils Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: anthonybaxter Nosy List: anthonybaxter, larsimmisch
Priority: release blocker Keywords:

Created on 2004-10-13 22:16 by larsimmisch, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
swig2.patch larsimmisch, 2004-10-13 22:16 distutils patch for better SWIG support
Messages (2)
msg22681 - (view) Author: Lars Immisch (larsimmisch) Date: 2004-10-13 22:16
This patch further improves SWIG support in distutils.

With this patch, both these idioms will work:

setup (name = "aculab",
       ext_modules = [Extension("._aculab, ['acu.i'],
                      swig_opts=['-modern'
'-I../include']])

and:

python setup.py build_ext --swig-opts="-modern
-I../include"

This patch extends and includes bug 1046404 from
Anthony Baxter:

http://sourceforge.net/tracker/index.php?func=detail&aid=1046404&group_id=5470&atid=105470
msg22682 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2004-10-14 10:05
Logged In: YES 
user_id=29957

Applied. Thanks for the patch!
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41015
2004-10-13 22:16:31larsimmischcreate