wok-current annotate python/stuff/python_enablessl.patch @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (2 months ago)
parents
children
rev   line source
shann@25629 1 --- a/Modules/Setup.dist
shann@25629 2 +++ b/Modules/Setup.dist
shann@25629 3 @@ -215,10 +215,10 @@
shann@25629 4
shann@25629 5 # Socket module helper for SSL support; you must comment out the other
shann@25629 6 # socket line above, and possibly edit the SSL variable:
shann@25629 7 -#SSL=/usr/local/ssl
shann@25629 8 -#_ssl _ssl.c \
shann@25629 9 -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
shann@25629 10 -# -L$(SSL)/lib -lssl -lcrypto
shann@25629 11 +SSL=/usr
shann@25629 12 +_ssl _ssl.c \
shann@25629 13 + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
shann@25629 14 + -L$(SSL)/lib -lssl -lcrypto
shann@25629 15
shann@25629 16 # The crypt module is now disabled by default because it breaks builds
shann@25629 17 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).