php-clamav.spec should not use setup -c
Brought to you by:
argos66
The spec file uses the "-c" option to setup, which creates a directory. Then it unarchives itself into that directory, which also creates a directory with the name of the archive. The problem with that is that phpize cannot find config.m4 then. I made the following change, which helped.
[bbuilder@block01 ~]$ diff rpmbuild/SPECS/php-clamav.spec Z/php-clamav-0.15.8/SPECS/php-clamav.spec 30c30 < %setup -q php-%{php_libname}-%{version} --- > %setup -q -c php-%{php_libname}-%{version}
Additionally, it appears to require openssl(-devel)...
Thanks for your report, I have commit your change to SVN.