From patchwork Tue Apr 17 14:44:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 153222 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 51059B703D for ; Wed, 18 Apr 2012 00:54:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id F0638A027D; Tue, 17 Apr 2012 14:54:50 +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 K1TyD26gXUSN; Tue, 17 Apr 2012 14:54:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 9B8DAA018F; Tue, 17 Apr 2012 14:54:45 +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 4926D8F75B for ; Tue, 17 Apr 2012 14:54:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4545FA018F for ; Tue, 17 Apr 2012 14:54:44 +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 kBzyKBfUn70V for ; Tue, 17 Apr 2012 14:54:39 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by hemlock.osuosl.org (Postfix) with ESMTP id 48FC7A014B for ; Tue, 17 Apr 2012 14:54:39 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 3FD0D96AFC; Tue, 17 Apr 2012 14:54:39 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Tue, 17 Apr 2012 16:44:19 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 2f41adabc5a12fcca1de5b6c296c2206b518abff X-Git-Newrev: e5ece0d8eebf2f908b952141130664d3a6430f67 X-Patchwork-Hint: ignore Message-Id: <20120417145439.3FD0D96AFC@busybox.osuosl.org> Subject: [Buildroot] [git commit] 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 commit: http://git.buildroot.net/buildroot/commit/?id=e5ece0d8eebf2f908b952141130664d3a6430f67 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Signed-off-by: Rico Bachmann Signed-off-by: Peter Korsgaard --- package/Config.in | 1 + package/apr/Config.in | 8 ++++++++ package/apr/apr.mk | 18 ++++++++++++++++++ 3 files changed, 27 insertions(+), 0 deletions(-) diff --git a/package/Config.in b/package/Config.in index 567fbed..5ae1c81 100644 --- a/package/Config.in +++ b/package/Config.in @@ -374,6 +374,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))