diff options
| author | Victor Stinner <vstinner@python.org> | 2020-03-10 09:53:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-10 09:53:09 +0100 |
| commit | 8510f430781118d9b603c3a2f06945d6ebc5fe42 (patch) | |
| tree | 511cb42b478dd031ff36297a5e0c78b27a4e77a2 /PC/pyconfig.h | |
| parent | 700cb587303461d5a96456c56902cfdd8ad50e2d (diff) | |
| download | cpython-git-8510f430781118d9b603c3a2f06945d6ebc5fe42.tar.gz | |
bpo-1294959: Add sys.platlibdir attribute (GH-18381)
Add --with-platlibdir option to the configure script: name of the
platform-specific library directory, stored in the new sys.platlitdir
attribute. It is used to build the path of platform-specific dynamic
libraries and the path of the standard library.
It is equal to "lib" on most platforms. On Fedora and SuSE, it is
equal to "lib64" on 64-bit systems.
Co-Authored-By: Jan Matějek <jmatejek@suse.com>
Co-Authored-By: Matěj Cepl <mcepl@cepl.eu>
Co-Authored-By: Charalampos Stratakis <cstratak@redhat.com>
Diffstat (limited to 'PC/pyconfig.h')
| -rw-r--r-- | PC/pyconfig.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 0aa4f95bf8..02216b5068 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -683,4 +683,6 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if libssl has X509_VERIFY_PARAM_set1_host and related function */ #define HAVE_X509_VERIFY_PARAM_SET1_HOST 1 +#define PLATLIBDIR "lib" + #endif /* !Py_CONFIG_H */ |
