|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-10 16:06 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 12:00:02 2025 UTC |
Description: ------------ The "/usr/bin/test" command of Solaris OS does not have "-e" argument. Therefore, it becomes the error of the following: % ./configure --with-apxs=/usr/local/apache/bin/apxs \ --enable-mbstring=shared \ --enable-mbregex=shared . . . checking whether to enable multibyte string support... yes, shared checking whether to enable multibyte regex support... shared checking for external libmbfl... no ./configure: test: argument expected Reproduce code: --------------- diff configure.org configure 47430c47430 < if test -e "$ext_builddir/config.h.in"; then --- > if test -f "$ext_builddir/config.h.in"; then