Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken
@ 2011-05-02 19:08 Gustavo Zacarias
  2011-05-02 19:08 ` [Buildroot] [PATCH 2/3] libxml2: fixup configure options Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-05-02 19:08 UTC (permalink / raw)
  To: buildroot

mklibs is a broken option, so mark it as so pending a proper fixup or
punting it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 toolchain/mklibs/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/toolchain/mklibs/Config.in b/toolchain/mklibs/Config.in
index 2298a3e..c065866 100644
--- a/toolchain/mklibs/Config.in
+++ b/toolchain/mklibs/Config.in
@@ -1,5 +1,6 @@
 config BR2_MKLIBS
 	bool "Run mklibs on the built root filesystem"
+	depends on BROKEN
 	help
 	  Recompiles all the shared libraries to only include the
 	  symbols actually needed to run the binaries on the target
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/3] libxml2: fixup configure options
  2011-05-02 19:08 [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Gustavo Zacarias
@ 2011-05-02 19:08 ` Gustavo Zacarias
  2011-05-02 19:40   ` Peter Korsgaard
  2011-05-02 19:08 ` [Buildroot] [PATCH 3/3] libxslt: " Gustavo Zacarias
  2011-05-02 19:40 ` [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2011-05-02 19:08 UTC (permalink / raw)
  To: buildroot

Some configure options changed so adjust.
Forcibly disabling threads isn't good and also it's detected by
configure when there are no threads.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libxml2/libxml2.mk |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk
index 2a267b2..8f2878d 100644
--- a/package/libxml2/libxml2.mk
+++ b/package/libxml2/libxml2.mk
@@ -12,10 +12,7 @@ ifneq ($(BR2_LARGEFILE),y)
 LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE"
 endif
 
-LIBXML2_CONF_OPT = --with-gnu-ld --enable-shared \
-		--enable-static \
-		--without-debugging --without-python \
-		--without-threads
+LIBXML2_CONF_OPT = --with-gnu-ld --without-python --without-debug
 
 define LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP
 	$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config
@@ -26,9 +23,7 @@ LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP
 
 HOST_LIBXML2_DEPENDENCIES = host-pkg-config
 
-HOST_LIBXML2_CONF_OPT = \
-		--enable-shared --without-debugging --without-python \
-		--without-threads
+HOST_LIBXML2_CONF_OPT = --without-debug --without-python
 
 define LIBXML2_REMOVE_CONFIG_SCRIPTS
 	$(RM) -f $(TARGET_DIR)/usr/bin/xml2-config
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 3/3] libxslt: fixup configure options
  2011-05-02 19:08 [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Gustavo Zacarias
  2011-05-02 19:08 ` [Buildroot] [PATCH 2/3] libxml2: fixup configure options Gustavo Zacarias
@ 2011-05-02 19:08 ` Gustavo Zacarias
  2011-05-02 19:41   ` Peter Korsgaard
  2011-05-02 19:40 ` [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2011-05-02 19:08 UTC (permalink / raw)
  To: buildroot

Some configure options changed so adjust.
Forcibly disabling threads isn't good and also it's detected by
configure when there are no threads.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libxslt/libxslt.mk |   13 +++----------
 1 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
index 1efdcf8..07f6697 100644
--- a/package/libxslt/libxslt.mk
+++ b/package/libxslt/libxslt.mk
@@ -15,19 +15,12 @@ else
 LIBXSLT_XTRA_CONF_OPT = --without-crypto
 endif
 
-LIBXSLT_CONF_OPT = --with-gnu-ld --enable-shared \
-		--enable-static $(LIBXSLT_XTRA_CONF_OPT) \
-		--without-debugging --without-python \
-		--without-threads \
-		--with-libxml-prefix=$(STAGING_DIR)/usr/
+LIBXSLT_CONF_OPT = --with-gnu-ld $(LIBXSLT_XTRA_CONF_OPT) --without-debug \
+		--without-python --with-libxml-prefix=$(STAGING_DIR)/usr/
 
 LIBXSLT_DEPENDENCIES = libxml2 $(LIBXSLT_DEPENDENCIES_EXTRA)
 
-HOST_LIBXSLT_CONF_OPT = --enable-shared \
-			--without-debugging \
-			--without-python \
-			--without-threads \
-			--without-crypto
+HOST_LIBXSLT_CONF_OPT = --without-debug --without-python --without-crypto
 
 HOST_LIBXSLT_DEPENDENCIES = host-libxml2
 
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken
  2011-05-02 19:08 [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Gustavo Zacarias
  2011-05-02 19:08 ` [Buildroot] [PATCH 2/3] libxml2: fixup configure options Gustavo Zacarias
  2011-05-02 19:08 ` [Buildroot] [PATCH 3/3] libxslt: " Gustavo Zacarias
@ 2011-05-02 19:40 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2011-05-02 19:40 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> mklibs is a broken option, so mark it as so pending a proper fixup or
 Gustavo> punting it.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/3] libxml2: fixup configure options
  2011-05-02 19:08 ` [Buildroot] [PATCH 2/3] libxml2: fixup configure options Gustavo Zacarias
@ 2011-05-02 19:40   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2011-05-02 19:40 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Some configure options changed so adjust.
 Gustavo> Forcibly disabling threads isn't good and also it's detected by
 Gustavo> configure when there are no threads.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 3/3] libxslt: fixup configure options
  2011-05-02 19:08 ` [Buildroot] [PATCH 3/3] libxslt: " Gustavo Zacarias
@ 2011-05-02 19:41   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2011-05-02 19:41 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Some configure options changed so adjust.
 Gustavo> Forcibly disabling threads isn't good and also it's detected by
 Gustavo> configure when there are no threads.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-05-02 19:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-02 19:08 [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Gustavo Zacarias
2011-05-02 19:08 ` [Buildroot] [PATCH 2/3] libxml2: fixup configure options Gustavo Zacarias
2011-05-02 19:40   ` Peter Korsgaard
2011-05-02 19:08 ` [Buildroot] [PATCH 3/3] libxslt: " Gustavo Zacarias
2011-05-02 19:41   ` Peter Korsgaard
2011-05-02 19:40 ` [Buildroot] [PATCH 1/3] toolchain: mark mklibs as broken Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox