From owner-freebsd-ports@FreeBSD.ORG Tue Jul 9 09:36:43 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B26D6150; Tue, 9 Jul 2013 09:36:43 +0000 (UTC) (envelope-from subbsd@gmail.com) Received: from mail-pd0-x235.google.com (mail-pd0-x235.google.com [IPv6:2607:f8b0:400e:c02::235]) by mx1.freebsd.org (Postfix) with ESMTP id 8F9C613CA; Tue, 9 Jul 2013 09:36:43 +0000 (UTC) Received: by mail-pd0-f181.google.com with SMTP id 14so5013634pdj.40 for ; Tue, 09 Jul 2013 02:36:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=QmAnXWA25JHvuDa8UlCDEuGO6B2srtp+vxjP5F1VzrQ=; b=mLXnV8ASUuIK0JR8QxISTChmUIvvLNuLn7OIHoO8iqxNFdjuv4KYm1ehgphJZdRWfq Yaj65yh0vWepqAOYUqR0GF7C6xU28d+ICcagXdeXoLhhxUXRnMHWcJ0Xb/uFzIOjVbaW te4c/bGdbkM8rBxTTzpSlsBgGxbj4b7ki6E7pICwcoHHzOjDa4S5l5XlI9Sh83IeEZ6k weCAQXk2T9YotfDvZE1JY1mqx4bRw7EPrBgUA3/mx+/9UmbXlOOh8plusCmKT7zz+aXt JtuikGI5F1S3MA/RKDxHBxZeYvIfJJazhLBOf7sm7ixQgWPrr1QKKE238hSEAtaOON5z ZYLg== MIME-Version: 1.0 X-Received: by 10.68.107.226 with SMTP id hf2mr25684700pbb.28.1373362603245; Tue, 09 Jul 2013 02:36:43 -0700 (PDT) Received: by 10.70.32.67 with HTTP; Tue, 9 Jul 2013 02:36:43 -0700 (PDT) Date: Tue, 9 Jul 2013 13:36:43 +0400 Message-ID: Subject: lang/php55 and buildin opcode From: Subbsd To: ports-list freebsd , ale@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2013 09:36:43 -0000 Hi, ive try to add into the port options for Zend Opcode: .. + --enable-opcache \ .. -OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR -OPTIONS_DEFAULT=CLI CGI IPV6 LINKTHR +OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR OPCACHE +OPTIONS_DEFAULT=CLI CGI IPV6 LINKTHR OPCACHE .. +OPCACHE_DESC= Enable Zend OPcache support .. +.if empty(PORT_OPTIONS:MOPCACHE) +CONFIGURE_ARGS+=--disable-opcache +.endif .. which is now part of php55. But when i build php55 --enable-opcache, i do not see via phpinfo something about OpCode support. So, www/pecl-zendopcache is still necessary for lang/php55 when we need for zend opcode? Thanks