Click to See Complete Forum and Search --> : php compiling inq


robin1
11-22-2003, 12:31 AM
hello everybody,
trying to install php..
i ran the make and it did whatever it does...
then i ran make install, the following is what make install did... based on the time it took to compile it didn't talke too long to make install. just wondering if theres more to this then the follwing: should there be more?? its kinda strange it took longer to make then to install

[root@voyager php-4.3.4]# make install
Installing PHP CLI binary: /wwwroot/php/bin/
Installing PHP CLI man page: /wwwroot/php/man/man1/
Installing PHP SAPI module: apache2handler
/wwwroot/build/instdso.sh SH_LIBTOOL='/wwwroot/build/libtool' libphp4.la /wwwroot/modules
/wwwroot/build/libtool --mode=install cp libphp4.la /wwwroot/modules/
cp .libs/libphp4.so /wwwroot/modules/libphp4.so
cp .libs/libphp4.lai /wwwroot/modules/libphp4.la
libtool: install: warning: remember to run `libtool --finish /downloads/php-4.3.4/libs'
chmod 755 /wwwroot/modules/libphp4.so
[activating module `php4' in /wwwroot/conf/httpd.conf]
Installing shared extensions: /wwwroot/php/lib/php/extensions/no-debug-non-zts-20020429/
Installing PEAR environment: /wwwroot/php/lib/php/
[PEAR] Archive_Tar - already installed: 1.1
[PEAR] Console_Getopt - already installed: 1.0
[PEAR] PEAR - already installed: 1.3b3
Wrote PEAR system config file at: /wwwroot/php/etc/pear.conf
You may want to add: /wwwroot/php/lib/php to your php.ini include_path
[PEAR] DB - already installed: 1.5.0RC2
[PEAR] HTTP - already installed: 1.2.1
[PEAR] Mail - already installed: 1.1.1
[PEAR] Net_SMTP - already installed: 1.2.3
[PEAR] Net_Socket - already installed: 1.0.1
[PEAR] XML_Parser - already installed: 1.0.1
[PEAR] XML_RPC - already installed: 1.0.4
Installing build environment: /wwwroot/php/lib/php/build/
Installing header files: /wwwroot/php/include/php/
Installing helper programs: /wwwroot/php/bin/
program: phpize
program: php-config
program: phpextdist
[root@voyager php-4.3.4]#

theN
11-22-2003, 02:57 AM
Hi

:) felt the same the first time. Yes, thats all there's to the installation.

As long as it works, why bother!

best regards
akr

PS: does your install work?

Choozo
11-24-2003, 11:51 AM
It should take longer to 'make' than 'make install', as the 'make' is the actual compiling of the program and 'make install' just copies a few files to new locations.
So your findings are quite normal.

Cheers :)