Skip to content

Commit a8e1b10

Browse files
committed
Remove unused --with-zlib-dir configure option
Commits that removed this option: - 34dd032 - a2c21e1 - e595f5c Closes phpGH-12209
1 parent 6349b29 commit a8e1b10

File tree

6 files changed

+3
-13
lines changed

6 files changed

+3
-13
lines changed

.cirrus.yml

-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ arm_task:
131131
--enable-exif
132132
--with-zip
133133
--with-zlib
134-
--with-zlib-dir=/usr
135134
--enable-soap
136135
--enable-xmlreader
137136
--with-xsl

.github/actions/configure-x32/action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ runs:
3535
--enable-exif \
3636
--with-zip \
3737
--with-zlib \
38-
--with-zlib-dir=/usr \
3938
--enable-soap \
4039
--enable-xmlreader \
4140
--with-xsl \

.github/actions/configure-x64/action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ runs:
3333
--enable-exif \
3434
--with-zip \
3535
--with-zlib \
36-
--with-zlib-dir=/usr \
3736
--enable-soap \
3837
--enable-xmlreader \
3938
--with-xsl \

UPGRADING.INTERNALS

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ PHP 8.4 INTERNALS UPGRADE NOTES
1818
2. Build system changes
1919
========================
2020

21+
a. Unix build system changes
22+
- The configure option --with-zlib-dir has been removed.
23+
2124
========================
2225
3. Module changes
2326
========================

ext/pdo_mysql/config.m4

-9
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@ PHP_ARG_WITH([pdo-mysql],
44
[PDO: MySQL support. DIR is the MySQL base directory. If no value or mysqlnd
55
is passed as DIR, the MySQL native driver will be used])])
66

7-
if test -z "$PHP_ZLIB_DIR"; then
8-
PHP_ARG_WITH([zlib-dir],
9-
[for the location of libz],
10-
[AS_HELP_STRING([[--with-zlib-dir[=DIR]]],
11-
[PDO_MySQL: Set the path to libz install prefix])],
12-
[no],
13-
[no])
14-
fi
15-
167
if test "$PHP_PDO_MYSQL" != "no"; then
178
dnl This depends on ext/mysqli/config.m4 providing the PHP_MYSQL_SOCKET_SEARCH
189
dnl macro and --with-mysql-sock configure option.

travis/compile.sh

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ $S390X_CONFIG \
4141
--enable-exif \
4242
--with-zip \
4343
--with-zlib \
44-
--with-zlib-dir=/usr \
4544
--enable-soap \
4645
--enable-xmlreader \
4746
--with-xsl \

0 commit comments

Comments
 (0)