I am attempting to install swf support in php 4.0.2 (with apache 1.3.12 on a FreeBSD 4.1 machine), everything configures and compiles fine, but when I actually go and try and start apache, it says
Cannot load /usr/local/apache_1.3.12/libexec/libphp4.so into server: /usr/local/apache_1.3.12/libexec/libphp4.so: Undefined symbol "swf_placeobject"
Now, I am trying to install a lot a other stuff along with it: my apache config is like this :
./configure \
"--with-layout=Apache" \
"--enable-module=ssl" \
"--activate-module=src/modules/frontpage/mod_frontpage.o" \
"--prefix=/usr/local/apache_1.3.12" \
"--enable-module=most" \
"--enable-shared=max" \
"--with-perl=/usr/bin/perl" \
"--enable-suexec" \
"--server-uid=www" \
"--server-gid=www" \
"--suexec-caller=www" \
"--suexec-logfile=/usr/local/apache/logs/suexec.log" \
"--suexec-uidmin=1000" \
"--suexec-gidmin=1000" \
"--fpexec-caller=www" \
"--fpexec-logfile=/usr/local/apache/logs/fpexec.log" \
"--fpexec-uidmin=1000" \
"--fpexec-gidmin=1000" \
"--fpexec-fpdir=/usr/local/frontpage/version4.0/exes" \
"--fpexec-fpuser=bin" \
"--fpexec-fpgroup=bin" \
and my php config is...
./configure --with-apxs=/usr/local/apache/bin/apxs --with-mm=/usr/local/mm --enable-sysvsem --enable-sysvshm
--with-mysql=/usr/local/mysql --with-imap=../imap-4.7 --enable-ftp --with-gd=/usr/local --with-jpeg-dir=/usr/local
--with-png-dir=/usr/local --enable-memory-limit --with-config-file-path=/usr/local/apache/conf --with-swf=/u/src/dist
Now this exact configuration works fine without the flash option.
anybody know of any problems with flash and php 4.0.2?
Thanks
MIke