Skip to content

Commit 150f08b

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
2 parents e2fa3dd + 3e76102 commit 150f08b

40 files changed

+844
-363
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
libfreetype-dev \
7979
libldap2-dev \
8080
unixodbc-dev \
81-
libodbc2 \
8281
freetds-dev \
8382
libsnmp-dev \
8483
snmp \

cmake/cmake/modules/FindACL.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ else()
143143

144144
# Use pkgconf, if available on the system.
145145
find_package(PkgConfig QUIET)
146-
pkg_check_modules(PC_ACL QUIET libacl)
146+
if(PKG_CONFIG_FOUND)
147+
pkg_check_modules(PC_ACL QUIET libacl)
148+
endif()
147149

148150
find_path(
149151
ACL_INCLUDE_DIR

cmake/cmake/modules/FindApache.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ endif()
193193
# Find the apr library (Apache portable runtime).
194194
# Use pkgconf, if available on the system.
195195
find_package(PkgConfig QUIET)
196-
pkg_check_modules(PC_Apache_APR QUIET apr-1)
196+
if(PKG_CONFIG_FOUND)
197+
pkg_check_modules(PC_Apache_APR QUIET apr-1)
198+
endif()
197199

198200
find_path(
199201
Apache_APR_INCLUDE_DIR

cmake/cmake/modules/FindAppArmor.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ set(_reason "")
3737

3838
# Use pkgconf, if available on the system.
3939
find_package(PkgConfig QUIET)
40-
pkg_check_modules(PC_AppArmor QUIET libapparmor)
40+
if(PKG_CONFIG_FOUND)
41+
pkg_check_modules(PC_AppArmor QUIET libapparmor)
42+
endif()
4143

4244
find_path(
4345
AppArmor_INCLUDE_DIR

cmake/cmake/modules/FindArgon2.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ set(_reason "")
3636

3737
# Use pkgconf, if available on the system.
3838
find_package(PkgConfig QUIET)
39-
pkg_check_modules(PC_Argon2 QUIET libargon2)
39+
if(PKG_CONFIG_FOUND)
40+
pkg_check_modules(PC_Argon2 QUIET libargon2)
41+
endif()
4042

4143
find_path(
4244
Argon2_INCLUDE_DIR

cmake/cmake/modules/FindCapstone.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ set(_reason "")
3636

3737
# Use pkgconf, if available on the system.
3838
find_package(PkgConfig QUIET)
39-
pkg_check_modules(PC_Capstone QUIET capstone)
39+
if(PKG_CONFIG_FOUND)
40+
pkg_check_modules(PC_Capstone QUIET capstone)
41+
endif()
4042

4143
find_path(
4244
Capstone_INCLUDE_DIR

cmake/cmake/modules/FindCdb.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ set(_reason "")
3737

3838
# Use pkgconf, if available on the system.
3939
find_package(PkgConfig QUIET)
40-
pkg_check_modules(PC_Cdb QUIET libcdb)
40+
if(PKG_CONFIG_FOUND)
41+
pkg_check_modules(PC_Cdb QUIET libcdb)
42+
endif()
4143

4244
find_path(
4345
Cdb_INCLUDE_DIR

cmake/cmake/modules/FindCrypt.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ else()
8585

8686
# Use pkgconf, if available on the system.
8787
find_package(PkgConfig QUIET)
88-
pkg_search_module(PC_Crypt QUIET libcrypt libxcrypt)
88+
if(PKG_CONFIG_FOUND)
89+
pkg_search_module(PC_Crypt QUIET libcrypt libxcrypt)
90+
endif()
8991

9092
find_path(
9193
Crypt_INCLUDE_DIR

cmake/cmake/modules/FindEditline.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ set(_reason "")
3737

3838
# Use pkgconf, if available on the system.
3939
find_package(PkgConfig QUIET)
40-
pkg_check_modules(PC_Editline QUIET libedit)
40+
if(PKG_CONFIG_FOUND)
41+
pkg_check_modules(PC_Editline QUIET libedit)
42+
endif()
4143

4244
find_path(
4345
Editline_INCLUDE_DIR

cmake/cmake/modules/FindEnchant.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ endif()
4343

4444
# Use pkgconf, if available on the system.
4545
find_package(PkgConfig QUIET)
46-
pkg_check_modules(PC_Enchant QUIET ${_enchant_name})
46+
if(PKG_CONFIG_FOUND)
47+
pkg_check_modules(PC_Enchant QUIET ${_enchant_name})
48+
endif()
4749

4850
find_path(
4951
Enchant_INCLUDE_DIR

0 commit comments

Comments
 (0)