* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-05-05 21:55 Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 1/3] busybox: disable MTD utils in default configuration Thomas Petazzoni
` (3 more replies)
0 siblings, 4 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-05 21:55 UTC (permalink / raw)
To: buildroot
The following changes since commit d701a82321ad2f3e5bfa16639e93532294cad4ce:
Paulius Zaleckas (1):
Remove gtk-doc documentations from target
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (3):
busybox: disable MTD utils in default configuration
libxcb: fix path to Python modules
xlib_libX11: re-add a patch to fix the keysymdef issue
package/busybox/busybox-1.16.x.config | 8 ++--
package/x11r7/libxcb/libxcb.mk | 3 +-
.../xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch | 35 ++++++++++++++++++++
3 files changed, 41 insertions(+), 5 deletions(-)
create mode 100644 package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 1/3] busybox: disable MTD utils in default configuration
2010-05-05 21:55 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
@ 2010-05-05 21:55 ` Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules Thomas Petazzoni
` (2 subsequent siblings)
3 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-05 21:55 UTC (permalink / raw)
To: buildroot
The MTD utils require MTD headers in the toolchain, and in several
external toolchains, they are not present. In order to make the build
work by default, let's disable the MTD Busybox applets in our default
configuration.
Fixes bug #1669
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/busybox/busybox-1.16.x.config | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/busybox/busybox-1.16.x.config b/package/busybox/busybox-1.16.x.config
index 0b3dcc5..e5f5102 100644
--- a/package/busybox/busybox-1.16.x.config
+++ b/package/busybox/busybox-1.16.x.config
@@ -604,10 +604,10 @@ CONFIG_DEVMEM=y
CONFIG_EJECT=y
# CONFIG_FEATURE_EJECT_SCSI is not set
# CONFIG_FBSPLASH is not set
-CONFIG_FLASHCP=y
-CONFIG_FLASH_LOCK=y
-CONFIG_FLASH_UNLOCK=y
-CONFIG_FLASH_ERASEALL=y
+# CONFIG_FLASHCP is not set
+# CONFIG_FLASH_LOCK is not set
+# CONFIG_FLASH_UNLOCK is not set
+# CONFIG_FLASH_ERASEALL is not set
# CONFIG_IONICE is not set
# CONFIG_INOTIFYD is not set
CONFIG_LAST=y
--
1.6.3.3
^ permalink raw reply related [flat|nested] 22+ messages in thread* [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules
2010-05-05 21:55 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 1/3] busybox: disable MTD utils in default configuration Thomas Petazzoni
@ 2010-05-05 21:55 ` Thomas Petazzoni
2010-05-06 8:59 ` Peter Korsgaard
2010-05-05 21:55 ` [Buildroot] [PATCH 3/3] xlib_libX11: re-add a patch to fix the keysymdef issue Thomas Petazzoni
2010-05-07 22:05 ` [Buildroot] [pull request] Pull request for branch misc-fixes Peter Korsgaard
3 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-05 21:55 UTC (permalink / raw)
To: buildroot
When building libxcb, the variable XCBPROTO_XCBPYTHONDIR must point to
the location where the Python modules needed to run the c_client.py
program are installed. The path
$(STAGING_DIR)/usr/lib/python2.6/site-packages was hardcoded. However,
it doesn't work when the version of Python installed on the host is
Python 2.5.
Therefore, add a little bit of magic to compute the host Python
version.
Fixes bug #1531.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/x11r7/libxcb/libxcb.mk | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/libxcb/libxcb.mk b/package/x11r7/libxcb/libxcb.mk
index ec9843e..c8b70ea 100644
--- a/package/x11r7/libxcb/libxcb.mk
+++ b/package/x11r7/libxcb/libxcb.mk
@@ -13,7 +13,8 @@ LIBXCB_AUTORECONF = NO
LIBXCB_LIBTOOL_PATCH = NO
LIBXCB_DEPENDENCIES = host-libxslt pthread-stubs xcb-proto xlib_libXdmcp xlib_libXau
LIBXCB_CONF_ENV = STAGING_DIR="$(STAGING_DIR)"
-LIBXCB_MAKE_OPT = XCBPROTO_XCBINCLUDEDIR=$(STAGING_DIR)/usr/share/xcb XCBPROTO_XCBPYTHONDIR=$(STAGING_DIR)/usr/lib/python2.6/site-packages
+HOST_PYTHON_VERSION=$(shell python --version 2>&1 | sed 's/Python \(2\.[0-9]\)\..*/\1/')
+LIBXCB_MAKE_OPT = XCBPROTO_XCBINCLUDEDIR=$(STAGING_DIR)/usr/share/xcb XCBPROTO_XCBPYTHONDIR=$(STAGING_DIR)/usr/lib/python$(HOST_PYTHON_VERSION)/site-packages
$(eval $(call AUTOTARGETS,package/x11r7,libxcb))
--
1.6.3.3
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules
2010-05-05 21:55 ` [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules Thomas Petazzoni
@ 2010-05-06 8:59 ` Peter Korsgaard
2010-05-06 9:17 ` Thomas Petazzoni
0 siblings, 1 reply; 22+ messages in thread
From: Peter Korsgaard @ 2010-05-06 8:59 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> When building libxcb, the variable XCBPROTO_XCBPYTHONDIR must point to
Thomas> the location where the Python modules needed to run the c_client.py
Thomas> program are installed. The path
Thomas> $(STAGING_DIR)/usr/lib/python2.6/site-packages was hardcoded. However,
Thomas> it doesn't work when the version of Python installed on the host is
Thomas> Python 2.5.
So we depend on python being available on the host? Shouldn't we just
use the hostpython stuff we already have and E.G
$(PYTHON_VERSION_MAJOR)?
Alternatively we should probably add a check in libxcb.mk and print an
$(error if it isn't there.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules
2010-05-06 8:59 ` Peter Korsgaard
@ 2010-05-06 9:17 ` Thomas Petazzoni
2010-05-06 9:55 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-06 9:17 UTC (permalink / raw)
To: buildroot
Hello,
On Thu, 06 May 2010 10:59:18 +0200
Peter Korsgaard <jacmet@uclibc.org> wrote:
> So we depend on python being available on the host?
Yes, we do.
> Shouldn't we just use the hostpython stuff we already have and E.G
> $(PYTHON_VERSION_MAJOR)?
Well, the hostpython stuff we already have only makes Python on the
host available to build Python on the target. It isn't a normal host
package in that it doesn't install anything in $(HOST_DIR). That could
be changed, of course.
So, you think we should consider not Python as being a mandatory system
dependency, just as Perl is already ?
I have no strong opinion on this, but Python is nowadays installed on
virtually every system, and rebuilding it from the host will probably
take quite some time.
> Alternatively we should probably add a check in libxcb.mk and print an
> $(error if it isn't there.
Yes, we could do that as well.
The other ugly thing is that we are running a Python program on the
host, while using modules installed in
$(STAGING_DIR)/usr/lib/pythonX.Y/site-packages.
BTW, I have another question regarding dependencies. For the moment,
the X.org font packages do not build on a host were some X.org
utilities are not available (mkfontdir, mkfontscale, pdftopcf and so
on). I've fixed some of them already, but I'm now facing the problem of
xapp_bdftopcf, which needs to be built for the host. Unfortunately,
this tool depends on xlib_libXfont for the host, which itself would
depend on freetype xlib_libfontenc xlib_xtrans xproto_fontcacheproto
xproto_fontsproto xproto_xproto xfont_encodings.
Do we build all these things for the host ?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules
2010-05-06 9:17 ` Thomas Petazzoni
@ 2010-05-06 9:55 ` Peter Korsgaard
0 siblings, 0 replies; 22+ messages in thread
From: Peter Korsgaard @ 2010-05-06 9:55 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Hello,
Thomas> On Thu, 06 May 2010 10:59:18 +0200
Thomas> Peter Korsgaard <jacmet@uclibc.org> wrote:
>> So we depend on python being available on the host?
Thomas> Yes, we do.
>> Shouldn't we just use the hostpython stuff we already have and E.G
>> $(PYTHON_VERSION_MAJOR)?
Thomas> Well, the hostpython stuff we already have only makes Python on the
Thomas> host available to build Python on the target. It isn't a normal host
Thomas> package in that it doesn't install anything in $(HOST_DIR). That could
Thomas> be changed, of course.
Yes.
Thomas> So, you think we should consider not Python as being a
Thomas> mandatory system dependency, just as Perl is already ?
Not necessarily, but we should check for it (either in dependencies.sh
or in libxcb.mk if it is only needed there) so the user gets a sensible
error message if it isn't available.
Thomas> I have no strong opinion on this, but Python is nowadays
Thomas> installed on virtually every system, and rebuilding it from the
Thomas> host will probably take quite some time.
Our Python stuff is quite weak, I could imagine that we might need a
specific version of host python to build other stuff in the future, but
that's not something we need to fix for 2010.05.
>> Alternatively we should probably add a check in libxcb.mk and print an
>> $(error if it isn't there.
Thomas> Yes, we could do that as well.
Thomas> The other ugly thing is that we are running a Python program on the
Thomas> host, while using modules installed in
Thomas> $(STAGING_DIR)/usr/lib/pythonX.Y/site-packages.
Thomas> BTW, I have another question regarding dependencies. For the moment,
Thomas> the X.org font packages do not build on a host were some X.org
Thomas> utilities are not available (mkfontdir, mkfontscale, pdftopcf and so
Thomas> on). I've fixed some of them already, but I'm now facing the problem of
Thomas> xapp_bdftopcf, which needs to be built for the host. Unfortunately,
Thomas> this tool depends on xlib_libXfont for the host, which itself would
Thomas> depend on freetype xlib_libfontenc xlib_xtrans xproto_fontcacheproto
Thomas> xproto_fontsproto xproto_xproto xfont_encodings.
Thomas> Do we build all these things for the host ?
Argh. How many of these are we already building for a "normal" Xorg
build (E.G. probably most people use gtk as well) - freetype I guess
would be. The *proto packages are tiny, so they shouldn't be a
problem. That leaves the xlib_* stuff - Do you have any idea if they
take significant time to build?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [PATCH 3/3] xlib_libX11: re-add a patch to fix the keysymdef issue
2010-05-05 21:55 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 1/3] busybox: disable MTD utils in default configuration Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules Thomas Petazzoni
@ 2010-05-05 21:55 ` Thomas Petazzoni
2010-05-07 22:05 ` [Buildroot] [pull request] Pull request for branch misc-fixes Peter Korsgaard
3 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-05 21:55 UTC (permalink / raw)
To: buildroot
When xlib_libX11 was bumped to 1.3.2 in commit
1d956c9190dafbe425e9e02255b540641e27f690, the keysymdef patch was
dropped. However, this patch is still needed in order to be able to
tell ./configure where the keysymdef header file is installed.
The patch has been updated for 1.3.2.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
.../xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch | 35 ++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
create mode 100644 package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
diff --git a/package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch b/package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
new file mode 100644
index 0000000..9c4eae2
--- /dev/null
+++ b/package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
@@ -0,0 +1,35 @@
+[patch]: configure: add --with-keysymdef argument for cross compilation
+
+Based on a similar patch from Openembedded.
+
+The libX11 configure script hardcodes the location to keysymdef.h as
+<prefix>/include/X11/keysymdef.h, which is fine for native compilation,
+but breaks with cross compilation as that directory is a location on
+the target, not the build host.
+
+Fix it by providing an explicit --with-keysymdef=<full-path-to-file>.
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>Index: libX11-1.1.5/configure.ac
+===================================================================
+Index: xlib_libX11-1.3.2/configure.ac
+===================================================================
+--- xlib_libX11-1.3.2.orig/configure.ac 2009-10-23 22:55:03.000000000 +0200
++++ xlib_libX11-1.3.2/configure.ac 2010-05-04 16:26:39.000000000 +0200
+@@ -280,8 +280,15 @@
+ # Find keysymdef.h
+ #
+ AC_MSG_CHECKING([keysymdef.h])
+-dir=`pkg-config --variable=includedir xproto`
+-KEYSYMDEF="$dir/X11/keysymdef.h"
++AC_ARG_WITH(keysymdef,
++ AC_HELP_STRING([--with-keysymdef=DIR/keysymdef.h], [The location of keysymdef.h]),
++ KEYSYMDEF=$withval, KEYSYMDEF="")
++
++if test x$KEYSYMDEF = x; then
++ dir=`pkg-config --variable=includedir xproto`
++ KEYSYMDEF="$dir/X11/keysymdef.h"
++fi
++
+ if test -f "$KEYSYMDEF"; then
+ AC_MSG_RESULT([$KEYSYMDEF])
+ else
--
1.6.3.3
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-05-05 21:55 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
` (2 preceding siblings ...)
2010-05-05 21:55 ` [Buildroot] [PATCH 3/3] xlib_libX11: re-add a patch to fix the keysymdef issue Thomas Petazzoni
@ 2010-05-07 22:05 ` Peter Korsgaard
3 siblings, 0 replies; 22+ messages in thread
From: Peter Korsgaard @ 2010-05-07 22:05 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit d701a82321ad2f3e5bfa16639e93532294cad4ce:
Thomas> Paulius Zaleckas (1):
Thomas> Remove gtk-doc documentations from target
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-12-09 18:13 Thomas Petazzoni
0 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2012-12-09 18:13 UTC (permalink / raw)
To: buildroot
Hello,
A bunch of build failure fixes, especially one for the neard
<linux/nfc.h> problem, which is causing most of the autobuilders
failure noise at the moment.
Thanks.
Thomas
The following changes since commit 054f97e1f2de337ea0c788d766212a36d6d4e41c:
pkg-infra: add <pkg>-extract and <pkg>-patch targets to OVERRIDE support (2012-12-06 17:13:57 -0800)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
for you to fetch changes up to 998c031cc673d7c76c7d9bd8c4402fa928ed803e:
libev: disable on avr32 (2012-12-09 18:44:40 +0100)
----------------------------------------------------------------
Thomas Petazzoni (8):
ccache: uses fork(), there only usable on MMU platforms
ccache: deprecate the target package
rt-tests: requires thread support in the toolchain
rt-tests: not available on avr32, too old uClibc
bmon: needs MMU for fork()
xapp_xmh: add dependency on xdata_xbitmap
neard: fix build failure caused by missing <linux/nfc.h>
libev: disable on avr32
package/bmon/Config.in | 2 +
package/ccache/Config.in | 4 +
package/libev/Config.in | 2 +
.../neard/neard-fix-missing-linux-nfc-header.patch | 387 ++++++++++++++++++++
package/neard/neard.mk | 1 +
package/rt-tests/Config.in | 4 +
package/x11r7/xapp_xmh/Config.in | 1 +
package/x11r7/xapp_xmh/xapp_xmh.mk | 2 +-
8 files changed, 402 insertions(+), 1 deletion(-)
create mode 100644 package/neard/neard-fix-missing-linux-nfc-header.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-11-17 22:23 Thomas Petazzoni
2012-11-17 22:54 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2012-11-17 22:23 UTC (permalink / raw)
To: buildroot
The following changes since commit ee3a96137b6cbb8f970c540c61f75300a44ea803:
lua-msgpack-native: fix fetch (2012-11-17 10:15:24 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
for you to fetch changes up to e269850f46106974a04c05f22889e61202608453:
dbus: uses fork(), requires MMU (2012-11-17 23:23:17 +0100)
----------------------------------------------------------------
Thomas Petazzoni (8):
python: use default configure commands to get shared build
libatomic_ops: bump to version 7.2
gnutls: fix build failure due to non-existing gets in recent C libraries
gsl: fix build on !i386 uClibc
libffi: make thread support optional
php: fix C++ link issue
attr: fix static build
dbus: uses fork(), requires MMU
Vellemans Noel (2):
libxml2: add support for building host library with python support
mesa3d: requires host-libxml2 and host-python to generate some files
...r-0001-attr-Fix-static-build-installation.patch | 30 ++++++++
package/bluez_utils/Config.in | 1 +
package/connman/Config.in | 1 +
package/dbus/Config.in | 2 +
package/efl/libedbus/Config.in | 1 +
...001-gets-no-longer-exists-in-e-glibc-2.16.patch | 56 +++++++++++++++
package/gsl/gsl.mk | 13 ++++
package/gvfs/Config.in | 2 +
package/libatomic_ops/libatomic_ops.mk | 2 +-
...ffi-0003-Make-thread-support-conditionnal.patch | 73 ++++++++++++++++++++
package/libxml2/Config.in | 3 +
package/libxml2/libxml2.mk | 10 ++-
package/network-manager/Config.in | 1 +
package/ofono/Config.in | 1 +
package/php/php.mk | 4 ++
package/python/python.mk | 14 +---
package/qt/Config.in | 1 +
package/samba/Config.in | 1 +
package/systemd/Config.in | 1 +
package/x11r7/mesa3d/Config.in | 1 +
package/x11r7/mesa3d/mesa3d.mk | 4 +-
system/Config.in | 1 +
22 files changed, 207 insertions(+), 16 deletions(-)
create mode 100644 package/attr/attr-0001-attr-Fix-static-build-installation.patch
create mode 100644 package/gnutls/gnutls-0001-gets-no-longer-exists-in-e-glibc-2.16.patch
create mode 100644 package/libffi/libffi-0003-Make-thread-support-conditionnal.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-03-20 8:09 Thomas Petazzoni
0 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2012-03-20 8:09 UTC (permalink / raw)
To: buildroot
The following changes since commit b5fd0f2709cab72f48da12a5804dd8670fffbf6e:
Change the /etc/mtab symlink to use an absolute path (2012-03-19 17:08:13 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas Petazzoni (1):
parted: make sure to select libuuid in util-linux
package/parted/Config.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2012-03-19 15:40 Thomas Petazzoni
2012-03-19 15:44 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2012-03-19 15:40 UTC (permalink / raw)
To: buildroot
The following changes since commit e687bb71a028303f326aeebfaf94a3ac1c43b4e4:
gcc: bump 4.4.x version (2012-03-13 16:27:25 +0100)
are available in the git repository at:
git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas Petazzoni (3):
transmission: add missing host-intltool dependency
at: uses fork(), so requires MMU
glib-networking: add missing host-intltool dependency
package/at/Config.in | 1 +
package/glib-networking/glib-networking.mk | 6 +++++-
package/transmission/transmission.mk | 1 +
3 files changed, 7 insertions(+), 1 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2012-03-19 15:40 Thomas Petazzoni
@ 2012-03-19 15:44 ` Peter Korsgaard
0 siblings, 0 replies; 22+ messages in thread
From: Peter Korsgaard @ 2012-03-19 15:44 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit e687bb71a028303f326aeebfaf94a3ac1c43b4e4:
Thomas> gcc: bump 4.4.x version (2012-03-13 16:27:25 +0100)
Thomas> are available in the git repository at:
Thomas> git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git misc-fixes
Thomas> Thomas Petazzoni (3):
Thomas> transmission: add missing host-intltool dependency
Thomas> at: uses fork(), so requires MMU
Thomas> glib-networking: add missing host-intltool dependency
Committed all 3, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-07-07 6:20 Thomas Petazzoni
2010-07-08 11:57 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2010-07-07 6:20 UTC (permalink / raw)
To: buildroot
The following changes since commit ecb7642cce36bc68d93f0eee677adc7da538228d:
Thomas Petazzoni (1):
external-toolchain: hardcode the destination directory for a library
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Darius Augulis (1):
GETPT support is needed by rxvt.
Thomas Petazzoni (19):
webkit: fix misc build issues
xcb-util: add dependency on host-gperf
xlib_libXt: fix build issues
ruby: convert to autotools and fix build
cmake: pass LDFLAGS/CFLAGS when building for the host
fontconfig: fix cross-compilation patch
Solve the host tools relying on host libraries problem
Remove unneeded variables in HOST_CONFIGURE_OPTS
Separate flags from commands in HOST_CONFIGURE_OPTS
Rework sysroot option handling
Cleanup TARGET_CONFIGURE_OPTS
Remove *_FOR_TARGET variables from TARGET_CONFIGURE_OPTS
Remove $(TOOLCHAIN_DIR)/bin and $(STAGING_DIR)/{usr/bin,bin} from the PATH
Introduce support for host config cache
Merge TARGET_CONFIGURE_ENV into TARGET_CONFIGURE_OPTS
openssl: don't override the CC passed at configure time
external-toolchain: adjust tests on TARGET_CC and TARGET_CXX
Update all packages to quote $(TARGET_CC)
xvkbd: add missing dependency on xlib_libXtst
Makefile | 8 +-
boot/grub/grub.mk | 8 +-
boot/grub2/grub2.mk | 4 +-
package/Makefile.autotools.in | 2 +-
package/Makefile.in | 120 +++++++-------------
package/acpid/acpid.mk | 2 +-
package/busybox/busybox.mk | 6 +-
package/cmake/cmake.mk | 4 +-
package/coreutils/coreutils.mk | 4 +-
package/dillo/dillo.mk | 2 +-
package/docker/docker.mk | 2 +-
package/eeprog/eeprog.mk | 2 +-
package/ezxml/ezxml.mk | 2 +-
.../fontconfig-2.6.0-use_for_build.patch | 93 +++++++++------
package/gadgetfs-test/gadgetfs-test.mk | 2 +-
package/games/rubix/rubix.mk | 2 +-
package/gettext/gettext.mk | 4 +-
package/gtk2-engines/gtk2-engines.mk | 2 +-
package/iostat/iostat.mk | 2 +-
package/iproute2/iproute2.mk | 2 +-
package/libfloat/libfloat.mk | 4 +-
package/libglib12/libglib12.mk | 2 +-
package/libgtk12/libgtk12.mk | 2 +-
package/lmbench/lmbench.mk | 4 +-
package/lockfile-progs/lockfile-progs.mk | 3 +-
package/mdadm/mdadm.mk | 2 +-
package/memstat/memstat.mk | 2 +-
package/microperl/microperl.mk | 2 +-
package/microwin/microwin.mk | 4 +-
package/mii-diag/mii-diag.mk | 4 +-
package/mrouted/mrouted.mk | 2 +-
package/mtd/mtd.mk | 3 +-
package/multimedia/alsa-utils/alsa-utils.mk | 2 +-
package/multimedia/festival/festival/festival.mk | 2 +-
.../festival/speech-tools/speech-tools.mk | 2 +-
package/multimedia/ffmpeg/ffmpeg.mk | 1 -
package/multimedia/mplayer/mplayer.mk | 2 +-
package/netkitbase/netkitbase.mk | 8 +-
package/netkittelnet/netkittelnet.mk | 10 +-
package/netplug/netplug.mk | 2 +-
package/netsnmp/netsnmp.mk | 2 +-
package/newt/newt.mk | 2 +-
package/nfs-utils/nfs-utils.mk | 2 +-
package/openssh/openssh.mk | 2 +-
package/openssl/openssl.mk | 4 +-
package/pcmcia/pcmcia.mk | 2 +-
package/portmap/portmap.mk | 2 +-
package/pppd/pppd.mk | 2 +-
package/python/python.mk | 4 +-
package/ruby/ruby.mk | 71 +-----------
package/sed/sed.mk | 4 +-
package/slang/slang.mk | 2 +-
package/stunnel/stunnel.mk | 2 +-
package/sysvinit/sysvinit.mk | 2 +-
package/tcpdump/dhcpdump.mk | 2 +-
package/udev/udev.mk | 2 +-
package/util-linux/util-linux.mk | 2 +-
package/vsftpd/vsftpd.mk | 2 +-
package/webkit/webkit.mk | 3 +-
package/wipe/wipe.mk | 4 +-
package/wireless-tools/wireless-tools.mk | 6 +-
package/x11r7/xcb-util/xcb-util.mk | 1 +
.../xlib_libXt-1.0.7-fix-cross-compile.patch | 96 ++++++++++++++++
package/x11r7/xlib_libXt/xlib_libXt.mk | 3 +-
package/xvkbd/Config.in | 1 +
package/xvkbd/xvkbd.mk | 4 +-
toolchain/Makefile.in | 2 -
toolchain/external-toolchain/ext-tool.mk | 16 ++-
toolchain/gdb/gdb.mk | 4 +-
toolchain/uClibc/uClibc-0.9.30.config | 2 +-
toolchain/uClibc/uClibc-0.9.31.config | 2 +-
71 files changed, 308 insertions(+), 283 deletions(-)
create mode 100644 package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-07-07 6:20 Thomas Petazzoni
@ 2010-07-08 11:57 ` Peter Korsgaard
0 siblings, 0 replies; 22+ messages in thread
From: Peter Korsgaard @ 2010-07-08 11:57 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit ecb7642cce36bc68d93f0eee677adc7da538228d:
Thomas> Thomas Petazzoni (1):
Thomas> external-toolchain: hardcode the destination directory for a library
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-05-07 19:30 Thomas Petazzoni
0 siblings, 0 replies; 22+ messages in thread
From: Thomas Petazzoni @ 2010-05-07 19:30 UTC (permalink / raw)
To: buildroot
Hello,
Here is a resend of this patch set, with an additional check that
Python is actually installed on the host.
Thomas
The following changes since commit ea0695ff5edff392603a77b9299833fbb399e429:
Luca Ceresoli (1):
customize: fix copy paths
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (3):
busybox: disable MTD utils in default configuration
libxcb: fix path to Python modules
xlib_libX11: re-add a patch to fix the keysymdef issue
package/busybox/busybox-1.16.x.config | 8 ++--
package/x11r7/libxcb/libxcb.mk | 3 +-
.../xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch | 35 ++++++++++++++++++++
toolchain/dependencies/dependencies.sh | 2 +-
4 files changed, 42 insertions(+), 6 deletions(-)
create mode 100644 package/x11r7/xlib_libX11/xlib_libX11-1.3.2-keysymdef.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-04-28 21:40 Thomas Petazzoni
2010-05-02 22:03 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2010-04-28 21:40 UTC (permalink / raw)
To: buildroot
Hello,
Here is a set of patches, some of them are important fixes that should
really be merged before 2010.05, some other are improvements and
cleanups that can be postponed if needed.
The important ones are :
libxslt: fix host compilation
uClibc: add UCLIBC_HAS_NFTW to default configuration
uclibc: make sure the default configuration doesn't ask questions
Fix autotools configuration cache handling
Best regards,
Thomas
The following changes since commit 671ec3917b7b8d9e6a22c1f881ff46808e3d8806:
Peter Korsgaard (1):
alsa-utils: alsamixer needs WCHAR
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (19):
autotools: fix autoreconf check
libxslt: fix host compilation
openssl: convert to the generic infrastructure
autotools: inherit LIBTOOL_PATCH for host packages
packages: remove useless HOST_*_LIBTOOL_PATCH
autotools: fix referencing to LIBTOOL_PATCH variable
freetype: disable autoreconf
packages: handle interrupted downloads
uClibc: add UCLIBC_HAS_NFTW to default configuration
uclibc: make sure the default configuration doesn't ask questions
Commonalize the definition of TOOLCHAIN_DIR
Get rid of KERNEL_CROSS
Remove latest users of the ROOTFS_SUFFIX thing
Get rid of the code computing ROOTFS_SUFFIX
Update defconfigs after BR2_ROOTFS_SUFFIX removal
Remove BR2_GNU_TARGET_SUFFIX and compute GNU_TARGET_NAME
Update defconfigs after BR2_GNU_TARGET_SUFFIX removal
Unverbosify autoreconf output
Fix autotools configuration cache handling
Config.in | 18 -----
Makefile | 2 +
configs/arm_toolchain_defconfig | 2 -
configs/at91rm9200df_defconfig | 2 -
configs/at91rm9200df_ext_bare_defconfig | 2 -
configs/at91rm9200df_ext_defconfig | 2 -
configs/at91sam9260dfc_defconfig | 2 -
configs/at91sam9260dfc_ext_bare_defconfig | 2 -
configs/at91sam9260dfc_ext_defconfig | 2 -
configs/at91sam9260pf_defconfig | 1 -
configs/at91sam9261ek_defconfig | 2 -
configs/at91sam9261ek_ext_bare_defconfig | 2 -
configs/at91sam9261ek_ext_defconfig | 2 -
configs/at91sam9263ek_defconfig | 2 -
configs/at91sam9263ek_ext_bare_defconfig | 2 -
configs/at91sam9263ek_ext_defconfig | 2 -
configs/at91sam9g20dfc_defconfig | 2 -
configs/at91sam9g20dfc_ext_bare_defconfig | 2 -
configs/at91sam9g20dfc_ext_defconfig | 2 -
configs/atngw100-base_defconfig | 2 -
configs/atngw100_defconfig | 2 -
configs/atstk1005_defconfig | 2 -
configs/atstk100x_defconfig | 2 -
configs/i386_defconfig | 2 -
configs/i686_defconfig | 2 -
configs/integrator926_defconfig | 2 -
configs/integrator926_huge_defconfig | 2 -
configs/kb9202_defconfig | 2 -
configs/v100sc2_defconfig | 2 -
package/Makefile.autotools.in | 15 +++-
package/Makefile.in | 29 ++++----
package/Makefile.package.in | 8 ++-
package/autoconf/autoconf.mk | 2 +-
package/dbus/dbus.mk | 1 -
package/directfb/directfb.mk | 1 -
package/expat/expat.mk | 1 -
package/fakeroot/fakeroot.mk | 1 -
package/freetype/freetype.mk | 2 +-
package/libglib2/libglib2.mk | 1 -
package/libpng/libpng.mk | 1 -
package/libxml2/libxml2.mk | 2 -
package/libxslt/libxslt.mk | 3 +-
package/openssl/openssl.mk | 85 +++++++++++++---------
package/pcmcia/pcmcia.mk | 2 +-
package/x11r7/xlib_libfontenc/xlib_libfontenc.mk | 1 -
target/linux/Makefile.in | 5 +-
target/linux/Makefile.in.advanced | 5 +-
toolchain/uClibc/uClibc-0.9.31.config | 2 +-
toolchain/uClibc/uclibc.mk | 4 +-
49 files changed, 98 insertions(+), 146 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-04-28 21:40 Thomas Petazzoni
@ 2010-05-02 22:03 ` Peter Korsgaard
0 siblings, 0 replies; 22+ messages in thread
From: Peter Korsgaard @ 2010-05-02 22:03 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Hello,
Thomas> Here is a set of patches, some of them are important fixes that should
Thomas> really be merged before 2010.05, some other are improvements and
Thomas> cleanups that can be postponed if needed.
Thomas> The important ones are :
Thomas> libxslt: fix host compilation
Thomas> uClibc: add UCLIBC_HAS_NFTW to default configuration
Thomas> uclibc: make sure the default configuration doesn't ask questions
Thomas> Fix autotools configuration cache handling
Thanks, I've committed everything except for 7 and 8 (freetype +
interrupted downloads).
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
* [Buildroot] [pull request] Pull request for branch misc-fixes
@ 2010-02-26 8:14 Thomas Petazzoni
2010-02-26 9:43 ` Peter Korsgaard
0 siblings, 1 reply; 22+ messages in thread
From: Thomas Petazzoni @ 2010-02-26 8:14 UTC (permalink / raw)
To: buildroot
The following changes since commit 0f40a46a54a3620c88fbd52e38a0f29c6aedb9a0:
Gustavo Zacarias (1):
Remove obsolete hostap package
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Thomas Petazzoni (6):
avahi: add dependency on host-intltool
libcgicc: fix build breakage and bump version
libraw1394: fix tarball URL
cramfs: add CFLAGS/LDFLAGS and host-zlib dependency
squashfs: pass CFLAGS/LDFLAGS and add host-zlib dependency
busybox: add upstream 1.16 fix
package/avahi/avahi.mk | 2 +-
package/busybox/busybox-1.16.0-fsync.patch | 13 ++++
package/libcgicc/cgicc-3.2.7-memset.patch | 12 ----
.../cgicc-3.2.9-disable-documentation-option.patch | 50 +++++++++++++++
package/libcgicc/libcgicc.mk | 8 ++-
package/libraw1394/libraw1394.mk | 2 +-
target/cramfs/cramfs.mk | 4 +-
.../squashfs/squashfs-4.0-build-system-fix.patch | 65 ++++++++++++++++++++
target/squashfs/squashfsroot.mk | 4 +-
9 files changed, 139 insertions(+), 21 deletions(-)
create mode 100644 package/busybox/busybox-1.16.0-fsync.patch
delete mode 100644 package/libcgicc/cgicc-3.2.7-memset.patch
create mode 100644 package/libcgicc/cgicc-3.2.9-disable-documentation-option.patch
create mode 100644 target/squashfs/squashfs-4.0-build-system-fix.patch
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 22+ messages in thread* [Buildroot] [pull request] Pull request for branch misc-fixes
2010-02-26 8:14 Thomas Petazzoni
@ 2010-02-26 9:43 ` Peter Korsgaard
2010-02-26 10:02 ` Thomas Petazzoni
0 siblings, 1 reply; 22+ messages in thread
From: Peter Korsgaard @ 2010-02-26 9:43 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit 0f40a46a54a3620c88fbd52e38a0f29c6aedb9a0:
Thomas> Gustavo Zacarias (1):
Thomas> Remove obsolete hostap package
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot misc-fixes
Pulled and pushed, thanks!
Anything else missing before 2010.20?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2012-12-09 18:13 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-05 21:55 [Buildroot] [pull request] Pull request for branch misc-fixes Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 1/3] busybox: disable MTD utils in default configuration Thomas Petazzoni
2010-05-05 21:55 ` [Buildroot] [PATCH 2/3] libxcb: fix path to Python modules Thomas Petazzoni
2010-05-06 8:59 ` Peter Korsgaard
2010-05-06 9:17 ` Thomas Petazzoni
2010-05-06 9:55 ` Peter Korsgaard
2010-05-05 21:55 ` [Buildroot] [PATCH 3/3] xlib_libX11: re-add a patch to fix the keysymdef issue Thomas Petazzoni
2010-05-07 22:05 ` [Buildroot] [pull request] Pull request for branch misc-fixes Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2012-12-09 18:13 Thomas Petazzoni
2012-11-17 22:23 Thomas Petazzoni
2012-11-17 22:54 ` Peter Korsgaard
2012-03-20 8:09 Thomas Petazzoni
2012-03-19 15:40 Thomas Petazzoni
2012-03-19 15:44 ` Peter Korsgaard
2010-07-07 6:20 Thomas Petazzoni
2010-07-08 11:57 ` Peter Korsgaard
2010-05-07 19:30 Thomas Petazzoni
2010-04-28 21:40 Thomas Petazzoni
2010-05-02 22:03 ` Peter Korsgaard
2010-02-26 8:14 Thomas Petazzoni
2010-02-26 9:43 ` Peter Korsgaard
2010-02-26 10:02 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox