diff options
author | Christian Heimes <christian@python.org> | 2021-11-20 15:43:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 15:43:10 (GMT) |
commit | f36c69a26ee880acf62a5ae8c5da49312e84c66d (patch) | |
tree | 2c23c4d9740a2fab82d14aa801fcb02bbf080073 /Makefile.pre.in | |
parent | fdcc46d9554094994f78bedf6dc9220e5d5ee668 (diff) | |
download | cpython-f36c69a26ee880acf62a5ae8c5da49312e84c66d.zip cpython-f36c69a26ee880acf62a5ae8c5da49312e84c66d.tar.gz cpython-f36c69a26ee880acf62a5ae8c5da49312e84c66d.tar.bz2 |
bpo-45847: Port test modules to PY_STDLIB_MOD (GH-29660)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 312e524..11ffdaa 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -211,11 +211,13 @@ OPENSSL_LIBS=@OPENSSL_LIBS@ OPENSSL_LDFLAGS=@OPENSSL_LDFLAGS@ OPENSSL_RPATH=@OPENSSL_RPATH@ -# Module compiler and linker flags -# yes: module is available -# missing: build dependency is missing -# disabled: module is disabled -# n/a: module is not available on the current platform +# Module state, compiler flags and linker flags +# Empty CFLAGS and LDFLAGS are omitted. +# states: +# * yes: module is available +# * missing: build dependency is missing +# * disabled: module is disabled +# * n/a: module is not available on the current platform # MODULE_EGG=yes # yes, missing, disabled, n/a # MODULE_EGG_CFLAGS= # MODULE_EGG_LDFLAGS= |