Date: Sat, 14 Jun 2003 12:00:29 -0700 (PDT) From: Paulius Bulotas <paulius@kaktusas.org> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/53141: mod_php4 does not work with IMAP w/o SSL Message-ID: <200306141900.h5EJ0To8059556@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/53141; it has been noted by GNATS. From: Paulius Bulotas <paulius@kaktusas.org> 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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306141900.h5EJ0To8059556>