Browse Source

remove all libgmp dependency references

master
Adam Gibson 4 years ago
parent
commit
5f942d54fa
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 2
      docs/INSTALL.md
  2. 2
      test/Dockerfiles/stretch-py3.Dockerfile
  3. 2
      test/Dockerfiles/xenial-py3.Dockerfile

2
docs/INSTALL.md

@ -24,7 +24,7 @@ is actually newer in version number, than what was there already.
To install everything (client and server), install these packages:
sudo apt-get install python3-dev python3-pip git build-essential automake pkg-config libtool libffi-dev libssl-dev libgmp-dev
sudo apt-get install python3-dev python3-pip git build-essential automake pkg-config libtool libffi-dev libssl-dev
(+ `libsodium-dev` if you can find it, else build after)

2
test/Dockerfiles/stretch-py3.Dockerfile

@ -5,7 +5,7 @@ SHELL ["/bin/bash", "-c"]
RUN apt-get update
RUN apt-get install -y build-essential
RUN apt-get install -y \
automake pkg-config libtool libgmp-dev
automake pkg-config libtool
RUN apt-get install -y \
python3-dev python3-pip virtualenv python3-pyqt4 python3-sip

2
test/Dockerfiles/xenial-py3.Dockerfile

@ -5,7 +5,7 @@ SHELL ["/bin/bash", "-c"]
RUN apt-get update
RUN apt-get install -y build-essential
RUN apt-get install -y \
automake pkg-config libtool libgmp-dev
automake pkg-config libtool
RUN apt-get install -y \
python3-dev python3-pip virtualenv python3-pyqt4 python3-sip

Loading…
Cancel
Save