From patchwork Tue Apr 17 10:05:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rico Bachmann X-Patchwork-Id: 153111 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 1F454B705E for ; Tue, 17 Apr 2012 20:16:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0BBD110168D; Tue, 17 Apr 2012 10:16:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lyGb4SXOKea3; Tue, 17 Apr 2012 10:16:26 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E56E71016A3; Tue, 17 Apr 2012 10:16:25 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 776D48F75B for ; Tue, 17 Apr 2012 10:16:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 711F020679 for ; Tue, 17 Apr 2012 10:16:25 +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 NZsvM61Tdms8 for ; Tue, 17 Apr 2012 10:16:20 +0000 (UTC) X-Greylist: delayed 00:10:47 by SQLgrey-1.7.6 Received: from mxout0.bln1.prohost.de (mxout0.bln1.prohost.de [213.160.84.46]) by silver.osuosl.org (Postfix) with ESMTPS id 1291920690 for ; Tue, 17 Apr 2012 10:16:19 +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 q3HA5U5k023556; Tue, 17 Apr 2012 12:05:30 +0200 From: Rico Bachmann To: buildroot@uclibc.org Date: Tue, 17 Apr 2012 12:05:25 +0200 Message-Id: <1334657125-30406-1-git-send-email-bachmann@tofwerk.com> X-Mailer: git-send-email 1.7.2.5 X-Null-Tag: b55cf25371571d896fcd83ee887ed76b Cc: Rico Bachmann Subject: [Buildroot] [PATCH] Add libapr-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/libapr/Config.in | 7 +++++++ package/libapr/libapr.mk | 13 +++++++++++++ 3 files changed, 21 insertions(+), 0 deletions(-) create mode 100644 package/libapr/Config.in create mode 100644 package/libapr/libapr.mk diff --git a/package/Config.in b/package/Config.in index 4c6d4d8..ceb5f6d 100644 --- a/package/Config.in +++ b/package/Config.in @@ -376,6 +376,7 @@ source "package/fftw/Config.in" source "package/libargtable2/Config.in" source "package/argp-standalone/Config.in" source "package/boost/Config.in" +source "package/libapr/Config.in" source "package/libatomic_ops/Config.in" source "package/libcap/Config.in" source "package/libcap-ng/Config.in" diff --git a/package/libapr/Config.in b/package/libapr/Config.in new file mode 100644 index 0000000..51dea91 --- /dev/null +++ b/package/libapr/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LIBAPR + + bool "libapr" + 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/libapr/libapr.mk b/package/libapr/libapr.mk new file mode 100644 index 0000000..3bd5eec --- /dev/null +++ b/package/libapr/libapr.mk @@ -0,0 +1,13 @@ +############################################################# +# +# libapr +# +############################################################# +LIBAPR_VERSION = 1.4.6 +LIBAPR_SOURCE = apr-$(LIBAPR_VERSION).tar.gz +LIBAPR_SITE = http://mirror.switch.ch/mirror/apache/dist/apr/ +LIBAPR_INSTALL_STAGING = YES +LIBAPR_INSTALL_TARGET = YES +LIBAPR_CONF_OPT = 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 --enable-shared + +$(eval $(call AUTOTARGETS,package,LIBAPR))