From patchwork Tue Apr 17 14:35:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rico Bachmann X-Patchwork-Id: 153190 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id B23CDB702D for ; Wed, 18 Apr 2012 00:35:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 991D7A027C; Tue, 17 Apr 2012 14:35:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rOV5iAOvvfQN; Tue, 17 Apr 2012 14:35:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 79C3EA027E; Tue, 17 Apr 2012 14:35:43 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 9A86C8F75B for ; Tue, 17 Apr 2012 14:35:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 97890A0200 for ; Tue, 17 Apr 2012 14:35:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IiU5N4G8ErbF for ; Tue, 17 Apr 2012 14:35:37 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mxout1.bln1.prohost.de (mxout1.bln1.prohost.de [213.160.84.47]) by hemlock.osuosl.org (Postfix) with ESMTPS id BB794A0006 for ; Tue, 17 Apr 2012 14:35:36 +0000 (UTC) Received: from workingdebian.tofwerk (52-134.107-92.cust.bluewin.ch [92.107.134.52]) (authenticated bits=0) by mx1.bln1.prohost.de (8.14.1/8.14.1) with ESMTP id q3HEZODx003116; Tue, 17 Apr 2012 16:35:31 +0200 From: Rico Bachmann To: buildroot@uclibc.org Date: Tue, 17 Apr 2012 16:35:16 +0200 Message-Id: <1334673316-28944-2-git-send-email-bachmann@tofwerk.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1334673316-28944-1-git-send-email-bachmann@tofwerk.com> References: <1334673316-28944-1-git-send-email-bachmann@tofwerk.com> X-Null-Tag: fa542663eaba11af3809dccf96186cbf Cc: Rico Bachmann Subject: [Buildroot] [PATCH] Add apr-package 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 Signed-off-by: Rico Bachmann --- package/Config.in | 1 + package/apr/Config.in | 8 ++++++++ package/apr/apr.mk | 18 ++++++++++++++++++ 3 files changed, 27 insertions(+), 0 deletions(-) create mode 100644 package/apr/Config.in create mode 100644 package/apr/apr.mk diff --git a/package/Config.in b/package/Config.in index 4c6d4d8..bf1bdcf 100644 --- a/package/Config.in +++ b/package/Config.in @@ -372,6 +372,7 @@ source "package/zeromq/Config.in" endmenu menu "Other" +source "package/apr/Config.in" source "package/fftw/Config.in" source "package/libargtable2/Config.in" source "package/argp-standalone/Config.in" diff --git a/package/apr/Config.in b/package/apr/Config.in new file mode 100644 index 0000000..292cadb --- /dev/null +++ b/package/apr/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_APR + bool "apr" + help + The mission of the Apache Portable Runtime (APR) project is to create + and maintain software libraries that provide a predictable and + consistent interface to underlying platform-specific implementations + + http://apr.apache.org/ diff --git a/package/apr/apr.mk b/package/apr/apr.mk new file mode 100644 index 0000000..3158913 --- /dev/null +++ b/package/apr/apr.mk @@ -0,0 +1,18 @@ +############################################################# +# +# apr +# +############################################################# +APR_VERSION = 1.4.6 +APR_SITE = http://archive.apache.org/dist/apr +APR_INSTALL_STAGING = YES +APR_CONF_ENV = \ + ac_cv_file__dev_zero=yes \ + ac_cv_func_setpgrp_void=yes \ + apr_cv_process_shared_works=yes \ + apr_cv_mutex_robust_shared=no \ + apr_cv_tcp_nodelay_with_cork=yes \ + ac_cv_sizeof_struct_iovec=8 \ + apr_cv_mutex_recursive=yes + +$(eval $(call AUTOTARGETS))