From 9ad9ac805953e653a57668290e587005e7504b8b Mon Sep 17 00:00:00 2001 From: Etienne Millon Date: Mon, 17 Jul 2023 13:40:44 +0200 Subject: [PATCH] ctypes: fix compatibility with 0.21.0 In ctypes < 0.21.0, the `ctypes` and `ctypes.stubs` libraries were installed in the same directory, so depending on one would make the other one visible. ctypes 0.21.0 installs them in different directories so this makes it an error. memcpy actually uses `ctypes.stubs` so it should depend on it. --- lib/_tags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_tags b/lib/_tags index 941653d..f742c3b 100644 --- a/lib/_tags +++ b/lib/_tags @@ -1,3 +1,3 @@ -true: package(ctypes) +true: package(ctypes.stubs) : use_ctypes <*.{cma,cmxa}>: use_memcpy_stubs