* Fixes problems with updating CUPS installation (Udo Schweigert) * Fixes conflict with PHP5 when WITH_PHP is not enabled
Responsible Changed From-To: freebsd-ports-bugs->itetcu I'll take it.
Responsible Changed From-To: itetcu->freebsd-ports-bugs I can't easly test this since I still use PHP4 on all my machines.
Please commit that patch. Without it, configure will autodetect and enable php (any version) even when disabled with make config. Additionally if you have php5 without php4 this will break the build. I think that python is also autodetected and should be explicitly disabled in .else clause: --- cups-base.diff begins here --- diff -ruN cups-base.orig/Makefile cups-base/Makefile --- cups-base.orig/Makefile Fri Jun 23 00:01:38 2006 +++ cups-base/Makefile Sat Jun 24 01:42:45 2006 @@ -77,6 +77,8 @@ .if defined(WITH_PYTHON) CONFIGURE_ARGS+= --with-python USE_PYTHON= yes +.else +CONFIGURE_ARGS+= --without-python .endif .if defined(WITH_LIBPAPER) --- cups-base.diff ends here ---
State Changed From-To: open->closed Committed. Thanks!