Hi,
I am hava trouble trying to install mysql-3.22.32, php-4.0.2, apache_1.3.12 into my redhat linux os.
I was wondering if anyone could help me out?
I am trying to install those and using follwing steps
1) mysql install
prompt> cd /usr/local/src/mysql-3.22.32
prompt> ./configure --prefix=/usr/local/mysql \
--with-unix-soket-path=/usr/local/mysql/tmp \
--with-charset=euc_kr
prompt> make
prompt> make install
prompt> cd /usr/local/mysql/bin
prompt> ./mysql_install_db
==> all ok..!!
2) Apache Configure (1)
prompt> cd /usr/local/src/apache_1.3.12
prompt> ./configure --prefix=/usr/local/apache
==> ok..!!
3) PHP4 Install
prompt> cd /usr/local/src/php-4.0.2
prompt> ./configure --with-mysql=/usr/local/mysql \
--with-apache=../apache_1.3.12 --enable-track-vars \
--with-config-file-path=/usr/local/apache/conf \
--with-mod-charset --with-language=korean --with-charset=euc_kr \
--disable-debug --with-xml --enable-magic-quotes
prompt> make
prompt> make install
==> ok..!!
4) Apache Configuration(2)
prompt> cd /usr/local/apache_1.3.12
prompt> ./configure --prefix=/usr/local/apache \
--activate-module=src/modues/php4/libphp4.a
==> OK!!
prompt> make
....
mod_php4.o(.text+0xd84): undefined reference to php_module_shutdown_for_exec'
mod_php4.o(.text+0xdb1): undefined reference tosapi_startup'
mod_php4.o(.text+0xdc7): undefined reference to core_globals'
modules/php4/libphp4.a(mod_php4.o)(.data+0xc): undefined reference tophp_module_shutdown_wrapper'
modules/php4/libphp4.a(mod_php4.o)(.data+0x28): undefined reference to zend_error'
collect2: ld returned 1 exit status
make[2]: *** [target_static] Error 1
make[2]: Leaving directory/usr/local/src/apache_1.3.12/src'
make[1]: [build-std] Error 2
make[1]: Leaving directory `/usr/local/src/apache_1.3.12'
make: [build] Error 2
prompt>
What's problem?
Thanks
Young-ok