From patchwork Tue Apr 17 10:59:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rico Bachmann X-Patchwork-Id: 153125 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 32999B705F for ; Tue, 17 Apr 2012 21:00:39 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 104D5101721; Tue, 17 Apr 2012 11:00:38 +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 3hCcx+-tVgr1; Tue, 17 Apr 2012 11:00:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 16ED410132D; Tue, 17 Apr 2012 11:00:32 +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 3894A8F78E for ; Tue, 17 Apr 2012 11:00:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 24E648D704 for ; Tue, 17 Apr 2012 11:00:30 +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 QutqTQqz9yCY for ; Tue, 17 Apr 2012 11:00:23 +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 whitealder.osuosl.org (Postfix) with ESMTPS id 18F988D699 for ; Tue, 17 Apr 2012 11:00:22 +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 q3HAxd8a025390; Tue, 17 Apr 2012 13:00:19 +0200 From: Rico Bachmann To: buildroot@busybox.net Date: Tue, 17 Apr 2012 12:59:30 +0200 Message-Id: <1334660370-19506-2-git-send-email-bachmann@tofwerk.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: X-Null-Tag: 11876eb289a705656b47469bf722cc5c 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 | 12 ++++++++++++ 3 files changed, 20 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..57da8ef --- /dev/null +++ b/package/libapr/libapr.mk @@ -0,0 +1,12 @@ +############################################################# +# +# 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_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))