Skip to content

Commit fc6c57a

Browse files
committed
Fixes beeware#127 - Correct configuration of _lsprof and _scproxy modules.
1 parent 5561d94 commit fc6c57a

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

patch/Python/Setup.embedded

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ _heapq _heapqmodule.c
2828
_io -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
2929
_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c
3030
_locale _localemodule.c # -lintl
31-
_lsprof _lsprof.o rotatingtree.c
31+
_lsprof _lsprof.c rotatingtree.c
3232
_lzma _lzmamodule.c -I$(srcdir)/../Support/XZ/Headers -L$(srcdir)/../Support/XZ/ -lxz
3333
_md5 md5module.c
3434
_multibytecodec cjkcodecs/multibytecodec.c
@@ -65,8 +65,8 @@ _thread -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _threadmodule.c
6565
_tracemalloc _tracemalloc.c
6666
_weakref _weakref.c
6767
_uuid _uuidmodule.c
68-
atexit atexitmodule.c
6968
array arraymodule.c
69+
atexit atexitmodule.c
7070
audioop audioop.c
7171
binascii binascii.c
7272
cmath cmathmodule.c _math.c
@@ -112,7 +112,6 @@ zlib zlibmodule.c -I$(prefix)/include -lz
112112
#_dbm _dbmmodule.c
113113
#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
114114
#_posixshmem _multiprocessing/posixshmem.c
115-
#_scproxy _scproxy.c -framework SystemConfiguration -framework CoreFoundation
116115
#_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I... -L...
117116
#nis nismodule.c -lnsl
118117
#ossaudiodev

patch/Python/Setup.iOS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ _ctypes _ctypes/_ctypes.c \
1515
-L$(srcdir)/../Support/libFFI \
1616
-lFFI
1717

18-
1918
_decimal _decimal/_decimal.c \
2019
_decimal/libmpdec/basearith.c \
2120
_decimal/libmpdec/constants.c \

patch/Python/Setup.macOS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ _ctypes _ctypes/_ctypes.c \
1515
-DHAVE_FFI_PREP_CLOSURE_LOC=1 -DHAVE_FFI_CLOSURE_ALLOC=1 \
1616
-lffi
1717

18-
1918
_decimal _decimal/_decimal.c \
2019
_decimal/libmpdec/basearith.c \
2120
_decimal/libmpdec/constants.c \
@@ -33,3 +32,5 @@ _decimal _decimal/_decimal.c \
3332
_decimal/libmpdec/transpose.c \
3433
-I$(srcdir)/Modules/_decimal/libmpdec \
3534
-DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1
35+
36+
_scproxy _scproxy.c -framework SystemConfiguration -framework CoreFoundation

patch/Python/Setup.tvOS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ _ctypes _ctypes/_ctypes.c \
1515
-L$(srcdir)/../Support/libFFI \
1616
-lFFI
1717

18-
1918
_decimal _decimal/_decimal.c \
2019
_decimal/libmpdec/basearith.c \
2120
_decimal/libmpdec/constants.c \

patch/Python/Setup.watchOS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ _ctypes _ctypes/_ctypes.c \
1515
-L$(srcdir)/../Support/libFFI \
1616
-lFFI
1717

18-
1918
_decimal _decimal/_decimal.c \
2019
_decimal/libmpdec/basearith.c \
2120
_decimal/libmpdec/constants.c \

0 commit comments

Comments
 (0)