From owner-freebsd-ports@FreeBSD.ORG Thu Dec 17 02:45:02 2009 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF1AB1065672 for ; Thu, 17 Dec 2009 02:45:02 +0000 (UTC) (envelope-from datahead4@gmail.com) Received: from mail-gx0-f218.google.com (mail-gx0-f218.google.com [209.85.217.218]) by mx1.freebsd.org (Postfix) with ESMTP id 7BC318FC0A for ; Thu, 17 Dec 2009 02:45:02 +0000 (UTC) Received: by gxk10 with SMTP id 10so1575182gxk.3 for ; Wed, 16 Dec 2009 18:45:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=yvBHkdCf2lAS4OdJAM2H5JddW7FtbdWNWFUPmRzqWyI=; b=ru8ZyD4VjmcFQViTizMxHL94nxB45e5mp9VPlgHZADZl9uiIr1re9VZkWoA6+AZorE WgFCB42HuGOe78zcJ1n1QntxLhjH0bXmy0cN67xO1IacLwkdglvckk4MN/O07DQ+wJXQ XYuF2/jLNXBwrqdF9X0kbx71OFoUsDZCvqR3w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=iI/8C9DzxWAgZPzyA8mk5aWhVfekDPOYtaDgkiC587hw7ScBZDUqa1scSBh7hvziKA jJMuR98oVN/ww3ud5rBFwfqqcPl7BmRT1fLzVBKutCu9qmc+wh6iVqhRCTPlYNO6ibBA tCgUuq/UXlkgM5qLEQNLEDogJhFg3X9INi0wc= MIME-Version: 1.0 Received: by 10.150.160.17 with SMTP id i17mr3045703ybe.77.1261016140880; Wed, 16 Dec 2009 18:15:40 -0800 (PST) In-Reply-To: <20091217015358.GB88894@ma.sigsys.de> References: <27485796-553F-4396-84A8-11F88968F3C9@niftywerks.com> <20091217015358.GB88894@ma.sigsys.de> Date: Wed, 16 Dec 2009 20:15:40 -0600 Message-ID: From: Matt To: Raphael Becker Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org Subject: Re: FreeBSD Port: php5-mhash-5.2.11_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Dec 2009 02:45:02 -0000 On Wed, Dec 16, 2009 at 7:53 PM, Raphael Becker wrote: > > I disabled those: > #extension=3Dopenssl.so > #extension=3Dpdo_mysql.so > #extension=3Dldap.so > #extension=3Dimap.so > #extension=3Dmhash.so > #extension=3Dftp.so > #extension=3Dcurl.so > #extension=3Dmysqli.so > > > If i enable any of those php will segfault again! > > Looking at the referenced libraries from the ports (usr/local) shows a > hot candidate: > > [root@freebsd ~]# for SO in $(grep ^[#] /usr/local/etc/php/extensions.ini= | > cut -f 2 -d "=3D"); do ldd /usr/local/lib/php/20060613/$SO; done | > grep usr/local | awk '{ print $1 " =3D> " $3 ; }' | sort | uniq -c | sort= -n > > =A0 [snip] > =A0 2 libmysqlclient.so.15 =3D> /usr/local/lib/mysql/libmysqlclient.so.15 > =A0 7 libcrypto.so.5 =3D> /usr/local/lib/libcrypto.so.5 > =A0 7 libssl.so.5 =3D> /usr/local/lib/libssl.so.5 > > 7 out of 8 disabled extensions depend on libcrypto.so.5 and libssl.so.5 > which come from openssl-0.9.8l > You might want to check out this thread: http://lists.freebsd.org/pipermail/freebsd-ports/2009-December/058256.html Perhaps your issues are related. Matt