From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 23 23:50:30 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B0516A4A6 for ; Fri, 23 Jun 2006 23:50:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3C3D43D48 for ; Fri, 23 Jun 2006 23:50:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5NNoTJ1001209 for ; Fri, 23 Jun 2006 23:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5NNoTfH001208; Fri, 23 Jun 2006 23:50:29 GMT (envelope-from gnats) Date: Fri, 23 Jun 2006 23:50:29 GMT Message-Id: <200606232350.k5NNoTfH001208@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marcin Wisnicki Cc: Subject: Re: ports/99371: [maintainer] fix serious installation bugs in cups-base X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Wisnicki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:50:30 -0000 The following reply was made to PR ports/99371; it has been noted by GNATS. From: Marcin Wisnicki To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/99371: [maintainer] fix serious installation bugs in cups-base Date: Sat, 24 Jun 2006 01:46:03 +0200 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 ---