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.

Author atyutyunnik
Recipients
Date 2007-05-18.23:41:19
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I am using on SWIG 1.3.29+ with Python 2.5 on HP-UX 11.23, Itanium 64bit. It had failed to work (unresolved symbols) until I fixed code this way:
//	flags = BIND_FIRST | BIND_DEFERRED;
	flags = BIND_DEFERRED|BIND_VERBOSE;

instead of:
	flags = BIND_FIRST | BIND_DEFERRED;

Can anyone please fix it?
History
Date User Action Args
2007-08-23 14:40:02adminlinkissue1487481 messages
2007-08-23 14:40:02admincreate