May 11, 2026
5:59 p.m.
Brendan Shanks (@bshanks) commented about dlls/winsqlite3/make_sqlite.py:
+#!/usr/bin/env python + +#Prerequisites: +# - Python3; +# - Python modules: wget, zipfile, clang (tested with libclang-21); +# - "clang -target x86_64-pc-windows-gnu" should be functional; +# - WINE_INCLUDE_PATH below should be set to Wine installed headers location. +# + +from pathlib import Path +import wget I think it would be preferable to use `urllib.request` like `dlls/winevulkan/make_vulkan` does, since that's bundled with Python
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10772#note_139439