Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support python modules on Windows for MinGW-w64. #742

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zebop117
Copy link

Function fcntl() isn't supported on Windows (even by MSVC), but luckily Unbound uses only F_GETFL which can be emulated using NtQueryInformationFile from ntdll.dll. Changes are in /libunbound/python/file_py3.i and /configure.ac.

Also, MinGW's (or rather MSYS') version of python-devel doesn't have a libpython*.a library returned in sysconfig.get_config_var('BLDLIBRARY'). Instead it has a *.dll.a file, e.g. for my python-devel 3.10.6-1 it's "libpython3.10.dll.a" instead of "libpython3.10.a" returned in "BLDLIBRARY" ("-L. -lpython3.10"). Changes are in /acx_python.m4. Making a copy named "libpython3.10.a" also works.
I'm attaching a full output of sysconfig.get_config_vars() in case someone knows or wants to try and find a better solution.
sysconfig.get_config_vars.txt. In this output, paths that begin with C:/Users/PP/ and C:/msys64/ (or /c/Users/PP and /c/msys64/) are mine, all others aren't.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants