From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [pull request] Pull request for branch 2010-05-15-fixes
Date: Fri, 21 May 2010 10:08:20 +0200 [thread overview]
Message-ID: <cover.1274428595.git.thomas.petazzoni@free-electrons.com> (raw)
Hello,
Here is a new pull request for the set of fixes I have for
2010.05. This new pull request gathers changes from both of the
previous 2010-05-14-fixes and 2010-05-15-fixes pull requests.
Changes since the previous pull requests made following Peter's
comments:
* BR2_NEEDS_GETTEXT is now only set to 'y' if the C library doesn't
contain gettext/libintl *and* BR2_ENABLE_LOCALE is set. This fixes
the comment of Peter who wanted to compile Avahi without gettext is
a !BR2_ENABLE_LOCALE case. I've tested this change by compiling
"ltrace flex libcgicc avahi gmpc grep hal libglib2 libidn libsoup
make libmpd php php_ext_gettext psmisc util-linux" with an ARM
internal toolchain with locale enabled, an ARM Buildroot uClibc
external toolchain with locale disabled and ARM Crosstool-NG eglibc
external toolchain.
* Add comment on lmbench requiring RPC support
* Add comment on netsnmp not working with external toolchains +
adding the same on BR2_PACKAGE_QUAGGA_SNMP.
The following changes since commit f3122259e2cbbc0be0fc02820a146b4e4f48bef6:
Peter Korsgaard (1):
mtd-utils: buildsystem is broken with parallel make (regarding libubi)
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot 2010-05-15-fixes
Thomas Petazzoni (19):
Add a BR2_NEEDS_GETTEXT option
Make all package using gettext rely on BR2_NEEDS_GETTEXT
libcap: fix build failure
libcgicc: fix package after autotools infrastructure conversion
ltrace: fix build failure
gettext: make only available if BR2_NEEDS_GETTEXT is set
external toolchain: check BR2_INSTALL_LIBSTDCPP
iconv: disallow selection when BR2_ENABLE_LOCALE is enabled
lmbench: needs BR2_INET_RPC
startup-notification: add dependency on xlib_libX11
ntp: fix build failure
samba: only require libiconv if !BR2_ENABLE_LOCALE
pango: run pango-querymodules on the target instead of on the host
cairo: remove host variant
mutt: fix build and convert to autotools
lvm2: do not override CC and similar variables
uemacs: don't forget CFLAGS at link time
vpnc: pass CFLAGS at link time
netsnmp: disable build with external toolchain
package/avahi/Config.in | 4 +-
package/avahi/avahi.mk | 2 +-
package/cairo/cairo.mk | 3 -
package/gettext/Config.in | 2 +
package/gmpc/Config.in | 4 +-
package/gmpc/gmpc.mk | 3 +-
package/grep/Config.in | 4 +-
package/grep/grep.mk | 2 +-
package/hal/Config.in | 4 +-
package/hal/hal.mk | 2 +-
package/libcap/libcap.mk | 4 +-
...cgicc-3.2.9-disable-documentation-option.patch} | 0
package/libcgicc/libcgicc.mk | 2 +
package/libglib2/Config.in | 4 +-
package/libglib2/libglib2.mk | 2 +-
package/libiconv/Config.in | 1 +
package/libidn/libidn.mk | 2 +-
package/libsoup/libsoup.mk | 2 +-
package/lmbench/Config.in | 5 ++
package/ltrace/ltrace.mk | 3 +-
package/lvm2/lvm2.mk | 2 +-
package/make/Config.in | 4 +-
package/make/make.mk | 2 +-
package/multimedia/libmpd/Config.in | 2 -
package/mutt/mutt-1.5.16-makedoc-hostcc.patch | 32 ---------
package/mutt/mutt-1.5.17+20080114-nodoc.patch | 21 ++++++
package/mutt/mutt.mk | 73 +++-----------------
package/netsnmp/Config.in | 6 ++
package/ntp/ntp-4.2.4_p5-nano.patch | 36 ++++++++++
package/pango/S25pango | 20 ++++++
package/pango/pango.mk | 18 +----
package/php/Config.ext | 2 +-
package/php/php.mk | 2 +-
package/psmisc/Config.in | 4 +-
package/psmisc/psmisc.mk | 8 +--
package/quagga/Config.in | 4 +
package/samba/Config.in | 2 +-
package/samba/samba.mk | 2 +-
package/sshfs/Config.in | 4 +-
package/sshfs/sshfs.mk | 2 +-
package/startup-notification/Config.in | 2 +
.../startup-notification/startup-notification.mk | 1 +
package/uemacs/uemacs.mk | 2 +-
package/util-linux/Config.in | 4 +-
package/util-linux/util-linux.mk | 4 +-
package/vpnc/vpnc.mk | 4 +-
toolchain/Config.in.2 | 8 ++
toolchain/external-toolchain/ext-tool.mk | 12 +++
48 files changed, 175 insertions(+), 163 deletions(-)
rename package/libcgicc/{cgicc-3.2.9-disable-documentation-option.patch => libcgicc-3.2.9-disable-documentation-option.patch} (100%)
delete mode 100644 package/mutt/mutt-1.5.16-makedoc-hostcc.patch
create mode 100644 package/mutt/mutt-1.5.17+20080114-nodoc.patch
create mode 100644 package/ntp/ntp-4.2.4_p5-nano.patch
create mode 100644 package/pango/S25pango
Thanks,
--
Thomas Petazzoni
next reply other threads:[~2010-05-21 8:08 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-21 8:08 Thomas Petazzoni [this message]
2010-05-21 8:08 ` [Buildroot] [PATCH 01/19] Add a BR2_NEEDS_GETTEXT option Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 02/19] Make all package using gettext rely on BR2_NEEDS_GETTEXT Thomas Petazzoni
2010-05-21 19:56 ` Peter Korsgaard
2010-05-21 22:11 ` Thomas Petazzoni
2010-05-22 7:34 ` Peter Korsgaard
2010-05-22 8:27 ` Peter Korsgaard
2010-05-21 8:08 ` [Buildroot] [PATCH 03/19] libcap: fix build failure Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 04/19] libcgicc: fix package after autotools infrastructure conversion Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 05/19] ltrace: fix build failure Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 06/19] gettext: make only available if BR2_NEEDS_GETTEXT is set Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 07/19] external toolchain: check BR2_INSTALL_LIBSTDCPP Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 08/19] iconv: disallow selection when BR2_ENABLE_LOCALE is enabled Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 09/19] lmbench: needs BR2_INET_RPC Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 10/19] startup-notification: add dependency on xlib_libX11 Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 11/19] ntp: fix build failure Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 12/19] samba: only require libiconv if !BR2_ENABLE_LOCALE Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 13/19] pango: run pango-querymodules on the target instead of on the host Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 14/19] cairo: remove host variant Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 15/19] mutt: fix build and convert to autotools Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 16/19] lvm2: do not override CC and similar variables Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 17/19] uemacs: don't forget CFLAGS at link time Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 18/19] vpnc: pass " Thomas Petazzoni
2010-05-21 8:08 ` [Buildroot] [PATCH 19/19] netsnmp: disable build with external toolchain Thomas Petazzoni
2010-05-21 18:38 ` [Buildroot] [pull request] Pull request for branch 2010-05-15-fixes Peter Korsgaard
-- strict thread matches above, loose matches on Subject: below --
2010-05-15 23:15 Thomas Petazzoni
2010-05-18 11:56 ` Peter Korsgaard
2010-05-18 12:16 ` Thomas Petazzoni
2010-05-18 12:20 ` Peter Korsgaard
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.1274428595.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