Skip to content

Commit c6b191e

Browse files
authored
Merge pull request #27 from ActiveState/BE-2643-quicktime_and_io_modules
BE-2643-quicktime and io modules
2 parents 169830c + b0ff827 commit c6b191e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Modules/_io/fileio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* Author: Daniel Stutzbach */
22

3+
// Fixes _Py_*_SUPPRESS_IPH not found error but defined in pyport.h
4+
#define Py_BUILD_CORE
35
#define PY_SSIZE_T_CLEAN
46
#include "Python.h"
57
#ifdef HAVE_SYS_TYPES_H

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1780,8 +1780,7 @@ def addMacExtension(name, kwds, extra_srcs=[]):
17801780

17811781
exts.append( Extension('_Qt', ['qt/_Qtmodule.c'],
17821782
extra_compile_args=carbon_extra_compile_args,
1783-
extra_link_args=['-framework', 'QuickTime',
1784-
'-framework', 'Carbon']) )
1783+
extra_link_args=['-framework', 'Carbon']) )
17851784

17861785

17871786
self.extensions.extend(exts)

0 commit comments

Comments
 (0)