Skip to content

Commit e6e1325

Browse files
committed
Fix preprocessor check
Signed-off-by: Filipe Laíns <[email protected]
1 parent ca4a3e3 commit e6e1325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/getpath.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ library_to_dict(PyObject *dict, const char *key)
808808
{
809809
/* macOS framework builds do not link against a libpython dynamic library, but
810810
instead link against a macOS Framework. */
811-
#ifdef Py_ENABLE_SHARED || WITH_NEXT_FRAMEWORK
811+
#if defined(Py_ENABLE_SHARED) || defined(WITH_NEXT_FRAMEWORK)
812812

813813
#ifdef MS_WINDOWS
814814
extern HMODULE PyWin_DLLhModule;

0 commit comments

Comments
 (0)