From patchwork Sat Jun 2 15:09:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 162419 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 11A29B700A for ; Sun, 3 Jun 2012 01:09:19 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 156C925A07; Sat, 2 Jun 2012 15:09:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jfAHmQ5OegfD; Sat, 2 Jun 2012 15:09:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9AC0431830; Sat, 2 Jun 2012 15:09:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 9F5958F753 for ; Sat, 2 Jun 2012 15:09:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 89CA18D2C9 for ; Sat, 2 Jun 2012 15:09:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lwdrPbHuIrHy for ; Sat, 2 Jun 2012 15:09:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id D76148BF98 for ; Sat, 2 Jun 2012 15:09:09 +0000 (UTC) Received: from asgard (host4.186-109-25.telecom.net.ar [186.109.25.4]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q52F94ZQ032191 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 2 Jun 2012 12:09:06 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1338649748; bh=GoSQ33fhdYotnoLzqy6/M46qS6VXUj8RMJ2SspM8VjQ=; h=From:To:Cc:Subject:Date:Message-Id; b=BbavIYBZlpbwMt0vk38SdtV2DXBV0RLsxk7r9mlVVJ8UHMEZjxc8uBA1DA53Rvy/T N0/CfEFweaS9MKRiHRBzX7DfQxmIXPQe3sFgyIJWqaHCgQfz5ZjJ3ZHoPmWV9bH/Hw YasT4R4B3clWKqbA0F6Qm1e+SNdcpk8+9YLMXzh0= Received: by asgard (sSMTP sendmail emulation); Sat, 02 Jun 2012 12:09:03 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 2 Jun 2012 12:09:03 -0300 Message-Id: <1338649743-27044-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] php: fix build error for snmp extension X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net PHP requires that net-snmp be built with the ability to load MIB code, so force it on when the extension is enabled. Signed-off-by: Gustavo Zacarias --- package/php/Config.ext | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/package/php/Config.ext b/package/php/Config.ext index fa73bb4..80bab70 100644 --- a/package/php/Config.ext +++ b/package/php/Config.ext @@ -219,6 +219,7 @@ config BR2_PACKAGE_PHP_EXT_FTP config BR2_PACKAGE_PHP_EXT_SNMP bool "SNMP" select BR2_PACKAGE_NETSNMP + select BR2_PACKAGE_NETSNMP_ENABLE_MIBS help SNMP support