summaryrefslogtreecommitdiff
path: root/package/apr
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-24 11:30:20 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-24 11:30:20 +0100
commit537a2c4eaa446e52c6ba07007eb9ae75998b5580 (patch)
treeb48cc775042b4274dce470527826007de7a7fa84 /package/apr
parent18b3987c6d890f02c80b976b6cf6835053ef1fe9 (diff)
parentce621815fecece2b4d8a4cb7115eb82c1cb7ed44 (diff)
Merge commit 'origin/confgen'
finally autogenerate menu Config.in files and Depends.mk for packages. thx mirabilos Conflicts: .gitignore Makefile mk/build.mk package/eglibc/Config.in package/glibc/Config.in package/uclibc++/Config.in package/uclibc/Config.in rules.mk
Diffstat (limited to 'package/apr')
-rw-r--r--package/apr/Config.in16
-rw-r--r--package/apr/Makefile7
2 files changed, 7 insertions, 16 deletions
diff --git a/package/apr/Config.in b/package/apr/Config.in
deleted file mode 100644
index 5a875e10e..000000000
--- a/package/apr/Config.in
+++ /dev/null
@@ -1,16 +0,0 @@
-config ADK_PACKAGE_APR
- prompt "apr............................... Apache Portable Runtime"
- tristate
- default n
- help
- Apache Portable Runtime
-
- http://apr.apache.org
-
-config ADK_PACKAGE_APR_THREADING
- prompt "Enable threading support"
- bool
- default n
- depends on ADK_PACKAGE_APR
- help
- Enable threading support in APR.
diff --git a/package/apr/Makefile b/package/apr/Makefile
index bf326d316..5a481234f 100644
--- a/package/apr/Makefile
+++ b/package/apr/Makefile
@@ -6,12 +6,19 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= apr
PKG_VERSION:= 0.9.17
PKG_RELEASE:= 1
+ifeq ($(ADK_PACKAGE_APR_THREADING),y)
+PKG_BUILDDEP+= libpthread
+endif
PKG_MD5SUM:= ca1e22d98081a03a33c2a0b8684eb192
PKG_DESCR:= Apache Portable Runtime library
PKG_SECTION:= libs
PKG_URL:= http://apr.apache.org
PKG_SITES:= http://gd.tuwien.ac.at/infosys/servers/http/apache/dist/${PKG_NAME}/
+PKG_FLAVOURS= THREADING
+PKGFD_FULL= Enable threading support
+
+
include ${TOPDIR}/mk/package.mk
ifeq (${ADK_PACKAGE_APR_THREADING},y)