Hi,
I´m trying to install PHP as CGI in Solaris 5.8. When I type ./configue (without options to install as CGI), after when I type make, it appears the following:
make
Making all in libzend
make[1]: Entering directory /nacho/php-4.0b2/libzend'
make[1]: *** No rule to make targetall'. Stop.
make[1]: Leaving directory /nacho/php-4.0b2/libzend'
Making all in ext
make[1]: Entering directory/nacho/php-4.0b2/ext'
Making all in db
make[2]: Entering directory /nacho/php-4.0b2/ext/db'
rm -f libphpext_db.a
ar cru libphpext_db.a db.o
make[2]: ar: Command not found
make[2]: *** [libphpext_db.a] Error 127
make[2]: Leaving directory/nacho/php-4.0b2/ext/db'
make[1]: [all-recursive] Error 1
make[1]: Leaving directory `/nacho/php-4.0b2/ext'
make: [all-recursive] Error 1
If I try to execute make install, it appears the following:
make install
if test "" != ""; then \
for dir in X ; do \
test -d ext/$dir && (cd ext/$dir; make install); \
done; \
fi
Making all in libzend
make[1]: Entering directory /nacho/php-4.0b2/libzend'
make[1]: *** No rule to make targetall'. Stop.
make[1]: Leaving directory /nacho/php-4.0b2/libzend'
Making all in ext
make[1]: Entering directory/nacho/php-4.0b2/ext'
Making all in db
make[2]: Entering directory /nacho/php-4.0b2/ext/db'
rm -f libphpext_db.a
ar cru libphpext_db.a db.o
make[2]: ar: Command not found
make[2]: *** [libphpext_db.a] Error 127
make[2]: Leaving directory/nacho/php-4.0b2/ext/db'
make[1]: [all-recursive] Error 1
make[1]: Leaving directory `/nacho/php-4.0b2/ext'
make: [all-recursive] Error 1
In order to these error, the instalation doesn´t work, because I can´t find my executable php in /usr/bin neither /usr/local/bin , neither /usr/sbin.
Thanks,