summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZoRo <dos21h@gmail.com>2019-12-14 16:49:54 +0000
committerZoRo <dos21h@gmail.com>2019-12-14 16:49:54 +0000
commitb3e992e7c7b0a169f17c78590b7ffda7b42882df (patch)
tree7f95d9004f9fa47fce3eec69c11d0b9b405dde60
parentd6f8cc908e4dea99ffb97afcb3af74a5638585e0 (diff)
downloadcompilation-snippets-b3e992e7c7b0a169f17c78590b7ffda7b42882df.tar.gz
compilation-snippets-b3e992e7c7b0a169f17c78590b7ffda7b42882df.zip
Update aftetr compilation on centos6
-rw-r--r--python/Makefile8
-rw-r--r--python/py3/Setup4
2 files changed, 6 insertions, 6 deletions
diff --git a/python/Makefile b/python/Makefile
index 273a865..0ed24be 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -7,19 +7,19 @@ INSTALL_PATH3=/home/fam/downloads/source/python/static_python/output3
make: download
echo "Create static python"
-download: Python-$(VERSION).tgz
+download:
echo "Download"
wget -c https://www.python.org/ftp/python/$(VERSION)/Python-$(VERSION).tgz
tar -xvf Python-$(VERSION).tgz
-download3: Python-$(VERSION).tgz
+download3:
echo "Download"
wget -c https://www.python.org/ftp/python/$(VERSION3)/Python-$(VERSION3).tgz
tar -xvf Python-$(VERSION3).tgz
configure:
echo "Configure"
- pushd `pwd`
+ #pushd `pwd`
#dynamic
#cd ./Python-$(VERSION); ./configure --enable-shared --prefix=$(INSTALL_PATH)
#static
@@ -28,7 +28,7 @@ configure:
configure3:
echo "Configure"
- pushd `pwd`
+ #pushd `pwd`
#dynamic
#cd ./Python-$(VERSION); ./configure --enable-shared --prefix=$(INSTALL_PATH)
#static
diff --git a/python/py3/Setup b/python/py3/Setup
index e8565c4..f817b57 100644
--- a/python/py3/Setup
+++ b/python/py3/Setup
@@ -181,7 +181,7 @@ _elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI
#_pickle _pickle.c # pickle accelerator
_datetime _datetimemodule.c # datetime accelerator
_bisect _bisectmodule.c # Bisection algorithms
-#_heapq _heapqmodule.c # Heap queue algorithm
+_heapq _heapqmodule.c # Heap queue algorithm
_asyncio _asynciomodule.c # Fast asyncio Future
_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
_statistics _statisticsmodule.c # statistics accelerator
@@ -327,7 +327,7 @@ _sha3 _sha3/sha3module.c
# Helper module for various ascii-encoders
-#binascii binascii.c
+binascii binascii.c
# Fred Drake's interface to the Python parser
#parser parsermodule.c