From 7d61fd53df92f93172ede35a692fd5f645a0252c Mon Sep 17 00:00:00 2001 From: Matthew Gallagher Date: Fri, 12 Sep 2014 17:49:19 -0400 Subject: [PATCH] Added mysql PDO support to compile flags in versions with Apache --- 5.3/apache/Dockerfile | 2 +- 5.4/apache/Dockerfile | 2 +- 5.5/apache/Dockerfile | 2 +- 5.6/apache/Dockerfile | 2 +- Dockerfile-apache-insert | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/5.3/apache/Dockerfile b/5.3/apache/Dockerfile index 05610cb3..257a88be 100644 --- a/5.3/apache/Dockerfile +++ b/5.3/apache/Dockerfile @@ -52,7 +52,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.4/apache/Dockerfile b/5.4/apache/Dockerfile index e3f27345..c9058b84 100644 --- a/5.4/apache/Dockerfile +++ b/5.4/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.5/apache/Dockerfile b/5.5/apache/Dockerfile index 32a79ca4..c1f264ea 100644 --- a/5.5/apache/Dockerfile +++ b/5.5/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.6/apache/Dockerfile b/5.6/apache/Dockerfile index 8287b0b2..e06c4d82 100644 --- a/5.6/apache/Dockerfile +++ b/5.6/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/Dockerfile-apache-insert b/Dockerfile-apache-insert index 5e3249a8..e40865ae 100644 --- a/Dockerfile-apache-insert +++ b/Dockerfile-apache-insert @@ -28,7 +28,7 @@ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \