PHP5 with-tidy on FreeBSD not working

synergy

Verified User
Joined
Nov 8, 2003
Messages
48
Location
Australia
I'm trying to add tidy support to PHP. I've edited my configure.php5 file in custombuild and added

--with-tidy \

When PHP compiles the only reference to tidy in the output is:

checking for TIDY support... no

I get the same message with either ports/www/tidy or ports/www/tidy-devel package installed.

$ which tidy
/usr/local/bin/tidy

This is FreeBSD 7.4. Is there some other package I need to install?
 
OK do one thing install tiddy in /opt/tidy after that use the flag --with-tidy=/opt/tidy
 
Its probably looking for the header files from the devel port.

Did you try --with-tidy=/usr/local

You might want to look in configure.log to see what is going on.
 
Back
Top