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, erlendaasland, miss-islington
Date 2021-11-22.14:42:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1637592162.11.0.338797057895.issue45847@roundup.psfhosted.org>
In-reply-to
Content
_crypt is powered by pkgconf libcrypt or libxcrypt on Linux. On my system  and on Debian, libcrypt.pc is a symlink to libxcrypt.pc. Linux has crypt() and/or crypt_r() in <crypt.h>. On FreeBSD crypt_r() is in <unistd.h> and libc.

_uuid needs similar special handling. It's <uuid/uuid.h>, -luuid, and uuid.pc on Linux. On BSD it's <uuid.h> and symbols are in libc.

_readline uses either libreadline (readline.pc) or libeditline (libeditline.pc). It also needs special handling of tinfo and termcap on some platforms.

ndbm, gdbm, and libdb have no pkgconf providers. My PR GH-29534 has some code to detect them in configure.
History
Date User Action Args
2021-11-22 14:42:42christian.heimessetrecipients: + christian.heimes, miss-islington, erlendaasland
2021-11-22 14:42:42christian.heimessetmessageid: <1637592162.11.0.338797057895.issue45847@roundup.psfhosted.org>
2021-11-22 14:42:42christian.heimeslinkissue45847 messages
2021-11-22 14:42:41christian.heimescreate