Ports/python: Explicitly disable use of libintl

python would otherwise fail to build if gettext is built first,
as its configure script detects the presence of libintl.h. However,
building with libintl support enabled fails to link.
This commit is contained in:
Sönke Holz 2024-10-02 14:46:32 +02:00 committed by Tim Schumacher
parent b71b5637b5
commit 591f0feb66

View file

@ -35,6 +35,7 @@ configopts=(
'--without-ensurepip'
'ac_cv_file__dev_ptmx=no'
'ac_cv_file__dev_ptc=no'
'ac_cv_header_libintl_h=no'
)
export BLDSHARED="${CC} -shared"