|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2017-06-12 12:03 UTC] frederic dot hardy at mageekbox dot net
Description: ------------ I'm using the command `'./configure' '--prefix=/usr/local/Cellar/php56/5.6.24' '--localstatedir=/usr/local/var' '--sysconfdir=/usr/local/etc/php/5.6' '--with-config-file-path=/usr/local/etc/php/5.6' '--with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d' '--mandir=/usr/local/Cellar/php56/5.6.24/share/man' '--enable-bcmath' '--enable-calendar' '--enable-dba' '--enable-exif' '--enable-ftp' '--enable-gd-native-ttf' '--enable-mbregex' '--enable-mbstring' '--enable-shmop' '--enable-soap' '--enable-sockets' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx' '--enable-zip' '--with-freetype-dir=/usr/local/opt/freetype' '--with-gd' '--with-gettext=/usr/local/opt/gettext' '--with-iconv-dir=/usr' '--with-icu-dir=/usr/local/opt/icu4c' '--with-jpeg-dir=/usr/local/opt/jpeg' '--with-kerberos=/usr' '--with-libedit' '--with-mhash' '--with-ndbm=/usr' '--with-png-dir=/usr/local/opt/libpng' '--with-xmlrpc' '--with-zlib=/usr' '--with-readline=/usr/local/opt/readline' '--without-gmp' '--without-snmp' '--with-libxml-dir=/usr/local/opt/libxml2' '--with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc' '--with-unixODBC=/usr/local/opt/unixodbc' '--with-apxs2=/usr/sbin/apxs' '--libexecdir=/usr/local/Cellar/php56/5.6.24/libexec' '--with-bz2=/usr' '--disable-debug' '--with-openssl=/usr/local/opt/openssl' '--enable-fpm' '--with-fpm-user=_www' '--with-fpm-group=_www' '--with-curl' '--with-xsl=/usr' '--with-ldap' '--with-ldap-sasl=/usr' '--with-mysql-sock=/tmp/mysql.sock' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--disable-opcache' '--enable-pcntl' '--without-pear' '--enable-dtrace' '--disable-phpdbg' '--enable-zend-signals'` to configure PHP from source. All works fine with PHP < 7.1.5, but i have some failure about `iconv`, `sasl`, `readline` and fork for `pnctl` support with version ≥ 7.1.5. After some discussion on IRC with Remi Collet, it seems that http://git.php.net/?p=php-src.git;a=commitdiff;h=32c5b8efd68dd21dd025285e7207dcab7c6319cd is the culprit is the culprit, because when i'm using `configure` script from 7.1.3 or 7.1.4 in a 7.1.5 or 7.1.6 source tree, all is fine Test script: --------------- './configure' '--prefix=/usr/local/Cellar/php56/5.6.24' '--localstatedir=/usr/local/var' '--sysconfdir=/usr/local/etc/php/5.6' '--with-config-file-path=/usr/local/etc/php/5.6' '--with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d' '--mandir=/usr/local/Cellar/php56/5.6.24/share/man' '--enable-bcmath' '--enable-calendar' '--enable-dba' '--enable-exif' '--enable-ftp' '--enable-gd-native-ttf' '--enable-mbregex' '--enable-mbstring' '--enable-shmop' '--enable-soap' '--enable-sockets' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx' '--enable-zip' '--with-freetype-dir=/usr/local/opt/freetype' '--with-gd' '--with-gettext=/usr/local/opt/gettext' '--with-iconv-dir=/usr' '--with-icu-dir=/usr/local/opt/icu4c' '--with-jpeg-dir=/usr/local/opt/jpeg' '--with-kerberos=/usr' '--with-libedit' '--with-mhash' '--with-ndbm=/usr' '--with-png-dir=/usr/local/opt/libpng' '--with-xmlrpc' '--with-zlib=/usr' '--with-readline=/usr/local/opt/readline' '--without-gmp' '--without-snmp' '--with-libxml-dir=/usr/local/opt/libxml2' '--with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc' '--with-unixODBC=/usr/local/opt/unixodbc' '--with-apxs2=/usr/sbin/apxs' '--libexecdir=/usr/local/Cellar/php56/5.6.24/libexec' '--with-bz2=/usr' '--disable-debug' '--with-openssl=/usr/local/opt/openssl' '--enable-fpm' '--with-fpm-user=_www' '--with-fpm-group=_www' '--with-curl' '--with-xsl=/usr' '--with-ldap' '--with-ldap-sasl=/usr' '--with-mysql-sock=/tmp/mysql.sock' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--disable-opcache' '--enable-pcntl' '--without-pear' '--enable-dtrace' '--disable-phpdbg' '--enable-zend-signals' Expected result: ---------------- … Generating files configure: creating ./config.status creating main/internal_functions.c creating main/internal_functions_cli.c +--------------------------------------------------------------------+ | *** WARNING *** | | | | You have built PHP for Apache's current non-threaded MPM. | | If you change Apache to use a threaded MPM you must reconfigure | | PHP with --enable-maintainer-zts | +--------------------------------------------------------------------+ | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | +--------------------------------------------------------------------+ Thank you for using PHP. config.status: creating php7.spec config.status: creating main/build-defs.h config.status: creating scripts/phpize config.status: creating scripts/man1/phpize.1 config.status: creating scripts/php-config config.status: creating scripts/man1/php-config.1 config.status: creating sapi/cli/php.1 config.status: creating sapi/fpm/php-fpm.conf config.status: creating sapi/fpm/www.conf config.status: creating sapi/fpm/init.d.php-fpm config.status: creating sapi/fpm/php-fpm.service config.status: creating sapi/fpm/php-fpm.8 config.status: creating sapi/fpm/status.html config.status: creating sapi/cgi/php-cgi.1 config.status: creating ext/phar/phar.1 config.status: creating ext/phar/phar.phar.1 config.status: creating main/php_config.h config.status: executing default commands Actual result: -------------- … checking for jpeg_read_header in -ljpeg... yes checking for png_write_image in -lpng... yes If configure fails try --with-xpm-dir=<DIR> checking for fabsf... yes checking for floorf... yes checking for GNU gettext support... yes checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dngettext in -lintl... yes checking for dcngettext in -lintl... yes checking for bind_textdomain_codeset in -lintl... yes checking for GNU MP support... no checking for mhash support... yes checking whether to enable hash support... yes checking whether byte ordering is bigendian... (cached) no checking size of short... (cached) 2 checking size of int... (cached) 4 checking size of long... (cached) 8 checking size of long long... (cached) 8 checking for iconv support... yes checking for iconv... no checking for libiconv... no checking for libiconv in -liconv... no checking for iconv in -liconv... no configure: error: Please reinstall the iconv library. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 07:00:01 2025 UTC |
This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --prefix=/usr/local/Cellar/php56/5.6.24 --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.6 --with-config-file-path=/usr/local/etc/php/5.6 --with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d --mandir=/usr/local/Cellar/php56/5.6.24/share/man --enable-bcmath --enable-calendar --enable-dba --enable-exif --enable-ftp --enable-gd-native-ttf --enable-mbregex --enable-mbstring --enable-shmop --enable-soap --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --enable-zip --with-freetype-dir=/usr/local/opt/freetype --with-gd --with-gettext=/usr/local/opt/gettext --with-iconv-dir=/usr --with-icu-dir=/usr/local/opt/icu4c --with-jpeg-dir=/usr/local/opt/jpeg --with-kerberos=/usr --with-libedit --with-mhash --with-ndbm=/usr --with-png-dir=/usr/local/opt/libpng --with-xmlrpc --with-zlib=/usr --with-readline=/usr/local/opt/readline --without-gmp --without-snmp --with-libxml-dir=/usr/local/opt/libxml2 --with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc --with-unixODBC=/usr/local/opt/unixodbc --with-apxs2=/usr/sbin/apxs --libexecdir=/usr/local/Cellar/php56/5.6.24/libexec --with-bz2=/usr --disable-debug --with-openssl=/usr/local/opt/openssl --enable-fpm --with-fpm-user=_www --with-fpm-group=_www --with-curl --with-xsl=/usr --with-ldap --with-ldap-sasl=/usr --with-mysql-sock=/tmp/mysql.sock --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --disable-opcache --enable-pcntl --without-pear --enable-dtrace --disable-phpdbg --enable-zend-signals ## --------- ## ## Platform. ## ## --------- ## hostname = Mageekbook-Pro.local uname -m = x86_64 uname -r = 16.6.0 uname -s = Darwin uname -v = Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = Mach kernel version: Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 Kernel configured for up to 4 processors. 2 processors are physically available. 4 processors are logically available. Processor type: x86_64h (Intel x86-64h Haswell) Processors active: 0 1 2 3 Primary memory available: 16.00 gigabytes Default processor set: 495 tasks, 2074 threads, 4 processors Load average: 6.38, Mach factor: 1.30 /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /Users/mageekguy/.composer/vendor/bin PATH: /usr/local/mysql/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/sbin PATH: /sbin ## ----------- ## ## Core tests. ## ## ----------- ## configure:3249: checking for grep that handles long lines and -e configure:3307: result: /usr/bin/grep configure:3312: checking for egrep configure:3374: result: /usr/bin/grep -E configure:3379: checking for a sed that does not truncate output configure:3433: result: /usr/bin/sed configure:3543: checking build system type ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_YACC_set= ac_cv_env_YACC_value= ac_cv_env_YFLAGS_set= ac_cv_env_YFLAGS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_GREP=/usr/bin/grep lt_cv_path_SED=/usr/bin/sed ## ----------------- ## ## Output variables. ## ## ----------------- ## ALLOCA='' AR='' AWK='' CC='' CFLAGS='' CONFIGURE_COMMAND=' '\''./configure'\'' '\''--prefix=/usr/local/Cellar/php56/5.6.24'\'' '\''--localstatedir=/usr/local/var'\'' '\''--sysconfdir=/usr/local/etc/php/5.6'\'' '\''--with-config-file-path=/usr/local/etc/php/5.6'\'' '\''--with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d'\'' '\''--mandir=/usr/local/Cellar/php56/5.6.24/share/man'\'' '\''--enable-bcmath'\'' '\''--enable-calendar'\'' '\''--enable-dba'\'' '\''--enable-exif'\'' '\''--enable-ftp'\'' '\''--enable-gd-native-ttf'\'' '\''--enable-mbregex'\'' '\''--enable-mbstring'\'' '\''--enable-shmop'\'' '\''--enable-soap'\'' '\''--enable-sockets'\'' '\''--enable-sysvmsg'\'' '\''--enable-sysvsem'\'' '\''--enable-sysvshm'\'' '\''--enable-wddx'\'' '\''--enable-zip'\'' '\''--with-freetype-dir=/usr/local/opt/freetype'\'' '\''--with-gd'\'' '\''--with-gettext=/usr/local/opt/gettext'\'' '\''--with-iconv-dir=/usr'\'' '\''--with-icu-dir=/usr/local/opt/icu4c'\'' '\''--with-jpeg-dir=/usr/local/opt/jpeg'\'' '\''--with-kerberos=/usr'\'' '\''--with-libedit'\'' '\''--with-mhash'\'' '\''--with-ndbm=/usr'\'' '\''--with-png-dir=/usr/local/opt/libpng'\'' '\''--with-xmlrpc'\'' '\''--with-zlib=/usr'\'' '\''--with-readline=/usr/local/opt/readline'\'' '\''--without-gmp'\'' '\''--without-snmp'\'' '\''--with-libxml-dir=/usr/local/opt/libxml2'\'' '\''--with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc'\'' '\''--with-unixODBC=/usr/local/opt/unixodbc'\'' '\''--with-apxs2=/usr/sbin/apxs'\'' '\''--libexecdir=/usr/local/Cellar/php56/5.6.24/libexec'\'' '\''--with-bz2=/usr'\'' '\''--disable-debug'\'' '\''--with-openssl=/usr/local/opt/openssl'\'' '\''--enable-fpm'\'' '\''--with-fpm-user=_www'\'' '\''--with-fpm-group=_www'\'' '\''--with-curl'\'' '\''--with-xsl=/usr'\'' '\''--with-ldap'\'' '\''--with-ldap-sasl=/usr'\'' '\''--with-mysql-sock=/tmp/mysql.sock'\'' '\''--with-mysqli=mysqlnd'\'' '\''--with-pdo-mysql=mysqlnd'\'' '\''--disable-opcache'\'' '\''--enable-pcntl'\'' '\''--without-pear'\'' '\''--enable-dtrace'\'' '\''--disable-phpdbg'\'' '\''--enable-zend-signals'\''' CONFIGURE_OPTIONS=' '\''--prefix=/usr/local/Cellar/php56/5.6.24'\'' '\''--localstatedir=/usr/local/var'\'' '\''--sysconfdir=/usr/local/etc/php/5.6'\'' '\''--with-config-file-path=/usr/local/etc/php/5.6'\'' '\''--with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d'\'' '\''--mandir=/usr/local/Cellar/php56/5.6.24/share/man'\'' '\''--enable-bcmath'\'' '\''--enable-calendar'\'' '\''--enable-dba'\'' '\''--enable-exif'\'' '\''--enable-ftp'\'' '\''--enable-gd-native-ttf'\'' '\''--enable-mbregex'\'' '\''--enable-mbstring'\'' '\''--enable-shmop'\'' '\''--enable-soap'\'' '\''--enable-sockets'\'' '\''--enable-sysvmsg'\'' '\''--enable-sysvsem'\'' '\''--enable-sysvshm'\'' '\''--enable-wddx'\'' '\''--enable-zip'\'' '\''--with-freetype-dir=/usr/local/opt/freetype'\'' '\''--with-gd'\'' '\''--with-gettext=/usr/local/opt/gettext'\'' '\''--with-iconv-dir=/usr'\'' '\''--with-icu-dir=/usr/local/opt/icu4c'\'' '\''--with-jpeg-dir=/usr/local/opt/jpeg'\'' '\''--with-kerberos=/usr'\'' '\''--with-libedit'\'' '\''--with-mhash'\'' '\''--with-ndbm=/usr'\'' '\''--with-png-dir=/usr/local/opt/libpng'\'' '\''--with-xmlrpc'\'' '\''--with-zlib=/usr'\'' '\''--with-readline=/usr/local/opt/readline'\'' '\''--without-gmp'\'' '\''--without-snmp'\'' '\''--with-libxml-dir=/usr/local/opt/libxml2'\'' '\''--with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc'\'' '\''--with-unixODBC=/usr/local/opt/unixodbc'\'' '\''--with-apxs2=/usr/sbin/apxs'\'' '\''--libexecdir=/usr/local/Cellar/php56/5.6.24/libexec'\'' '\''--with-bz2=/usr'\'' '\''--disable-debug'\'' '\''--with-openssl=/usr/local/opt/openssl'\'' '\''--enable-fpm'\'' '\''--with-fpm-user=_www'\'' '\''--with-fpm-group=_www'\'' '\''--with-curl'\'' '\''--with-xsl=/usr'\'' '\''--with-ldap'\'' '\''--with-ldap-sasl=/usr'\'' '\''--with-mysql-sock=/tmp/mysql.sock'\'' '\''--with-mysqli=mysqlnd'\'' '\''--with-pdo-mysql=mysqlnd'\'' '\''--disable-opcache'\'' '\''--enable-pcntl'\'' '\''--without-pear'\'' '\''--enable-dtrace'\'' '\''--disable-phpdbg'\'' '\''--enable-zend-signals'\''' CPP='' CPPFLAGS='' CXX='' CXXCPP='' CXXFLAGS='' DEBUG_CFLAGS='' DEFS='' DSYMUTIL='' ECHO='/bin/echo' ECHO_C='\c' ECHO_N='' ECHO_T='' EGREP='/usr/bin/grep -E' EXEEXT='' EXPANDED_BINDIR='' EXPANDED_DATADIR='' EXPANDED_EXTENSION_DIR='' EXPANDED_LIBDIR='' EXPANDED_LOCALSTATEDIR='' EXPANDED_MANDIR='' EXPANDED_PEAR_INSTALLDIR='' EXPANDED_PHP_CONFIG_FILE_PATH='' EXPANDED_PHP_CONFIG_FILE_SCAN_DIR='' EXPANDED_SBINDIR='' EXPANDED_SYSCONFDIR='' EXTENSION_DIR='' EXTRA_INCLUDES='' EXTRA_LDFLAGS='' EXTRA_LDFLAGS_PROGRAM='' EXTRA_LIBS='' FB_CONFIG='' GREP='/usr/bin/grep' ICU_CONFIG='' INCLUDES='' INCLUDE_PATH='' INLINE_CFLAGS='' INSTALL_IT='' KRB5_CONFIG='' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='' LN_S='' LTLIBOBJS='' LTP='' LTP_GENHTML='' MANFMT='' NATIVE_RPATHS='' NMEDIT='' OBJEXT='' OCI8_DIR='' OCI8_ORACLE_VERSION='' OCI8_SHARED_LIBADD='' ODBC_INCLUDE='' ODBC_LFLAGS='' ODBC_LIBS='' ODBC_TYPE='' OPENSSL_INCDIR_OPT='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PDO_MYSQL_MODULE_TYPE='' PDO_OCI_DIR='' PDO_OCI_SHARED_LIBADD='' PDO_OCI_VERSION='' PEAR_INSTALLDIR='' PHP_INSTALLED_SAPIS='' PHP_LDFLAGS='' PHP_LIBS='' PHP_VERSION='' PHP_VERSION_ID='' PKG_CONFIG='' PROG_SENDMAIL='' RANLIB='' RE2C='' SED='/usr/bin/sed' SHELL='/bin/sh' SHLIB_DL_SUFFIX_NAME='' SHLIB_SUFFIX_NAME='' SNMP_CONFIG='' STRIP='' TOUCH='' UNZIP='' YACC='' YFLAGS='' ZEND_EXTRA_LIBS='' abs_builddir='' abs_srcdir='' ac_ct_CC='' ac_ct_CXX='' bindir='${exec_prefix}/bin' build='' build_alias='' build_cpu='' build_os='' build_vendor='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='NONE' host='' host_alias='' host_cpu='' host_os='' host_vendor='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' libdir='${exec_prefix}/lib' libexecdir='/usr/local/Cellar/php56/5.6.24/libexec' localedir='${datarootdir}/locale' localstatedir='/usr/local/var' mandir='/usr/local/Cellar/php56/5.6.24/share/man' oldincludedir='/usr/include' pdfdir='${docdir}' php_abs_top_builddir='' php_abs_top_srcdir='' php_fpm_group='' php_fpm_localstatedir='' php_fpm_prefix='' php_fpm_sysconfdir='' php_fpm_systemd='' php_fpm_user='' prefix='/usr/local/Cellar/php56/5.6.24' program_prefix='NONE' program_suffix='NONE' program_transform_name='s,x,x,' psdir='${docdir}' runstatedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='/usr/local/etc/php/5.6' target='' target_alias='' target_cpu='' target_os='' target_vendor='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" configure: caught signal 2 configure: exit 1/!\ the previous config.log is a wrong version This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --prefix=/usr/local/Cellar/php56/5.6.24 --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.6 --with-config-file-path=/usr/local/etc/php/5.6 --with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d --mandir=/usr/local/Cellar/php56/5.6.24/share/man --enable-bcmath --enable-calendar --enable-dba --enable-exif --enable-ftp --enable-gd-native-ttf --enable-mbregex --enable-mbstring --enable-shmop --enable-soap --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --enable-zip --with-freetype-dir=/usr/local/opt/freetype --with-gd --with-gettext=/usr/local/opt/gettext --with-iconv-dir=/usr --with-icu-dir=/usr/local/opt/icu4c --with-jpeg-dir=/usr/local/opt/jpeg --with-kerberos=/usr --with-libedit --with-mhash --with-ndbm=/usr --with-png-dir=/usr/local/opt/libpng --with-xmlrpc --with-zlib=/usr --with-readline=/usr/local/opt/readline --without-gmp --without-snmp --with-libxml-dir=/usr/local/opt/libxml2 --with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc --with-unixODBC=/usr/local/opt/unixodbc --with-apxs2=/usr/sbin/apxs --libexecdir=/usr/local/Cellar/php56/5.6.24/libexec --with-bz2=/usr --disable-debug --with-openssl=/usr/local/opt/openssl --enable-fpm --with-fpm-user=_www --with-fpm-group=_www --with-curl --with-xsl=/usr --with-ldap --with-ldap-sasl=/usr --with-mysql-sock=/tmp/mysql.sock --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --disable-opcache --enable-pcntl --without-pear --enable-dtrace --disable-phpdbg --enable-zend-signals ## --------- ## ## Platform. ## ## --------- ## hostname = Mageekbook-Pro.local uname -m = x86_64 uname -r = 16.6.0 uname -s = Darwin uname -v = Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = Mach kernel version: Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 Kernel configured for up to 4 processors. 2 processors are physically available. 4 processors are logically available. Processor type: x86_64h (Intel x86-64h Haswell) Processors active: 0 1 2 3 Primary memory available: 16.00 gigabytes Default processor set: 495 tasks, 2006 threads, 4 processors Load average: 1.96, Mach factor: 2.03 /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /Users/mageekguy/.composer/vendor/bin PATH: /usr/local/mysql/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/sbin PATH: /sbin ## ----------- ## ## Core tests. ## ## ----------- ## configure:3249: checking for grep that handles long lines and -e configure:3307: result: /usr/bin/grep configure:3312: checking for egrep configure:3374: result: /usr/bin/grep -E configure:3379: checking for a sed that does not truncate output configure:3433: result: /usr/bin/sed configure:3543: checking build system type configure:3557: result: x86_64-apple-darwin16.6.0 configure:3577: checking host system type configure:3590: result: x86_64-apple-darwin16.6.0 configure:3610: checking target system type configure:3623: result: x86_64-apple-darwin16.6.0 configure:3798: checking for cc configure:3814: found /usr/bin/cc configure:3825: result: cc configure:3856: checking for C compiler version configure:3865: cc --version >&5 Apple LLVM version 8.1.0 (clang-802.0.42) Target: x86_64-apple-darwin16.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin configure:3876: $? = 0 configure:3865: cc -v >&5 Apple LLVM version 8.1.0 (clang-802.0.42) Target: x86_64-apple-darwin16.6.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin configure:3876: $? = 0 configure:3865: cc -V >&5 clang: error: argument to '-V' is missing (expected 1 value) clang: error: no input files configure:3876: $? = 1 configure:3865: cc -qversion >&5 clang: error: unknown argument: '-qversion' clang: error: no input files configure:3876: $? = 1 configure:3896: checking whether the C compiler works configure:3918: cc conftest.c >&5 configure:3922: $? = 0 configure:3970: result: yes configure:3973: checking for C compiler default output file name configure:3975: result: a.out configure:3981: checking for suffix of executables configure:3988: cc -o conftest conftest.c >&5 configure:3992: $? = 0 configure:4014: result: configure:4036: checking whether we are cross compiling configure:4044: cc -o conftest conftest.c >&5 configure:4048: $? = 0 configure:4055: ./conftest configure:4059: $? = 0 configure:4074: result: no configure:4079: checking for suffix of object files configure:4101: cc -c conftest.c >&5 configure:4105: $? = 0 configure:4126: result: o configure:4130: checking whether we are using the GNU C compiler configure:4149: cc -c conftest.c >&5 configure:4149: $? = 0 configure:4158: result: yes configure:4167: checking whether cc accepts -g configure:4187: cc -c -g conftest.c >&5 configure:4187: $? = 0 configure:4228: result: yes configure:4245: checking for cc option to accept ISO C89 configure:4308: cc -c -g -O2 conftest.c >&5 configure:4308: $? = 0 configure:4321: result: none needed configure:4347: checking how to run the C preprocessor configure:4378: cc -E conftest.c configure:4378: $? = 0 configure:4392: cc -E conftest.c conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found #include <ac_nonexistent.h> ^ 1 error generated. configure:4392: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4417: result: cc -E configure:4437: cc -E conftest.c configure:4437: $? = 0 configure:4451: cc -E conftest.c conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found #include <ac_nonexistent.h> ^ 1 error generated. configure:4451: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4482: checking for icc configure:4491: result: no configure:4505: checking for suncc configure:4514: result: no configure:4532: checking whether cc understands -c and -o together configure:4560: cc -c conftest.c -o conftest2.o >&5 configure:4564: $? = 0 configure:4570: cc -c conftest.c -o conftest2.o >&5 configure:4574: $? = 0 configure:4629: result: yes configure:4644: checking how to run the C preprocessor configure:4714: result: cc -E configure:4734: cc -E conftest.c configure:4734: $? = 0 configure:4748: cc -E conftest.c conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found #include <ac_nonexistent.h> ^ 1 error generated. configure:4748: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4776: checking for ANSI C header files configure:4796: cc -c -g -O2 conftest.c >&5 configure:4796: $? = 0 configure:4869: cc -o conftest -g -O2 conftest.c >&5 configure:4869: $? = 0 configure:4869: ./conftest configure:4869: $? = 0 configure:4880: result: yes configure:4893: checking for sys/types.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for sys/stat.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for stdlib.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for string.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for memory.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for strings.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for inttypes.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for stdint.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4893: checking for unistd.h configure:4893: cc -c -g -O2 conftest.c >&5 configure:4893: $? = 0 configure:4893: result: yes configure:4906: checking minix/config.h usability configure:4906: cc -c -g -O2 conftest.c >&5 conftest.c:52:10: fatal error: 'minix/config.h' file not found #include <minix/config.h> ^ 1 error generated. configure:4906: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <minix/config.h> configure:4906: result: no configure:4906: checking minix/config.h presence configure:4906: cc -E conftest.c conftest.c:19:10: fatal error: 'minix/config.h' file not found #include <minix/config.h> ^ 1 error generated. configure:4906: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <minix/config.h> configure:4906: result: no configure:4906: checking for minix/config.h configure:4906: result: no configure:4927: checking whether it is safe to define __EXTENSIONS__ configure:4945: cc -c -g -O2 conftest.c >&5 configure:4945: $? = 0 configure:4952: result: yes configure:4967: checking whether ln -s works configure:4971: result: yes configure:4982: checking for system library directory configure:4997: result: lib configure:5006: checking whether to enable runpaths configure:5020: result: yes configure:5027: checking if compiler supports -R configure:5046: cc -o conftest -g -O2 conftest.c -R /usr/lib >&5 warning: unknown remark option '-R' [-Wunknown-warning-option] 1 warning generated. ld: can't map file, errno=22 file '/usr/lib' for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) configure:5046: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:5056: result: no configure:5061: checking if compiler supports -Wl,-rpath, configure:5080: cc -o conftest -g -O2 conftest.c -Wl,-rpath,/usr/lib >&5 configure:5080: $? = 0 configure:5090: result: yes configure:5108: checking for gawk configure:5139: result: no configure:5108: checking for nawk configure:5139: result: no configure:5108: checking for awk configure:5125: found /usr/bin/awk configure:5136: result: awk configure:5159: checking if awk is broken configure:5166: result: no configure:5180: checking for bison configure:5196: found /usr/bin/bison configure:5207: result: bison -y configure:5233: checking for bison version configure:5257: result: invalid configure:5263: WARNING: This bison version is not supported for regeneration of the Zend/PHP parsers (found: 2.3, min: 204, excluded: ). configure:5276: checking for re2c configure:5306: result: no configure:5331: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. configure:5352: checking whether to enable computed goto gcc extension with re2c configure:5366: result: no configure:5462: checking whether cc supports -no-cpp-precomp configure:5479: result: yes configure:5660: checking whether to force non-PIC code in shared modules configure:5674: result: no configure:5692: checking whether /dev/urandom exists configure:5698: result: yes configure:5705: checking whether /dev/arandom exists configure:5714: result: no configure:5729: checking for global register variables support configure:5777: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:44:3: error: "global register variables are not supported" # error "global register variables are not supported" ^ conftest.c:47:28: error: expected string literal in 'asm' register void *FP __asm__(ZEND_VM_FP_GLOBAL_REG); ^ conftest.c:48:45: error: expected string literal in 'asm' register const opcode_handler_t *IP __asm__(ZEND_VM_IP_GLOBAL_REG); ^ conftest.c:50:36: error: use of undeclared identifier 'IP' const opcode_handler_t *orig_ip = IP; ^ conftest.c:51:18: error: use of undeclared identifier 'FP' void *orig_fp = FP; ^ conftest.c:52:2: error: use of undeclared identifier 'IP' IP = ip; ^ conftest.c:53:2: error: use of undeclared identifier 'FP' FP = fp; ^ conftest.c:55:2: error: use of undeclared identifier 'FP' FP = orig_fp; ^ conftest.c:56:2: error: use of undeclared identifier 'IP' IP = orig_ip; ^ 9 errors generated. configure:5777: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | | #if defined(__GNUC__) | # define ZEND_GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__) | #else | # define ZEND_GCC_VERSION 0 | #endif | #if defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(i386) | # define ZEND_VM_FP_GLOBAL_REG "%esi" | # define ZEND_VM_IP_GLOBAL_REG "%edi" | #elif defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(__x86_64__) | # define ZEND_VM_FP_GLOBAL_REG "%r14" | # define ZEND_VM_IP_GLOBAL_REG "%r15" | #elif defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(__powerpc64__) | # define ZEND_VM_FP_GLOBAL_REG "r28" | # define ZEND_VM_IP_GLOBAL_REG "r29" | #elif defined(__IBMC__) && ZEND_GCC_VERSION >= 4002 && defined(__powerpc64__) | # define ZEND_VM_FP_GLOBAL_REG "r28" | # define ZEND_VM_IP_GLOBAL_REG "r29" | #else | # error "global register variables are not supported" | #endif | typedef int (*opcode_handler_t)(void); | register void *FP __asm__(ZEND_VM_FP_GLOBAL_REG); | register const opcode_handler_t *IP __asm__(ZEND_VM_IP_GLOBAL_REG); | int emu(const opcode_handler_t *ip, void *fp) { | const opcode_handler_t *orig_ip = IP; | void *orig_fp = FP; | IP = ip; | FP = fp; | while ((*ip)()); | FP = orig_fp; | IP = orig_ip; | } | | int | main () | { | | | ; | return 0; | } configure:5795: result: no configure:5921: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:5921: $? = 0 configure:5936: checking for pthreads_cflags configure:5966: cc -o conftest -g -O2 -fvisibility=hidden -kthread -no-cpp-precomp conftest.c >&5 clang: error: unknown argument: '-kthread' configure:5966: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | | #include <pthread.h> | #include <stddef.h> | | void *thread_routine(void *data) { | return data; | } | | int main() { | pthread_t thd; | pthread_mutexattr_t mattr; | int data = 1; | pthread_mutexattr_init(&mattr); | return pthread_create(&thd, NULL, thread_routine, &data); | } configure:5966: cc -o conftest -g -O2 -fvisibility=hidden -pthread -no-cpp-precomp conftest.c >&5 configure:5966: $? = 0 configure:5987: result: -pthread configure:5990: checking for pthreads_lib configure:6020: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c -lpthread >&5 configure:6020: $? = 0 configure:6041: result: pthread configure:6119: result: configure:6121: result: [1mConfiguring SAPI modules[m configure:6155: checking for Apache 2.0 handler-module support via DSO through APXS configure:6945: result: yes configure:6983: checking for setproctitle configure:6983: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 Undefined symbols for architecture x86_64: "_setproctitle", referenced from: _main in conftest-33d6fa.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) configure:6983: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | /* Define setproctitle to an innocuous variant, in case <limits.h> declares setproctitle. | For example, HP-UX 11i <limits.h> declares gettimeofday. */ | #define setproctitle innocuous_setproctitle | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setproctitle (); below. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | <limits.h> exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | | #undef setproctitle | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char setproctitle (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_setproctitle || defined __stub___setproctitle | choke me | #endif | | int | main () | { | return setproctitle (); | ; | return 0; | } configure:6983: result: no configure:6995: checking sys/pstat.h usability configure:6995: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:58:10: fatal error: 'sys/pstat.h' file not found #include <sys/pstat.h> ^ 1 error generated. configure:6995: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/pstat.h> configure:6995: result: no configure:6995: checking sys/pstat.h presence configure:6995: cc -E -no-cpp-precomp conftest.c conftest.c:25:10: fatal error: 'sys/pstat.h' file not found #include <sys/pstat.h> ^ 1 error generated. configure:6995: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | #include <sys/pstat.h> configure:6995: result: no configure:6995: checking for sys/pstat.h configure:6995: result: no configure:7006: checking for PS_STRINGS configure:7025: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:26:10: fatal error: 'sys/exec.h' file not found #include <sys/exec.h> ^ 1 error generated. configure:7025: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | /* end confdefs.h. */ | #include <machine/vmparam.h> | #include <sys/exec.h> | | int | main () | { | PS_STRINGS->ps_nargvstr = 1; | PS_STRINGS->ps_argvstr = "foo"; | ; | return 0; | } configure:7033: result: no configure:7041: checking for CLI build configure:7203: result: yes configure:7231: checking for embedded SAPI library support configure:7430: result: no configure:7491: checking for FPM build configure:7494: result: yes configure:7501: checking for setenv configure:7501: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7501: $? = 0 configure:7501: result: yes configure:7501: checking for clearenv configure:7501: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 Undefined symbols for architecture x86_64: "_clearenv", referenced from: _main in conftest-3753c1.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) configure:7501: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | /* end confdefs.h. */ | /* Define clearenv to an innocuous variant, in case <limits.h> declares clearenv. | For example, HP-UX 11i <limits.h> declares gettimeofday. */ | #define clearenv innocuous_clearenv | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char clearenv (); below. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | <limits.h> exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | | #undef clearenv | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char clearenv (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_clearenv || defined __stub___clearenv | choke me | #endif | | int | main () | { | return clearenv (); | ; | return 0; | } configure:7501: result: no configure:7501: checking for setproctitle configure:7501: result: no configure:7511: checking for library containing socket configure:7542: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7542: $? = 0 configure:7559: result: none required configure:7567: checking for library containing inet_addr configure:7598: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7598: $? = 0 configure:7615: result: none required configure:7627: checking errno.h usability configure:7627: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking errno.h presence configure:7627: cc -E -no-cpp-precomp conftest.c configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking for errno.h configure:7627: result: yes configure:7627: checking fcntl.h usability configure:7627: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking fcntl.h presence configure:7627: cc -E -no-cpp-precomp conftest.c configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking for fcntl.h configure:7627: result: yes configure:7627: checking stdio.h usability configure:7627: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking stdio.h presence configure:7627: cc -E -no-cpp-precomp conftest.c configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking for stdio.h configure:7627: result: yes configure:7627: checking for stdlib.h configure:7627: result: yes configure:7627: checking for unistd.h configure:7627: result: yes configure:7627: checking sys/uio.h usability configure:7627: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking sys/uio.h presence configure:7627: cc -E -no-cpp-precomp conftest.c configure:7627: $? = 0 configure:7627: result: yes configure:7627: checking for sys/uio.h configure:7627: result: yes configure:7640: checking sys/select.h usability configure:7640: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking sys/select.h presence configure:7640: cc -E -no-cpp-precomp conftest.c configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking for sys/select.h configure:7640: result: yes configure:7640: checking sys/socket.h usability configure:7640: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking sys/socket.h presence configure:7640: cc -E -no-cpp-precomp conftest.c configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking for sys/socket.h configure:7640: result: yes configure:7640: checking sys/time.h usability configure:7640: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking sys/time.h presence configure:7640: cc -E -no-cpp-precomp conftest.c configure:7640: $? = 0 configure:7640: result: yes configure:7640: checking for sys/time.h configure:7640: result: yes configure:7653: checking arpa/inet.h usability configure:7653: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7653: $? = 0 configure:7653: result: yes configure:7653: checking arpa/inet.h presence configure:7653: cc -E -no-cpp-precomp conftest.c configure:7653: $? = 0 configure:7653: result: yes configure:7653: checking for arpa/inet.h configure:7653: result: yes configure:7653: checking netinet/in.h usability configure:7653: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7653: $? = 0 configure:7653: result: yes configure:7653: checking netinet/in.h presence configure:7653: cc -E -no-cpp-precomp conftest.c configure:7653: $? = 0 configure:7653: result: yes configure:7653: checking for netinet/in.h configure:7653: result: yes configure:7665: checking sysexits.h usability configure:7665: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7665: $? = 0 configure:7665: result: yes configure:7665: checking sysexits.h presence configure:7665: cc -E -no-cpp-precomp conftest.c configure:7665: $? = 0 configure:7665: result: yes configure:7665: checking for sysexits.h configure:7665: result: yes configure:7677: checking for prctl configure:7691: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:38:11: fatal error: 'sys/prctl.h' file not found #include <sys/prctl.h> ^ 1 error generated. configure:7691: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | /* end confdefs.h. */ | #include <sys/prctl.h> | int | main () | { | prctl(0, 0, 0, 0, 0); | ; | return 0; | } configure:7701: result: no configure:7710: checking for clock_gettime configure:7724: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7724: $? = 0 configure:7727: result: yes configure:7844: checking for ptrace configure:7860: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:7860: $? = 0 configure:7863: result: yes configure:7875: checking whether ptrace works configure:7955: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:69:26: warning: 'ePtAttachDeprecated' is deprecated: PT_ATTACH is deprecated. See PT_ATTACHEXC [-Wdeprecated-declarations] if (0 > ptrace(PTRACE_ATTACH, child, 0, 0)) { ^ conftest.c:48:29: note: expanded from macro 'PTRACE_ATTACH' #define PTRACE_ATTACH PT_ATTACH ^ /usr/include/sys/ptrace.h:85:19: note: expanded from macro 'PT_ATTACH' #define PT_ATTACH ePtAttachDeprecated /* trace some running process */ ^ /usr/include/sys/ptrace.h:71:2: note: 'ePtAttachDeprecated' has been explicitly marked deprecated here ePtAttachDeprecated __deprecated_enum_msg("PT_ATTACH is deprecated. See PT_ATTACHEXC") = 10 ^ 1 warning generated. configure:7955: $? = 0 configure:7955: ./conftest configure:7955: $? = 4 configure: program exited with status 4 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | /* end confdefs.h. */ | | #include <unistd.h> | #include <signal.h> | #include <sys/wait.h> | #include <sys/types.h> | #include <sys/ptrace.h> | #include <errno.h> | | #if !defined(PTRACE_ATTACH) && defined(PT_ATTACH) | #define PTRACE_ATTACH PT_ATTACH | #endif | | #if !defined(PTRACE_DETACH) && defined(PT_DETACH) | #define PTRACE_DETACH PT_DETACH | #endif | | #if !defined(PTRACE_PEEKDATA) && defined(PT_READ_D) | #define PTRACE_PEEKDATA PT_READ_D | #endif | | int main() | { | long v1 = (unsigned int) -1; /* copy will fail if sizeof(long) == 8 and we've got "int ptrace()" */ | long v2; | pid_t child; | int status; | | if ( (child = fork()) ) { /* parent */ | int ret = 0; | | if (0 > ptrace(PTRACE_ATTACH, child, 0, 0)) { | return 2; | } | | waitpid(child, &status, 0); | | #ifdef PT_IO | struct ptrace_io_desc ptio = { | .piod_op = PIOD_READ_D, | .piod_offs = &v1, | .piod_addr = &v2, | .piod_len = sizeof(v1) | }; | | if (0 > ptrace(PT_IO, child, (void *) &ptio, 0)) { | ret = 3; | } | #else | errno = 0; | | v2 = ptrace(PTRACE_PEEKDATA, child, (void *) &v1, 0); | | if (errno) { | ret = 4; | } | #endif | ptrace(PTRACE_DETACH, child, (void *) 1, 0); | | kill(child, SIGKILL); | | return ret ? ret : (v1 != v2); | } | else { /* child */ | sleep(10); | return 0; | } | } | configure:7964: result: no configure:7983: checking for mach_vm_read configure:8001: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8001: $? = 0 configure:8004: result: yes configure:8116: checking if gcc supports __sync_bool_compare_and_swap configure:8133: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8133: $? = 0 configure:8135: result: yes configure:8153: checking for TCP_INFO configure:8167: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:45:17: error: variable has incomplete type 'struct tcp_info' struct tcp_info ti; int x = TCP_INFO; ^ conftest.c:45:8: note: forward declaration of 'struct tcp_info' struct tcp_info ti; int x = TCP_INFO; ^ conftest.c:45:29: error: use of undeclared identifier 'TCP_INFO' struct tcp_info ti; int x = TCP_INFO; ^ 2 errors generated. configure:8167: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | /* end confdefs.h. */ | #include <netinet/tcp.h> | int | main () | { | struct tcp_info ti; int x = TCP_INFO; | ; | return 0; | } configure:8175: result: no configure:8188: checking for SO_LISTENQLEN configure:8202: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:45:9: error: use of undeclared identifier 'SO_LISTENQLIMIT' int x = SO_LISTENQLIMIT; int y = SO_LISTENQLEN; ^ conftest.c:45:34: error: use of undeclared identifier 'SO_LISTENQLEN' int x = SO_LISTENQLIMIT; int y = SO_LISTENQLEN; ^ 2 errors generated. configure:8202: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | /* end confdefs.h. */ | #include <sys/socket.h> | int | main () | { | int x = SO_LISTENQLIMIT; int y = SO_LISTENQLEN; | ; | return 0; | } configure:8210: result: no configure:8224: checking for sysconf configure:8238: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8238: $? = 0 configure:8243: result: yes configure:8255: checking for times configure:8269: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8269: $? = 0 configure:8274: result: yes configure:8286: checking for kqueue configure:8310: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8310: $? = 0 configure:8315: result: yes configure:8327: checking for port framework configure:8350: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:45:12: fatal error: 'port.h' file not found #include <port.h> ^ 1 error generated. configure:8350: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | /* end confdefs.h. */ | | #include <port.h> | | int | main () | { | | int port; | | port = port_create(); | if (port < 0) { | return 1; | } | | ; | return 0; | } configure:8360: result: no configure:8367: checking for /dev/poll configure:8392: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:46:12: fatal error: 'sys/devpoll.h' file not found #include <sys/devpoll.h> ^ 1 error generated. configure:8392: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | /* end confdefs.h. */ | | #include <stdio.h> | #include <sys/devpoll.h> | | int | main () | { | | int n, dp; | struct dvpoll dvp; | dp = 0; | dvp.dp_fds = NULL; | dvp.dp_nfds = 0; | dvp.dp_timeout = 0; | n = ioctl(dp, DP_POLL, &dvp) | | ; | return 0; | } configure:8402: result: no configure:8409: checking for epoll configure:8445: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:45:12: fatal error: 'sys/epoll.h' file not found #include <sys/epoll.h> ^ 1 error generated. configure:8445: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | /* end confdefs.h. */ | | #include <sys/epoll.h> | | int | main () | { | | int epollfd; | struct epoll_event e; | | epollfd = epoll_create(1); | if (epollfd < 0) { | return 1; | } | | e.events = EPOLLIN | EPOLLET; | e.data.fd = 0; | | if (epoll_ctl(epollfd, EPOLL_CTL_ADD, 0, &e) == -1) { | return 1; | } | | e.events = 0; | if (epoll_wait(epollfd, &e, 1, 1) < 0) { | return 1; | } | | ; | return 0; | } configure:8455: result: no configure:8462: checking for poll configure:8488: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8488: $? = 0 configure:8493: result: yes configure:8505: checking for select configure:8536: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:8536: $? = 0 configure:8541: result: yes configure:8553: checking for apparmor configure:8570: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c -lapparmor >&5 conftest.c:46:11: fatal error: 'sys/apparmor.h' file not found #include <sys/apparmor.h> ^ 1 error generated. configure:8570: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | #define HAVE_POLL 1 | #define HAVE_SELECT 1 | /* end confdefs.h. */ | #include <sys/apparmor.h> | int | main () | { | change_hat("test", 0); | ; | return 0; | } configure:8581: result: no configure:9247: checking for LiteSpeed support configure:9417: result: no configure:9427: checking for phpdbg support configure:9462: result: no configure:9471: checking for phpdbg web SAPI support configure:9506: result: no configure:9515: checking for phpdbg debug build configure:9529: result: no configure:10090: checking for CGI build configure:10093: result: yes configure:10095: checking for socklen_t in sys/socket.h configure:10104: result: yes configure:10116: checking for sun_len in sys/un.h configure:10125: result: yes configure:10137: checking whether cross-process locking is required by accept() configure:10148: result: no configure:10298: checking for chosen SAPI module configure:10300: result: apache2handler configure:10303: checking for executable SAPI binaries configure:10306: result: cli fpm cgi configure:10359: result: configure:10361: result: [1mRunning system checks[m configure:10369: checking for sendmail configure:10388: found /usr/sbin/sendmail configure:10400: result: /usr/sbin/sendmail configure:10414: checking whether system uses EBCDIC configure:10433: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:10433: $? = 0 configure:10433: ./conftest configure:10433: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | #define HAVE_POLL 1 | #define HAVE_SELECT 1 | #define PHP_FPM_SYSTEMD "simple" | #define PHP_FPM_USER "_www" | #define PHP_FPM_GROUP "_www" | #define HAVE_SOCKLEN_T 1 | #define HAVE_SOCKADDR_UN_SUN_LEN 1 | /* end confdefs.h. */ | | int main(void) { | return (unsigned char)'A' != (unsigned char)0xC1; | } | configure:10447: result: no configure:10456: checking whether byte ordering is bigendian configure:10482: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:10482: $? = 0 configure:10482: ./conftest configure:10482: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | #define HAVE_POLL 1 | #define HAVE_SELECT 1 | #define PHP_FPM_SYSTEMD "simple" | #define PHP_FPM_USER "_www" | #define PHP_FPM_GROUP "_www" | #define HAVE_SOCKLEN_T 1 | #define HAVE_SOCKADDR_UN_SUN_LEN 1 | /* end confdefs.h. */ | | int main(void) | { | short one = 1; | char *cp = (char *)&one; | | if (*cp == 0) { | return(0); | } else { | return(1); | } | } | configure:10493: result: no configure:10503: checking whether writing to stdout works configure:10532: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:58:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] main() ^ 1 warning generated. configure:10532: $? = 0 configure:10532: ./conftest configure:10532: $? = 0 configure:10547: result: yes configure:10602: checking for socket configure:10602: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:10602: $? = 0 configure:10602: result: yes configure:10770: checking for socketpair configure:10770: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:10770: $? = 0 configure:10770: result: yes configure:10938: checking for htonl configure:10938: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:10938: $? = 0 configure:10938: result: yes configure:11106: checking for gethostname configure:11106: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:11106: $? = 0 configure:11106: result: yes configure:11274: checking for gethostbyaddr configure:11274: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:11274: $? = 0 configure:11274: result: yes configure:11442: checking for yp_get_default_domain configure:11442: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:11442: $? = 0 configure:11442: result: yes configure:11611: checking for dlopen configure:11611: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:11611: $? = 0 configure:11611: result: yes configure:11779: checking for sin in -lm configure:11804: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c -lm >&5 conftest.c:67:6: warning: incompatible redeclaration of library function 'sin' [-Wincompatible-library-redeclaration] char sin (); ^ conftest.c:67:6: note: 'sin' is a builtin with type 'double (double)' 1 warning generated. configure:11804: $? = 0 configure:11813: result: yes configure:11830: checking for inet_aton configure:11830: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c -lm >&5 configure:11830: $? = 0 configure:11830: result: yes configure:12130: checking for ANSI C header files configure:12234: result: yes configure:12245: checking for dirent.h that defines DIR configure:12264: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12264: $? = 0 configure:12272: result: yes configure:12285: checking for library containing opendir configure:12316: cc -o conftest -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c -lm >&5 configure:12316: $? = 0 configure:12333: result: none required configure:12460: checking for inttypes.h configure:12460: result: yes configure:12460: checking for stdint.h configure:12460: result: yes configure:12460: checking for dirent.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for ApplicationServices/ApplicationServices.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for sys/param.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for sys/types.h configure:12460: result: yes configure:12460: checking for sys/time.h configure:12460: result: yes configure:12460: checking for netinet/in.h configure:12460: result: yes configure:12460: checking for alloca.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for arpa/inet.h configure:12460: result: yes configure:12460: checking for arpa/nameser.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for assert.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for crypt.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:94:10: fatal error: 'crypt.h' file not found #include <crypt.h> ^ 1 error generated. configure:12460: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_MACH_VM_READ 1 | #define HAVE_BUILTIN_ATOMIC 1 | #define HAVE_SYSCONF 1 | #define HAVE_TIMES 1 | #define HAVE_KQUEUE 1 | #define HAVE_POLL 1 | #define HAVE_SELECT 1 | #define PHP_FPM_SYSTEMD "simple" | #define PHP_FPM_USER "_www" | #define PHP_FPM_GROUP "_www" | #define HAVE_SOCKLEN_T 1 | #define HAVE_SOCKADDR_UN_SUN_LEN 1 | #define PHP_WRITE_STDOUT 1 | #define HAVE_SOCKET 1 | #define HAVE_SOCKETPAIR 1 | #define HAVE_HTONL 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_YP_GET_DEFAULT_DOMAIN 1 | #define HAVE_DLOPEN 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBM 1 | #define HAVE_INET_ATON 1 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_ASSERT_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_SYS_PARAM_H | #include <sys/param.h> | #endif | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_TIME_H | #include <sys/time.h> | #endif | #ifdef HAVE_NETINET_IN_H | #include <netinet/in.h> | #endif | #ifdef HAVE_ARPA_NAMESER_H | #include <arpa/nameser.h> | #endif | | | #include <crypt.h> configure:12460: result: no configure:12460: checking for dns.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for fcntl.h configure:12460: result: yes configure:12460: checking for grp.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 configure:12460: $? = 0 configure:12460: result: yes configure:12460: checking for ieeefp.h configure:12460: cc -c -g -O2 -fvisibility=hidden -no-cpp-precomp conftest.c >&5 conftest.c:97:10: fatal error: 'ieeefp.h' file not found #include <ieeefp.h> ^ 1 error generated. configure:12460: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DEV_URANDOM 1 | #define HAVE_SETENV 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_SYSEXITS_H 1