From owner-freebsd-questions@FreeBSD.ORG Fri Dec 17 05:17:28 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 128EC10656D2 for ; Fri, 17 Dec 2010 05:17:28 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id C0C5D8FC28 for ; Fri, 17 Dec 2010 05:17:27 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PTSh2-0001El-LF for freebsd-questions@freebsd.org; Fri, 17 Dec 2010 06:17:24 +0100 Received: from pool-173-79-85-36.washdc.fios.verizon.net ([173.79.85.36]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Dec 2010 06:17:24 +0100 Received: from nightrecon by pool-173-79-85-36.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Dec 2010 06:17:24 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Fri, 17 Dec 2010 00:18:57 -0500 Lines: 50 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-85-36.washdc.fios.verizon.net Subject: Re: Can't Build Port - pecl-intl X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2010 05:17:28 -0000 Kevin McQuiggin wrote: > Hi All: > > I am trying to upgrade my "RoundCube" webmail port, but the build fails > when trying to build the dependency port "pecl-intl": > > ========== > highgate# pwd > /usr/ports/devel/pecl-intl > highgate# make > ===> pecl-intl-1.1.2_2 depends on file: /usr/local/bin/phpize - found > ===> pecl-intl-1.1.2_2 depends on file: /usr/local/bin/autoconf-2.68 - > found > ===> pecl-intl-1.1.2_2 depends on shared library: icui18n.46 - found > ===> PHPizing for pecl-intl-1.1.2_2 > Configuring for: > PHP Api Version: 20090626 > Zend Module Api No: 20090626 > Zend Extension Api No: 220090626 > Cannot find autoconf. Please check your autoconf installation and the > $PHP_AUTOCONF environment variable. Then, rerun this script. > > *** Error code 1 > > Stop in /usr/ports/devel/pecl-intl. > ========== > > The problem seems to be with the make failing to find "autoconf", which is > indeed installed correctly. Note that the preamble indicates > "autoconf-2.68 - found" yet the later step says it cannot be found. > > Any help would be appreciated. My ports are current, via "portsnap fetch > update" done daily. I am running FreeBSD 6.3. > This error has been around forever, and just resurfaces periodically. If you just want to get the port built set some environment variables to sidestep it. setenv PHP_AUTOCONF autoconf-2.68 setenv PHP_AUTOHEADER autoheader-2.68 Just had to do this to upgrade xcache. -Mike