From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [pull request] Pull request for branch misc-fixes
Date: Wed, 28 Apr 2010 23:40:41 +0200 [thread overview]
Message-ID: <cover.1272490771.git.thomas.petazzoni@free-electrons.com> (raw)
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
next reply other threads:[~2010-04-28 21:40 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-28 21:40 Thomas Petazzoni [this message]
2010-04-28 21:40 ` [Buildroot] [PATCH 01/19] autotools: fix autoreconf check Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 02/19] libxslt: fix host compilation Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 03/19] openssl: convert to the generic infrastructure Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 04/19] autotools: inherit LIBTOOL_PATCH for host packages Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 05/19] packages: remove useless HOST_*_LIBTOOL_PATCH Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 06/19] autotools: fix referencing to LIBTOOL_PATCH variable Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 07/19] freetype: disable autoreconf Thomas Petazzoni
2010-04-29 20:20 ` Paulius Zaleckas
2010-04-30 7:14 ` Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 08/19] packages: handle interrupted downloads Thomas Petazzoni
2010-04-28 23:26 ` Paul Jones
2010-05-02 20:48 ` Peter Korsgaard
2010-04-28 21:40 ` [Buildroot] [PATCH 09/19] uClibc: add UCLIBC_HAS_NFTW to default configuration Thomas Petazzoni
2010-04-29 6:52 ` Paulius Zaleckas
2010-04-28 21:40 ` [Buildroot] [PATCH 10/19] uclibc: make sure the default configuration doesn't ask questions Thomas Petazzoni
2010-05-02 22:02 ` Peter Korsgaard
2010-04-28 21:40 ` [Buildroot] [PATCH 11/19] Commonalize the definition of TOOLCHAIN_DIR Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 12/19] Get rid of KERNEL_CROSS Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 13/19] Remove latest users of the ROOTFS_SUFFIX thing Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 14/19] Get rid of the code computing ROOTFS_SUFFIX Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 15/19] Update defconfigs after BR2_ROOTFS_SUFFIX removal Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 16/19] Remove BR2_GNU_TARGET_SUFFIX and compute GNU_TARGET_NAME Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 17/19] Update defconfigs after BR2_GNU_TARGET_SUFFIX removal Thomas Petazzoni
2010-04-28 21:40 ` [Buildroot] [PATCH 18/19] Unverbosify autoreconf output Thomas Petazzoni
2010-04-28 21:41 ` [Buildroot] [PATCH 19/19] Fix autotools configuration cache handling Thomas Petazzoni
2010-05-02 22:03 ` [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-05-05 21:55 Thomas Petazzoni
2010-05-07 22:05 ` Peter Korsgaard
2010-02-26 8:14 Thomas Petazzoni
2010-02-26 9:43 ` Peter Korsgaard
2010-02-26 10:02 ` Thomas Petazzoni
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=cover.1272490771.git.thomas.petazzoni@free-electrons.com \
--to=thomas.petazzoni@free-electrons.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