From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 14 12:00:30 2003 Return-Path: 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 3939C37B404 for ; Sat, 14 Jun 2003 12:00:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB49243FCB for ; Sat, 14 Jun 2003 12:00:29 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5EJ0TUp059557 for ; Sat, 14 Jun 2003 12:00:29 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5EJ0To8059556; Sat, 14 Jun 2003 12:00:29 -0700 (PDT) Date: Sat, 14 Jun 2003 12:00:29 -0700 (PDT) Message-Id: <200306141900.h5EJ0To8059556@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Paulius Bulotas Subject: Re: ports/53141: mod_php4 does not work with IMAP w/o SSL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paulius Bulotas List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 19:00:30 -0000 The following reply was made to PR ports/53141; it has been noted by GNATS. From: Paulius Bulotas To: freebsd-gnats-submit@FreeBSD.org Cc: fbsd-bugs@tschneider.org Subject: Re: ports/53141: mod_php4 does not work with IMAP w/o SSL Date: Sat, 14 Jun 2003 22:00:15 +0300 Hi, I've been bitten by this too ;) You could use the following diff, or use the same define as cclient uses, WITHOUT_SSL instead of WITHOUT_IMAP_SSL. --- lang/php4/Makefile.orig Sat Jun 14 18:54:03 2003 +++ lang/php4/Makefile Sat Jun 14 18:55:06 2003 @@ -311,7 +311,11 @@ .if defined(WITH_IMAP) LIB_DEPENDS+= c-client4.8:${PORTSDIR}/mail/cclient +.if defined(WITHOUT_IMAP_SSL) +CONFIGURE_ARGS+=--with-imap=${LOCALBASE} +.else CONFIGURE_ARGS+=--with-imap=${LOCALBASE} --with-imap-ssl=${LOCALBASE} +.endif .endif .if defined(WITH_INTERBASE)