unread
Hi tony,
in the FPM config.m4 the command "find" is used to find source file:
PHP_FPM_FILES=cd $abs_srcdir/sapi/fpm && find fpm/ \( -name *.c -not -name fpm_trace*.c \) -exec printf "{} " \;
But the -not argument is not POSIX compliant and is not recognized on
several unix as OpenBSD. This should be replaced by ! which is, of
course, recognized by linux also.
The attached patch corrects this.
++ Jerome