Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:5416 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76207 invoked by uid 1010); 13 Nov 2003 07:19:30 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 76171 invoked from network); 13 Nov 2003 07:19:30 -0000 Received: from unknown (HELO lt1.firehawksystems.com) (64.71.143.247) by pb1.pair.com with SMTP; 13 Nov 2003 07:19:30 -0000 Received: from wireless-laptop.firehawksystems.com (adsl-63-200-106-11.dsl.sktn01.pacbell.net [63.200.106.11]) (authenticated bits=0) by lt1.firehawksystems.com (8.12.10/8.12.9) with ESMTP id hAD7JROU024734 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 12 Nov 2003 23:19:28 -0800 Date: Wed, 12 Nov 2003 23:19:22 -0800 To: internals@lists.php.net Cc: sas@php.net, sniper@php.net Message-ID: <20031112231922275526.GyazMail.list@firehawksystems.com> Mime-Version: 1.0 (GMessage framework 0.9.9.9.4) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: GyazMail version 0.9.9.9.4 Subject: patch review for acinclude.m4 From: list@firehawksystems.com ("Brian J. France") If there are no objections I plan on committing this tomorrow on both HEAD and PHP_4_3 branches. This fixes the openssl FreeBSD problem I posted about earlier. Is there a better way of fixing it? Brian Index: acinclude.m4 =================================================================== RCS file: /repository/php-src/acinclude.m4,v retrieving revision 1.264 diff -u -p -r1.264 acinclude.m4 --- acinclude.m4 3 Oct 2003 04:29:13 -0000 1.264 +++ acinclude.m4 13 Nov 2003 07:08:28 -0000 @@ -1659,6 +1659,10 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ -L$OPENSSL_LIBDIR ]) + dnl openssl on FreeBSD doesn't have a dependence on crypto + dnl force it + LIBS="$LIBS -lcrypto"; + PHP_CHECK_LIBRARY(ssl, SSL_CTX_set_ssl_version, [ PHP_ADD_LIBRARY(ssl,,$1) found_openssl=yes