* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
@ 2009-01-20 21:32 ulf at uclibc.org
2009-01-20 22:47 ` Peter Korsgaard
0 siblings, 1 reply; 6+ messages in thread
From: ulf at uclibc.org @ 2009-01-20 21:32 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-20 21:32:43 +0000 (Tue, 20 Jan 2009)
New Revision: 24926
Log:
Libraries for dbus-glib are in /usr/lib, depend on expat
Modified:
trunk/buildroot/package/dbus-glib/Config.in
trunk/buildroot/package/dbus-glib/dbus-glib.mk
Changeset:
Modified: trunk/buildroot/package/dbus-glib/Config.in
===================================================================
--- trunk/buildroot/package/dbus-glib/Config.in 2009-01-20 20:06:36 UTC (rev 24925)
+++ trunk/buildroot/package/dbus-glib/Config.in 2009-01-20 21:32:43 UTC (rev 24926)
@@ -3,6 +3,7 @@
depends on BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_PKGCONFIG
+ select BR2_PACKAGE_EXPAT
help
GLib bindings for D-Bus.
Modified: trunk/buildroot/package/dbus-glib/dbus-glib.mk
===================================================================
--- trunk/buildroot/package/dbus-glib/dbus-glib.mk 2009-01-20 20:06:36 UTC (rev 24925)
+++ trunk/buildroot/package/dbus-glib/dbus-glib.mk 2009-01-20 21:32:43 UTC (rev 24926)
@@ -31,7 +31,7 @@
DBUS_CFLAGS="-I$(STAGING_DIR)/usr/include/dbus-1.0 -I$(STAGING_DIR)/usr/lib/dbus-1.0/include" \
DBUS_LIBS="$(STAGING_DIR)/usr/lib/libdbus-1.so" \
DBUS_GLIB_CFLAGS="-I$(STAGING_DIR)/usr/include/glib-2.0 -I$(STAGING_DIR)/usr/lib/glib-2.0/include" \
- DBUS_GLIB_LIBS="$(STAGING_DIR)/lib/libglib-2.0.so $(STAGING_DIR)/lib/libgobject-2.0.so $(STAGING_DIR)/lib/libgmodule-2.0.so $(STAGING_DIR)/lib/libgthread-2.0.so" \
+ DBUS_GLIB_LIBS="$(STAGING_DIR)/usr/lib/libglib-2.0.so $(STAGING_DIR)/usr/lib/libgobject-2.0.so $(STAGING_DIR)/usr/lib/libgmodule-2.0.so $(STAGING_DIR)/usr/lib/libgthread-2.0.so" \
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
@@ -47,7 +47,7 @@
touch $(DBUS_GLIB_DIR)/.configured
$(DBUS_GLIB_DIR)/$(DBUS_GLIB_BINARY): $(DBUS_GLIB_DIR)/.configured
- $(MAKE) DBUS_BUS_LIBS="$(STAGING_DIR)/lib/libexpat.so" -C $(DBUS_GLIB_DIR) all
+ $(MAKE) DBUS_BUS_LIBS="$(STAGING_DIR)/usr/lib/libexpat.so" -C $(DBUS_GLIB_DIR) all
$(STAGING_DIR)/usr/lib/libdbus-glib-1.so.2.0.0: $(DBUS_GLIB_DIR)/$(DBUS_GLIB_BINARY)
cp -a $(DBUS_GLIB_DIR)/dbus/.libs/libdbus-glib-1.so* $(STAGING_DIR)/usr/lib
@@ -58,7 +58,7 @@
cp -a $(DBUS_GLIB_DIR)/dbus/.libs/dbus-binding-tool $(TARGET_DIR)/usr/bin
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libdbus-glib-1.so.2.0.0
-dbus-glib: uclibc pkgconfig dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
+dbus-glib: uclibc pkgconfig dbus expat libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
dbus-glib-clean:
rm -f $(TARGET_DIR)/usr/lib/libdbus-glib-1.so.2*
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
2009-01-20 21:32 [Buildroot] svn commit: trunk/buildroot/package/dbus-glib ulf at uclibc.org
@ 2009-01-20 22:47 ` Peter Korsgaard
2009-01-26 15:42 ` Peter Korsgaard
0 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2009-01-20 22:47 UTC (permalink / raw)
To: buildroot
>>>>> "ulf" == ulf <ulf@uclibc.org> writes:
ulf> Author: ulf
ulf> Date: 2009-01-20 21:32:43 +0000 (Tue, 20 Jan 2009)
ulf> New Revision: 24926
ulf> Log:
ulf> Libraries for dbus-glib are in /usr/lib, depend on expat
ulf> -dbus-glib: uclibc pkgconfig dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
ulf> +dbus-glib: uclibc pkgconfig dbus expat libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
Dbus can be compiled with either expat or libxml2 support - How does
that fit with this?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
2009-01-20 22:47 ` Peter Korsgaard
@ 2009-01-26 15:42 ` Peter Korsgaard
2009-01-26 19:02 ` Ulf Samuelsson
0 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2009-01-26 15:42 UTC (permalink / raw)
To: buildroot
>>>>> "Peter" == Peter Korsgaard <jacmet@uclibc.org> writes:
ulf> Log:
ulf> Libraries for dbus-glib are in /usr/lib, depend on expat
ulf> -dbus-glib: uclibc pkgconfig dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
ulf> +dbus-glib: uclibc pkgconfig dbus expat libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
Peter> Dbus can be compiled with either expat or libxml2 support - How does
Peter> that fit with this?
Ping?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
2009-01-26 15:42 ` Peter Korsgaard
@ 2009-01-26 19:02 ` Ulf Samuelsson
0 siblings, 0 replies; 6+ messages in thread
From: Ulf Samuelsson @ 2009-01-26 19:02 UTC (permalink / raw)
To: buildroot
m?n 2009-01-26 klockan 16:42 +0100 skrev Peter Korsgaard:
> >>>>> "Peter" == Peter Korsgaard <jacmet@uclibc.org> writes:
>
> ulf> Log:
> ulf> Libraries for dbus-glib are in /usr/lib, depend on expat
>
> ulf> -dbus-glib: uclibc pkgconfig dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
> ulf> +dbus-glib: uclibc pkgconfig dbus expat libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
>
> Peter> Dbus can be compiled with either expat or libxml2 support - How does
> Peter> that fit with this?
>
> Ping?
>
Did not have time to look into this.
IIRC it was trying to use -lexpat
and -lexpat was not available.
BR
Ulf Samuelsson
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
@ 2009-01-20 22:38 ulf at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: ulf at uclibc.org @ 2009-01-20 22:38 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-20 22:38:39 +0000 (Tue, 20 Jan 2009)
New Revision: 24930
Log:
Fix circular dependency
Modified:
trunk/buildroot/package/dbus-glib/Config.in
Changeset:
Modified: trunk/buildroot/package/dbus-glib/Config.in
===================================================================
--- trunk/buildroot/package/dbus-glib/Config.in 2009-01-20 22:25:55 UTC (rev 24929)
+++ trunk/buildroot/package/dbus-glib/Config.in 2009-01-20 22:38:39 UTC (rev 24930)
@@ -3,7 +3,6 @@
depends on BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_PKGCONFIG
- select BR2_PACKAGE_EXPAT
help
GLib bindings for D-Bus.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/dbus-glib
@ 2008-06-14 21:01 jacmet at uclibc.org
0 siblings, 0 replies; 6+ messages in thread
From: jacmet at uclibc.org @ 2008-06-14 21:01 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-06-14 14:01:07 -0700 (Sat, 14 Jun 2008)
New Revision: 22341
Log:
dbus-glib: don't depend on host pkg-config
Modified:
trunk/buildroot/package/dbus-glib/dbus-glib.mk
Changeset:
Modified: trunk/buildroot/package/dbus-glib/dbus-glib.mk
===================================================================
--- trunk/buildroot/package/dbus-glib/dbus-glib.mk 2008-06-14 21:01:03 UTC (rev 22340)
+++ trunk/buildroot/package/dbus-glib/dbus-glib.mk 2008-06-14 21:01:07 UTC (rev 22341)
@@ -21,7 +21,7 @@
toolchain/patch-kernel.sh $(DBUS_GLIB_DIR) package/dbus-glib/ \*.patch
touch $(DBUS_GLIB_DIR)/.unpacked
-$(DBUS_GLIB_DIR)/.configured: $(DBUS_GLIB_DIR)/.unpacked /usr/bin/pkg-config
+$(DBUS_GLIB_DIR)/.configured: $(DBUS_GLIB_DIR)/.unpacked
(cd $(DBUS_GLIB_DIR); rm -rf config.cache; autoconf; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
@@ -60,7 +60,7 @@
cp -a $(DBUS_GLIB_DIR)/dbus/.libs/dbus-binding-tool $(TARGET_DIR)/usr/bin
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libdbus-glib-1.so.2.0.0
-dbus-glib: uclibc dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
+dbus-glib: uclibc pkgconfig dbus libglib2 $(TARGET_DIR)/$(DBUS_GLIB_TARGET_BINARY)
dbus-glib-clean:
rm -f $(TARGET_DIR)/usr/lib/libdbus-glib-1.so.2*
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-01-26 19:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-20 21:32 [Buildroot] svn commit: trunk/buildroot/package/dbus-glib ulf at uclibc.org
2009-01-20 22:47 ` Peter Korsgaard
2009-01-26 15:42 ` Peter Korsgaard
2009-01-26 19:02 ` Ulf Samuelsson
-- strict thread matches above, loose matches on Subject: below --
2009-01-20 22:38 ulf at uclibc.org
2008-06-14 21:01 jacmet at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox