File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33# Install C building dependencies
44echo " Installing port dependencies..."
55
6- sudo port install yasm x264 gnutls openssl sqlite3 ffmpeg mpfr libmpc libvpx wget gmp mpc
6+ sudo port install yasm x264 gnutls openssl sqlite3 ffmpeg mpfr libmpc libvpx wget gmp mpc libuuid
7+
8+ # This will conflict with buildin MacOS
9+ sudo mv /opt/local/include/uuid/uuid.h /opt/local/include/uuid/uuid.h.old
710
811RESULT=$?
912if [ $RESULT -ne 0 ]; then
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if [ ! -d ~/work ]; then
44fi
55
66arch=` python3 -c " import platform; print(platform.processor())" `
7- pver=` python3 -c " import sys; print(sys.version[0:4] )" `
7+ pver=` python3 -c " import sys; print('%d.%d' % ( sys.version_info[0], sys.version_info[1]) )" `
88
99envdir=sipsimple-python-$pver -$arch -env
1010
Original file line number Diff line number Diff line change 11#! /bin/bash
22arch=` python3 -c " import platform; print(platform.processor())" `
3- pver=` python3 -c " import sys; print(sys.version[0:3] )" `
3+ pver=` python3 -c " import sys; print('%d.%d' % ( sys.version_info[0], sys.version_info[1]) )" `
44
55venv=" $HOME /work/sipsimple-python-$pver -$arch -env"
66
You can’t perform that action at this time.
0 commit comments