From owner-freebsd-questions@FreeBSD.ORG Wed Dec 17 07:29:17 2008 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 BCF101065677 for ; Wed, 17 Dec 2008 07:29:17 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 7D3148FC1C for ; Wed, 17 Dec 2008 07:29:17 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 6AEBBAFBC02; Tue, 16 Dec 2008 22:29:16 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Wed, 17 Dec 2008 08:29:14 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812170829.15248.fbsd.questions@rachie.is-a-geek.net> Cc: Brett Davidson , Steve Bertrand , Tom Worster Subject: Re: lang/php5 port 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: Wed, 17 Dec 2008 07:29:17 -0000 On Wednesday 17 December 2008 05:16:34 Tom Worster wrote: > On 12/16/08 8:33 PM, "Steve Bertrand" wrote: > > One of the reasons I've had to edit Makefile manually was because a > > client needed JPEG support. > > > > At the time, `make config' didn't provide that option. > > > > You make a couple of valuable points however. It would be easier if the > > OP's demands could be met with your method. > > options such as jpeg, png, freetype were not offered by make config in > lang/php-extensions when i tried it today in 7.0-RELEASE-p6. however, these > extensions that i do need were included with the gd option. Exactly, there are no jpeg_* functions and is no jpeg module for php. Image functions are handled by gd and there's also a PECL extension to work with ImageMagick. Read more about PECL here: http://pecl.php.net/ and all PECL ports for FreeBSD are named pecl-*. So: make -C /usr/ports search name=pecl-* |less will give you an overview of the PECL ports. -- Mel Problem with today's modular software: they start with the modules and never get to the software part.