-
-
Save Ayesh/c5a30721e347563a974abaa818834c0e to your computer and use it in GitHub Desktop.
`config.nice` file: https://php.watch/articles/compile-php-ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# | |
# Created by configure | |
# https://php.watch/articles/compile-php-ubuntu | |
'./configure' \ | |
'--enable-mbstring' \ | |
'--enable-intl' \ | |
'--disable-cgi' \ | |
'--with-openssl' \ | |
'--with-curl' \ | |
'--enable-gd' \ | |
'--enable-pcntl' \ | |
'--enable-mysqlnd' \ | |
'--enable-fpm' \ | |
'--with-pdo-mysql=mysqlnd' \ | |
'--enable-ftp' \ | |
'--with-imap' \ | |
'--with-kerberos' \ | |
'--with-imap-ssl' \ | |
'--with-pspell' \ | |
'--enable-sysvmsg' \ | |
'--enable-sysvsem' \ | |
'--enable-sysvshm' \ | |
'--enable-sockets' \ | |
'--without-sqlite3' \ | |
'--without-pdo-sqlite' \ | |
'--with-readline' \ | |
"$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment