mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-11 05:13:30 +00:00
python: update to 3.8.0
%ci:reset-backlog
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
diff -u -r ../Python-3.5.0/setup.py ./setup.py
|
||||
--- ../Python-3.5.0/setup.py 2015-09-13 07:41:26.000000000 -0400
|
||||
+++ ./setup.py 2015-11-07 17:31:45.332321322 -0500
|
||||
@@ -661,7 +663,8 @@
|
||||
diff -uNr Python-3.8.0/setup.py Python-3.8.0.mod/setup.py
|
||||
--- Python-3.8.0/setup.py 2019-10-14 16:34:47.000000000 +0300
|
||||
+++ Python-3.8.0.mod/setup.py 2019-11-17 21:16:46.524157731 +0200
|
||||
@@ -824,7 +824,8 @@
|
||||
|
||||
# Lance Ellinghaus's syslog module
|
||||
# syslog daemon interface
|
||||
- exts.append( Extension('syslog', ['syslogmodule.c']) )
|
||||
- self.add(Extension('syslog', ['syslogmodule.c']))
|
||||
+ # Termux: Add 'log' android library since we use android logging:
|
||||
+ exts.append( Extension('syslog', ['syslogmodule.c'], libraries=['log']) )
|
||||
+ self.add(Extension('syslog', ['syslogmodule.c'], libraries=['-llog']))
|
||||
|
||||
#
|
||||
# Here ends the simple stuff. From here on, modules need certain
|
||||
# Python interface to subinterpreter C-API.
|
||||
self.add(Extension('_xxsubinterpreters', ['_xxsubinterpretersmodule.c']))
|
||||
|
||||
Reference in New Issue
Block a user