From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=1.0 required=5.0 tests=DATE_IN_PAST_03_06,DMARC_NONE, MAILING_LIST_MULTI autolearn=no autolearn_force=no version=4.0.0 Received: from mail.fidnet.com (two.fidnet.com [205.216.200.52]) by chiba.3jane.net (Postfix) with SMTP id C118EEC39 for ; Sun, 2 Dec 2001 18:38:58 -0600 (CST) Received: (qmail 29960 invoked from network); 3 Dec 2001 00:38:21 -0000 Received: from unknown (HELO dialup-mo-9.stjames.fidnet.com) (216.229.82.9) by 0 with SMTP; 3 Dec 2001 00:38:21 -0000 From: "Tod M. Neidt" To: gentoo-dev@gentoo.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/0.99.2 (Preview Release) Date: 02 Dec 2001 18:43:07 +0000 Message-Id: <1007318588.21147.0.camel@Q.neidt.net> Mime-Version: 1.0 Subject: [gentoo-dev] php imap configuration Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Developer discussion list List-Unsubscribe: , List-Archive: X-Archives-Salt: a08cbe47-2e87-4874-bcfa-653cf2af12bd X-Archives-Hash: 8ace7317b1c74bc328d9a59caf528f71 Hi! I tried emerging php (php-4.0.6-r3.ebuild) tonight and the build bombed out during configuration. It couldn't find rfc822.h which I believe is related to imap support. I do not have imap is my USE variable. Looking at the ebuild the condition "if" and "fi" are commented out causing --with-imap to always be configured. Is there a reason for this, or is it a typo. The relevant ebuild section is below. # if [ "`use imap`" ] ; then myconf="$myconf --with-imap" # fi The php-4.0.6-r2.ebuild does not have the if's commented out. tod