summaryrefslogtreecommitdiff
path: root/Ports/python3
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-04-21 23:20:04 +0200
committerLinus Groh <mail@linusgroh.de>2021-04-21 23:35:35 +0200
commitb06f68c3d276490b18b8d70c6a8c689848eacbca (patch)
tree26ae89fc783cc49fee200907270425914602989f /Ports/python3
parente117756d9f344c4b98b3dda8d5214b5cec8d73a7 (diff)
downloadserenity-b06f68c3d276490b18b8d70c6a8c689848eacbca.zip
Ports: Fix Python _crypt module linkage error
we need to link against LibCrypt and subsubsequently LibCore (which LibCrypt does not link against itself due to a circular dependency issue). Not sure why this broke, it worked when I last updated the port.
Diffstat (limited to 'Ports/python3')
-rw-r--r--Ports/python3/Setup.local2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/python3/Setup.local b/Ports/python3/Setup.local
index 124069254b..22b3ef53cf 100644
--- a/Ports/python3/Setup.local
+++ b/Ports/python3/Setup.local
@@ -27,7 +27,7 @@ _codecs_jp cjkcodecs/_codecs_jp.c
_codecs_kr cjkcodecs/_codecs_kr.c
_codecs_tw cjkcodecs/_codecs_tw.c
_contextvars _contextvarsmodule.c
-_crypt _cryptmodule.c
+_crypt _cryptmodule.c -lcrypt -lcore
_csv _csv.c
_ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/cfield.c _ctypes/malloc_closure.c _ctypes/stgdict.c -I$(SERENITY_BUILD_DIR)/Root/usr/local/include $(SERENITY_BUILD_DIR)/Root/usr/local/lib/libffi.a
_datetime _datetimemodule.c