From: Ulf Samuelsson <ulf.samuelsson@atmel.com>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package: 0 dbus libxml2
Date: Fri, 30 Jan 2009 10:03:21 +0100 [thread overview]
Message-ID: <1233306201.4147.79.camel@elrond.atmel.com> (raw)
In-Reply-To: <C13DBBE85AD6974B85C118C35890CA5F1AF39BE4AC@EU1RDCRDC1WX029.exi.nxp.com>
fre 2009-01-30 klockan 09:27 +0100 skrev Daniel James Laird:
> How is the dependency checking broken? are you saying that if you build dbus with out XML2 support and then enable XML2 support DBUS does not rebuild?
> This does seems like a rather specific fix that fixes just packages that depend on LIBXML2.
>
> It seems that the changes to LIBXML2 rather spoil the point of Makefile.autotools.in which is to make the package makefiles as simple and common as possible.
>
The previous dependency did not work
There is a note in libxml2.mk that makefile.autotools dependencies are
broken.
Wihtout the fix, libxml2 is not built before dbus,
and a solution which continuously rebuilds libxml2
is also undesirable.
?With this fix dbus builds, but feel free to work on it.
both sam9261ek and sam9263ek broke because of this.
Try building one of these to test any fix
BR
Ulf Samuelsson
> Cheers
> Dan
>
> -----Original Message-----
> From: buildroot-bounces at busybox.net [mailto:buildroot-bounces at busybox.net] On Behalf Of ulf at uclibc.org
> Sent: 2009 Jan 30 07:40
> To: buildroot at uclibc.org
> Subject: [Buildroot] svn commit: trunk/buildroot/package: 0 dbus libxml2
>
> Author: ulf
> Date: 2009-01-30 07:40:14 +0000 (Fri, 30 Jan 2009)
> New Revision: 25156
>
> Log:
> Fix dbus dependency on libxml2, without rebuild, works but may need refinement
>
> Added:
> trunk/buildroot/package/0/
> trunk/buildroot/package/0/0-run-first.mk
>
> Modified:
> trunk/buildroot/package/dbus/dbus.mk
> trunk/buildroot/package/libxml2/libxml2.mk
>
>
> Changeset:
> Added: trunk/buildroot/package/0/0-run-first.mk
> ===================================================================
> --- trunk/buildroot/package/0/0-run-first.mk (rev 0)
> +++ trunk/buildroot/package/0/0-run-first.mk 2009-01-30 07:40:14 UTC (rev 25156)
> @@ -0,0 +1,4 @@
> +ifeq ($(BR2_TARGET_LIBXML2),y)
> +TARGETS+=libxml2
> +endif
> +
>
> Modified: trunk/buildroot/package/dbus/dbus.mk
> ===================================================================
> --- trunk/buildroot/package/dbus/dbus.mk 2009-01-29 23:32:06 UTC (rev 25155)
> +++ trunk/buildroot/package/dbus/dbus.mk 2009-01-30 07:40:14 UTC (rev 25156)
> @@ -15,17 +15,17 @@
> DBUS_XML:=expat
> # depend on the exact library file instead of expat so dbus isn't always
> # considered out-of-date
> -DBUS_XML_DEP_LIB:=$(STAGING_DIR)/usr/lib/libexpat.so.1
> +DBUS_XML_DEP:=$(STAGING_DIR)/usr/lib/libexpat.so.1
> else
> DBUS_XML:=libxml
> # Makefile.autotools.in unfortunately has broken dependency handling,
> # so we cannot do the same for libxml2
> -DBUS_XML_DEP_LIB:=$(LIBXML2_HOOK_POST_INSTALL)
> +DBUS_XML_DEP:=$(LIBXML2_HOOK_POST_INSTALL)
> #libxml2-install-staging
> endif
>
> -DBUS_XML_DEP:=$(DBUS_XML_DEP_LIB)
>
> +
> $(DL_DIR)/$(DBUS_SOURCE):
> $(call DOWNLOAD,$(DBUS_SITE),$(DBUS_SOURCE))
>
> @@ -37,6 +37,7 @@
>
> $(DBUS_DIR)/.configured: $(DBUS_DIR)/.unpacked $(DBUS_XML_DEP)
> (cd $(DBUS_DIR); rm -rf config.cache; \
> + echo "dbus is depending on $(DBUS_XML_DEP)"; \
> $(TARGET_CONFIGURE_OPTS) \
> $(TARGET_CONFIGURE_ARGS) \
> ac_cv_have_abstract_sockets=yes \
>
> Modified: trunk/buildroot/package/libxml2/libxml2.mk
> ===================================================================
> --- trunk/buildroot/package/libxml2/libxml2.mk 2009-01-29 23:32:06 UTC (rev 25155)
> +++ trunk/buildroot/package/libxml2/libxml2.mk 2009-01-30 07:40:14 UTC (rev 25156)
> @@ -8,7 +8,7 @@
> LIBXML2_SITE = ftp://xmlsoft.org/libxml2
> LIBXML2_INSTALL_STAGING = YES
> LIBXML2_INSTALL_TARGET = YES
> -
> +LIBXML2_LIBTOOL_PATCH = NO
> ifneq ($(BR2_LARGEFILE),y)
> LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE"
> endif
> @@ -27,10 +27,21 @@
> rm -f $(LIBXML2_DIR)/macos/src/XMLTestPrefix.h.rej
> touch $@
>
> -$(LIBXML2_HOOK_POST_INSTALL):
> +$(LIBXML2_HOOK_POST_INSTALL):\
> + $(LIBXML2_TARGET_SOURCE) \
> + $(LIBXML2_TARGET_EXTRACT) \
> + $(LIBXML2_HOOK_POST_EXTRACT) \
> + $(LIBXML2_TARGET_PATCH) \
> + $(LIBXML2_TARGET_AUTORECONF) \
> + $(LIBXML2_TARGET_CONFIGURE) \
> + $(LIBXML2_TARGET_LIBTOOL_PATCH) \
> + $(LIBXML2_TARGET_BUILD) \
> + $(LIBXML2_HOOK_POST_BUILD) \
> + $(LIBXML2_TARGET_INSTALL_STAGING)
> $(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config
> $(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config
> rm -rf $(TARGET_DIR)/usr/share/aclocal \
> $(TARGET_DIR)/usr/share/doc/libxml2-$(LIBXML2_VERSION) \
> $(TARGET_DIR)/usr/share/gtk-doc
> touch $@
> +
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
next prev parent reply other threads:[~2009-01-30 9:03 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-30 7:40 [Buildroot] svn commit: trunk/buildroot/package: 0 dbus libxml2 ulf at uclibc.org
2009-01-30 8:27 ` Daniel James Laird
2009-01-30 9:03 ` Ulf Samuelsson [this message]
2009-01-30 9:17 ` Peter Korsgaard
2009-01-30 17:57 ` Ulf Samuelsson
2009-01-30 9:22 ` Daniel James Laird
2009-01-30 9:31 ` Peter Korsgaard
2009-01-30 8:51 ` Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2009-01-30 13:54 jacmet at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1233306201.4147.79.camel@elrond.atmel.com \
--to=ulf.samuelsson@atmel.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox