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 christian.heimes
Recipients christian.heimes, cstratak, vstinner
Date 2018-02-05.12:33:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517834035.44.0.467229070634.issue32647@psf.upfronthosting.co.za>
In-reply-to
Content
configure.ac already contains the check:

   AC_CHECK_LIB(dl, dlopen)

It should be enough to add:

    if sysconfig.get_config_var('HAVE_LIBDL'):
        libs.append('dl')

to ctypes.
History
Date User Action Args
2018-02-05 12:33:55christian.heimessetrecipients: + christian.heimes, vstinner, cstratak
2018-02-05 12:33:55christian.heimessetmessageid: <1517834035.44.0.467229070634.issue32647@psf.upfronthosting.co.za>
2018-02-05 12:33:55christian.heimeslinkissue32647 messages
2018-02-05 12:33:55christian.heimescreate