2019-11-17 20:25:25 +01:00
|
|
|
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 @@
|
2015-11-07 23:44:51 +01:00
|
|
|
|
|
|
|
# Lance Ellinghaus's syslog module
|
|
|
|
# syslog daemon interface
|
2019-11-17 20:25:25 +01:00
|
|
|
- self.add(Extension('syslog', ['syslogmodule.c']))
|
2015-11-07 23:44:51 +01:00
|
|
|
+ # Termux: Add 'log' android library since we use android logging:
|
2019-11-17 22:20:33 +01:00
|
|
|
+ self.add(Extension('syslog', ['syslogmodule.c'], libraries=['log']))
|
2015-11-07 23:44:51 +01:00
|
|
|
|
2019-11-17 20:25:25 +01:00
|
|
|
# Python interface to subinterpreter C-API.
|
|
|
|
self.add(Extension('_xxsubinterpreters', ['_xxsubinterpretersmodule.c']))
|