From: [EMAIL PROTECTED]
Operating system: Linux
PHP version: 4.0.6
PHP Bug Type: Compile Failure
Bug description: php sapi servlet doesn't compile
Setup
Redhat 7.1
Jdk 1.31
The sapi servlet code doesn't compile because the code is in a terrible state. hacking
the makefiles and some of the java code i managed to get it to compile correctly. i'm
pretty much a newbie at this so i'm posting the tentative fixes here.
here are the changes i made to the makefile in sapi/servlet:
phpsrvlt.jar : servlet.java ../../ext/java/reflect.java
$(mkinstalldirs) net/php
@echo library=php4>net/php/reflect.properties
@echo library=php4>net/php/servlet.properties
@cp ../../ext/java/reflect.java .
javac ./reflect.java
@test ! -f reflect.class || mv reflect.class net/php
javac ./servlet.java
@test ! -f servlet.class || mv servlet.class net/php
$(JAVA_JAR)v phpsrvlt.jar net/php/*.class net/php/*.properties
@rm -rf net
i removed the formatter servlet because it's useless
--
Edit Bug report at: http://bugs.php.net/?id=11927&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]