mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Co-authored-by: =?UTF-8?q?=E6=AD=A6=E7=94=B0=20=E6=86=B2=E5=A4=AA=E9=83=8E?= <takeda@youmind.jp> Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
name: ./configure
|
|
inputs:
|
|
configurationParameters:
|
|
default: ''
|
|
required: false
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -x
|
|
|
|
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/lib/i386-linux-gnu/pkgconfig"
|
|
./buildconf --force
|
|
export CFLAGS="-m32 -msse2"
|
|
export CXXFLAGS="-m32 -msse2"
|
|
export LDFLAGS=-L/usr/lib/i386-linux-gnu
|
|
./configure ${{ inputs.configurationParameters }} \
|
|
--enable-option-checking=fatal \
|
|
--build=i686-pc-linux-gnu \
|
|
--prefix=/usr \
|
|
--enable-phpdbg \
|
|
--enable-fpm \
|
|
--enable-intl \
|
|
--with-pdo-mysql=mysqlnd \
|
|
--with-mysqli=mysqlnd \
|
|
--with-pgsql \
|
|
--with-pdo-pgsql \
|
|
--with-pdo-sqlite \
|
|
--with-pdo-firebird \
|
|
--without-pear \
|
|
--enable-gd \
|
|
--with-jpeg \
|
|
--with-webp \
|
|
--with-freetype \
|
|
--with-xpm \
|
|
--enable-exif \
|
|
--with-zlib \
|
|
--enable-soap \
|
|
--enable-xmlreader \
|
|
--with-xsl \
|
|
--enable-sysvsem \
|
|
--enable-sysvshm \
|
|
--enable-shmop \
|
|
--enable-pcntl \
|
|
--with-readline \
|
|
--enable-mbstring \
|
|
--with-curl \
|
|
--with-gettext \
|
|
--enable-sockets \
|
|
--with-bz2 \
|
|
--with-openssl \
|
|
--with-gmp \
|
|
--enable-bcmath \
|
|
--enable-calendar \
|
|
--enable-ftp \
|
|
--enable-sysvmsg \
|
|
--with-ffi \
|
|
--enable-zend-test \
|
|
--enable-dl-test=shared \
|
|
--with-mhash \
|
|
--with-sodium \
|
|
--enable-dba \
|
|
--enable-werror \
|
|
--with-config-file-path=/etc \
|
|
--with-config-file-scan-dir=/etc/php.d
|