* [Buildroot] [PATCH] boost: only the iostreams library requires bzip2
@ 2013-06-10 18:42 Will Wagner
2013-06-10 21:11 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Will Wagner @ 2013-06-10 18:42 UTC (permalink / raw)
To: buildroot
Signed-off-by: Will Wagner <will_wagner@carallon.com>
---
package/boost/Config.in | 4 ++++
package/boost/boost.mk | 6 +++++-
2 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/package/boost/Config.in b/package/boost/Config.in
index 5c65b2f..fbe99d0 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -18,6 +18,9 @@ config BR2_PACKAGE_BOOST
if BR2_PACKAGE_BOOST
+config BR2_PACKAGE_BOOST_REQUIRES_BZIP2
+ bool
+
config BR2_PACKAGE_BOOST_CHRONO
bool "boost-chrono"
@@ -43,6 +46,7 @@ config BR2_PACKAGE_BOOST_GRAPH_PARALLEL
config BR2_PACKAGE_BOOST_IOSTREAMS
bool "boost-iostreams"
+ select BR2_PACKAGE_BOOST_REQUIRES_BZIP2
config BR2_PACKAGE_BOOST_LOCALE
depends on BR2_USE_WCHAR
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index d11f378..c733b89 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -12,7 +12,7 @@ BOOST_INSTALL_STAGING = YES
TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
-BOOST_DEPENDENCIES = bzip2 zlib
+BOOST_DEPENDENCIES = zlib
BOOST_FLAGS =
@@ -48,6 +48,10 @@ else
BOOST_FLAGS += --without-icu
endif
+ifeq ($(BR2_PACKAGE_BOOST_REQUIRES_BZIP2),y)
+BOOST_DEPENDENCIES += bzip2
+endif
+
BOOST_OPT += toolset=gcc \
threading=multi \
variant=$(if $(BR2_ENABLE_DEBUG),debug,release) \
--
1.7.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] boost: only the iostreams library requires bzip2
2013-06-10 18:42 [Buildroot] [PATCH] boost: only the iostreams library requires bzip2 Will Wagner
@ 2013-06-10 21:11 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2013-06-10 21:11 UTC (permalink / raw)
To: buildroot
>>>>> "Will" == Will Wagner <will_wagner@carallon.com> writes:
Will> Signed-off-by: Will Wagner <will_wagner@carallon.com>
Will> ---
Will> package/boost/Config.in | 4 ++++
Will> package/boost/boost.mk | 6 +++++-
Will> 2 files changed, 9 insertions(+), 1 deletions(-)
Will> diff --git a/package/boost/Config.in b/package/boost/Config.in
Will> index 5c65b2f..fbe99d0 100644
Will> --- a/package/boost/Config.in
Will> +++ b/package/boost/Config.in
Will> @@ -18,6 +18,9 @@ config BR2_PACKAGE_BOOST
Will> if BR2_PACKAGE_BOOST
Will> +config BR2_PACKAGE_BOOST_REQUIRES_BZIP2
Will> + bool
Will> +
Will> config BR2_PACKAGE_BOOST_CHRONO
Will> bool "boost-chrono"
Will> @@ -43,6 +46,7 @@ config BR2_PACKAGE_BOOST_GRAPH_PARALLEL
Will> config BR2_PACKAGE_BOOST_IOSTREAMS
Will> bool "boost-iostreams"
Will> + select BR2_PACKAGE_BOOST_REQUIRES_BZIP2
You should just move the 'select BR2_PACKAGE_BZIP2' here.
Will> config BR2_PACKAGE_BOOST_LOCALE
Will> depends on BR2_USE_WCHAR
Will> diff --git a/package/boost/boost.mk b/package/boost/boost.mk
Will> index d11f378..c733b89 100644
Will> --- a/package/boost/boost.mk
Will> +++ b/package/boost/boost.mk
Will> @@ -12,7 +12,7 @@ BOOST_INSTALL_STAGING = YES
Will> TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
Will> -BOOST_DEPENDENCIES = bzip2 zlib
Will> +BOOST_DEPENDENCIES = zlib
Will> BOOST_FLAGS =
Will> @@ -48,6 +48,10 @@ else
Will> BOOST_FLAGS += --without-icu
Will> endif
Will> +ifeq ($(BR2_PACKAGE_BOOST_REQUIRES_BZIP2),y)
And change this to BR2_PACKAGE_BOOST_IOSTREAMS (unless we have reason to
expect other parts of boost will need it as well in the future, but
that's probable unlikely).
Will> +BOOST_DEPENDENCIES += bzip2
Will> +endif
Will> +
Will> BOOST_OPT += toolset=gcc \
Will> threading=multi \
Will> variant=$(if $(BR2_ENABLE_DEBUG),debug,release) \
Will> --
Will> 1.7.2.5
Will> _______________________________________________
Will> buildroot mailing list
Will> buildroot at busybox.net
Will> http://lists.busybox.net/mailman/listinfo/buildroot
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-10 21:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-10 18:42 [Buildroot] [PATCH] boost: only the iostreams library requires bzip2 Will Wagner
2013-06-10 21:11 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox