We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fef558 commit 71cde26Copy full SHA for 71cde26
.circleci/config.yml
@@ -53,8 +53,6 @@ jobs:
53
libsqlite3-dev \
54
libwebp-dev \
55
libonig-dev \
56
- libkrb5-dev \
57
- libgssapi-krb5-2 \
58
libcurl4-openssl-dev \
59
libxml2-dev \
60
libxslt1-dev \
@@ -128,7 +126,6 @@ jobs:
128
126
--enable-calendar \
129
127
--enable-ftp \
130
--with-enchant=/usr \
131
- --with-kerberos \
132
--enable-sysvmsg \
133
--with-ffi \
134
--enable-zend-test \
.cirrus.yml
@@ -11,10 +11,10 @@ freebsd_task:
11
#- sed -i -e 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
12
#- pkg upgrade -y
13
- kldload accf_http
14
- - pkg install -y autoconf bison gmake re2c icu libiconv png freetype2 enchant2 bzip2 krb5 t1lib gmp tidyp libsodium libzip libxml2 libxslt openssl oniguruma pkgconf webp libavif
+ - pkg install -y autoconf bison gmake re2c icu libiconv png freetype2 enchant2 bzip2 t1lib gmp tidyp libsodium libzip libxml2 libxslt openssl oniguruma pkgconf webp libavif
15
script:
16
- ./buildconf -f
17
- - ./configure --prefix=/usr/local --enable-debug --enable-option-checking=fatal --enable-fpm --with-pdo-sqlite --without-pear --with-bz2 --with-avif --with-jpeg --with-webp --with-freetype --enable-gd --enable-exif --with-zip --with-zlib --enable-soap --enable-xmlreader --with-xsl --with-libxml --enable-shmop --enable-pcntl --enable-mbstring --with-curl --enable-sockets --with-openssl --with-iconv=/usr/local --enable-bcmath --enable-calendar --enable-ftp --with-kerberos --with-ffi --enable-zend-test --enable-dl-test=shared --enable-intl --with-mhash --with-sodium --enable-werror --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d
+ - ./configure --prefix=/usr/local --enable-debug --enable-option-checking=fatal --enable-fpm --with-pdo-sqlite --without-pear --with-bz2 --with-avif --with-jpeg --with-webp --with-freetype --enable-gd --enable-exif --with-zip --with-zlib --enable-soap --enable-xmlreader --with-xsl --with-libxml --enable-shmop --enable-pcntl --enable-mbstring --with-curl --enable-sockets --with-openssl --with-iconv=/usr/local --enable-bcmath --enable-calendar --enable-ftp --with-ffi --enable-zend-test --enable-dl-test=shared --enable-intl --with-mhash --with-sodium --enable-werror --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d
18
- gmake -j2
19
- mkdir /etc/php.d
20
- gmake install
.github/actions/apt-x32/action.yml
@@ -23,10 +23,8 @@ runs:
23
libffi-dev:i386 \
24
libfreetype6-dev:i386 \
25
libgmp-dev:i386 \
26
- libgssapi-krb5-2:i386 \
27
libicu-dev:i386 \
28
libjpeg-dev:i386 \
29
- libkrb5-dev:i386 \
30
libonig-dev:i386 \
31
libpng-dev:i386 \
32
libpq-dev:i386 \
.github/actions/apt-x64/action.yml
@@ -39,8 +39,6 @@ runs:
39
40
41
42
43
44
45
46
.github/actions/brew/action.yml
@@ -13,7 +13,6 @@ runs:
brew install \
openssl@1.1 \
curl \
- krb5 \
bzip2 \
enchant \
libffi \
.github/actions/configure-macos/action.yml
export PATH="$BREW_OPT/bison/bin:$PATH"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/openssl@1.1/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/curl/lib/pkgconfig"
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/krb5/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/libffi/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/libxml2/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_OPT/libxslt/lib/pkgconfig"
@@ -58,7 +57,6 @@ runs:
--enable-bcmath \
61
62
63
64
.github/actions/configure-x32/action.yml
@@ -54,7 +54,6 @@ runs:
.github/actions/configure-x64/action.yml
@@ -53,7 +53,6 @@ runs:
${{ inputs.skipSlow == 'false' && '--with-enchant=/usr' || '' }} \
.travis.yml
@@ -19,7 +19,6 @@ addons:
- libgmp-dev
- libicu-dev
21
- libjpeg-dev
22
- - libkrb5-dev
- libonig-dev
- libpng-dev
- libpq-dev
ext/openssl/config0.m4
@@ -3,13 +3,6 @@ PHP_ARG_WITH([openssl],
3
[AS_HELP_STRING([--with-openssl],
4
[Include OpenSSL support (requires OpenSSL >= 1.1.1)])])
5
6
-PHP_ARG_WITH([kerberos],
7
- [for Kerberos support],
8
- [AS_HELP_STRING([--with-kerberos],
9
- [OPENSSL: Include Kerberos support])],
10
- [no],
- [no])
-
PHP_ARG_WITH([system-ciphers],
[whether to use system default cipher list instead of hardcoded value],
[AS_HELP_STRING([--with-system-ciphers],
@@ -20,14 +13,6 @@ PHP_ARG_WITH([system-ciphers],
if test "$PHP_OPENSSL" != "no"; then
PHP_NEW_EXTENSION(openssl, openssl.c xp_ssl.c, $ext_shared)
PHP_SUBST(OPENSSL_SHARED_LIBADD)
- if test "$PHP_KERBEROS" != "no"; then
- PKG_CHECK_MODULES([KERBEROS], [krb5-gssapi krb5])
- PHP_EVAL_INCLINE($KERBEROS_CFLAGS)
- PHP_EVAL_LIBLINE($KERBEROS_LIBS, OPENSSL_SHARED_LIBADD)
- fi
PHP_SETUP_OPENSSL(OPENSSL_SHARED_LIBADD,
[
33
AC_DEFINE(HAVE_OPENSSL_EXT,1,[ ])
0 commit comments