Skip to content

Commit

Permalink
Fix preprocessor check
Browse files Browse the repository at this point in the history
Signed-off-by: Filipe Laíns <lains@riseup.net
  • Loading branch information
FFY00 committed Dec 17, 2024
1 parent ca4a3e3 commit e6e1325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/getpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ library_to_dict(PyObject *dict, const char *key)
{
/* macOS framework builds do not link against a libpython dynamic library, but
instead link against a macOS Framework. */
#ifdef Py_ENABLE_SHARED || WITH_NEXT_FRAMEWORK
#if defined(Py_ENABLE_SHARED) || defined(WITH_NEXT_FRAMEWORK)

#ifdef MS_WINDOWS
extern HMODULE PyWin_DLLhModule;
Expand Down

0 comments on commit e6e1325

Please sign in to comment.