diff options
author | Yichen Yan <oraluben@outlook.com> | 2024-04-23 07:56:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 07:56:00 (GMT) |
commit | e17cd1fbfd4f20824c686c7242423e84ba6a6cc5 (patch) | |
tree | eddfebc23f756a3b4d91e1b16c1c933e43ee9863 /configure.ac | |
parent | 456c29cf85847c67dfc0fa36d6fe6168569b46fe (diff) | |
download | cpython-e17cd1fbfd4f20824c686c7242423e84ba6a6cc5.zip cpython-e17cd1fbfd4f20824c686c7242423e84ba6a6cc5.tar.gz cpython-e17cd1fbfd4f20824c686c7242423e84ba6a6cc5.tar.bz2 |
gh-116984: Install mimalloc headers (#116985)
- Install mimalloc header only when enabled
- Rename WITH_MIMALLOC to INSTALL_MIMALLOC
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7723c80..7877ef4 100644 --- a/configure.ac +++ b/configure.ac @@ -4779,7 +4779,7 @@ elif test "$disable_gil" = "yes"; then fi AC_MSG_RESULT([$with_mimalloc]) -AC_SUBST([WITH_MIMALLOC]) +AC_SUBST([INSTALL_MIMALLOC], [$with_mimalloc]) AC_SUBST([MIMALLOC_HEADERS]) # Check for Python-specific malloc support |