Merge pull request #1573 from bestlong/fix-php5-gmp
Fix php5 Unable to locate gmp.h
This commit is contained in:
commit
cc20ac2421
|
@ -208,7 +208,10 @@ ARG INSTALL_GMP=false
|
|||
|
||||
RUN if [ ${INSTALL_GMP} = true ]; then \
|
||||
# Install the GMP extension
|
||||
apt-get install -y libgmp-dev && \
|
||||
apt-get install -y libgmp-dev && \
|
||||
if [ $(php -r "echo PHP_MAJOR_VERSION;") = "5" ]; then \
|
||||
ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h \
|
||||
;fi && \
|
||||
docker-php-ext-install gmp \
|
||||
;fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue