buildroot.git
13 years agoberkeleydb: fix build of shared libraries
Luca Ceresoli [Mon, 20 Jun 2011 15:59:55 +0000 (17:59 +0200)]
berkeleydb: fix build of shared libraries

009d8fceab4 and 0a5e5534cbf8 moved the --enable-static configure flag
from package files to the default _CONFIGURE_CMDS in
package/Makefile.autotools.in.
This broke Autotools packages that override _CONFIGURE_CMDS.

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: fix build of shared libraries
Luca Ceresoli [Mon, 20 Jun 2011 15:59:54 +0000 (17:59 +0200)]
ffmpeg: fix build of shared libraries

009d8fceab4 and 0a5e5534cbf8 moved the --enable-static configure flag
from package files to the default _CONFIGURE_CMDS in
package/Makefile.autotools.in.
This broke Autotools packages that override _CONFIGURE_CMDS.

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: QtDeclarative needs script support as well
Peter Korsgaard [Tue, 21 Jun 2011 11:15:04 +0000 (13:15 +0200)]
qt: QtDeclarative needs script support as well

Otherwise configure errors out with:

Error: QtDeclarative was requested, but it can't be built due to
QtScript or QtGui being disabled.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agousbutils: bump to 003
Yegor Yefremov [Tue, 21 Jun 2011 09:55:14 +0000 (11:55 +0200)]
usbutils: bump to 003

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodbus: bump version
Peter Korsgaard [Tue, 21 Jun 2011 09:39:37 +0000 (11:39 +0200)]
dbus: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodbus-glib: nowadays works with libxml2 backend as well
Peter Korsgaard [Tue, 21 Jun 2011 09:34:49 +0000 (11:34 +0200)]
dbus-glib: nowadays works with libxml2 backend as well

So get rid of expat dependency.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopackages: dbus: use version 1.4.8
Daniel Mack [Mon, 30 May 2011 18:24:38 +0000 (20:24 +0200)]
packages: dbus: use version 1.4.8

The exisiting br2 patch can be dropped.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibdnet: fix python module build
Peter Korsgaard [Mon, 20 Jun 2011 22:01:34 +0000 (00:01 +0200)]
libdnet: fix python module build

Ensure the correct compiler/linker flags are used.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoQt: add config option to build libQtDeclarative module
Daniel Mack [Tue, 31 May 2011 16:16:34 +0000 (18:16 +0200)]
Qt: add config option to build libQtDeclarative module

Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Daniel Nyström <daniel.nystrom@timeterminal.se>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobmon: add optional alsa support
Peter Korsgaard [Fri, 17 Jun 2011 07:17:16 +0000 (09:17 +0200)]
bmon: add optional alsa support

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobmon: make ncurses dependency optional
Peter Korsgaard [Fri, 17 Jun 2011 07:15:42 +0000 (09:15 +0200)]
bmon: make ncurses dependency optional

bmon can be built without ncurses support (needs a small patch though),
so don't enforce it in kconfig.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobmon: link dynamically unless explicitly requested otherwise
Peter Korsgaard [Fri, 17 Jun 2011 07:10:29 +0000 (09:10 +0200)]
bmon: link dynamically unless explicitly requested otherwise

Commit 009d8fceab4d (add --{enable,disable}-{shared,static} automatically)
caused us to pass --enable-static in the normal (non-static) case as well,
which bmon interpretes as a request to link the bmon program statically,
bloating the image.

Fix it by passing an extra --disable-static to bmon configure to nullify
this.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosynergy: ensure cross X11 headers / libraries are used
Peter Korsgaard [Tue, 14 Jun 2011 06:49:00 +0000 (08:49 +0200)]
synergy: ensure cross X11 headers / libraries are used

Otherwise configure would check for Xtst support on the host.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopackages: remove --{enable,disable}-{shared,static} from autotools packages
Thomas Petazzoni [Mon, 30 May 2011 21:57:03 +0000 (23:57 +0200)]
packages: remove --{enable,disable}-{shared,static} from autotools packages

Now that those values are passed at the autotools infrastructure
level, there's no need for every package to pass inconsistent values.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopackage/autotools: add --{enable,disable}-{shared,static} automatically
Thomas Petazzoni [Mon, 30 May 2011 21:57:02 +0000 (23:57 +0200)]
package/autotools: add --{enable,disable}-{shared,static} automatically

For target packages, depending on BR2_PREFER_STATIC_LIB, add the
correct combination of --{enable,disable}-{shared,static} flags to
./configure calls.

  * When BR2_PREFER_STATIC_LIB is enabled, we pass --enable-static
  --disable-shared.

  * When BR2_PREFER_STATIC_LIB is disabled, we pass --enable-static
  --enable-shared. We enable static libraries since they can still be
  useful to statically link applications against some libraries
  (sometimes it is useful for size reasons). Static libraries are
  anyway only installed in the STAGING_DIR, so it doesn't increase in
  any way the size of the TARGET_DIR.

For host packages, always pass --enable-shared and --disable-static.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoRemove unused variable definitions
Thomas Petazzoni [Mon, 30 May 2011 21:57:01 +0000 (23:57 +0200)]
Remove unused variable definitions

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMark some packages as not usable on non-MMU systems
Thomas Petazzoni [Mon, 30 May 2011 21:57:00 +0000 (23:57 +0200)]
Mark some packages as not usable on non-MMU systems

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: adjust configuration for non-MMU targets
Thomas Petazzoni [Mon, 30 May 2011 21:56:59 +0000 (23:56 +0200)]
busybox: adjust configuration for non-MMU targets

The swaponoff applet doesn't build (and doesn't make sense) on non-MMU
platforms.

The ash shell cannot build on non-MMU platforms (because it uses
fork()), so select the hush shell instead.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: tune config according to BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
Thomas Petazzoni [Mon, 30 May 2011 21:56:58 +0000 (23:56 +0200)]
busybox: tune config according to BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agotoolchain: introduce BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
Thomas Petazzoni [Mon, 30 May 2011 21:56:57 +0000 (23:56 +0200)]
toolchain: introduce BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS

Unfortunately, the official Blackfin toolchains are built without the
shadow password support, so our default Busybox configuration fails to
build.

Therefore, we introduce a new hidden knob
BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS, which is set to yes for Buildroot
internal toolchain, for toolchains generated by the Crosstool-NG
backend, for Glibc external toolchains and for Uclibc custom external
toolchains. It is left unset by the Blackfin toolchain profile.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoblackfin: support external toolchains provided by blackfin.uclibc.org
Thomas Petazzoni [Mon, 30 May 2011 21:56:56 +0000 (23:56 +0200)]
blackfin: support external toolchains provided by blackfin.uclibc.org

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: bump 1.18.x version
Peter Korsgaard [Sun, 12 Jun 2011 18:41:57 +0000 (20:41 +0200)]
busybox: bump 1.18.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopackage: add statserial
Francis Mendes [Sun, 12 Jun 2011 08:50:34 +0000 (10:50 +0200)]
package: add statserial

Signed-off-by: Francis M. de P. Mendes <francis.mendes@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopackage: add sredird
Peter Korsgaard [Fri, 10 Jun 2011 12:15:48 +0000 (14:15 +0200)]
package: add sredird

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoethtool: bump to 2.6.39
Yegor Yefremov [Thu, 9 Jun 2011 12:19:41 +0000 (14:19 +0200)]
ethtool: bump to 2.6.39

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agouClibc: use NPTL by default for 0.9.32 / snapshot
Peter Korsgaard [Thu, 9 Jun 2011 10:26:28 +0000 (12:26 +0200)]
uClibc: use NPTL by default for 0.9.32 / snapshot

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolinux: default to 2.6.39.1
Peter Korsgaard [Thu, 9 Jun 2011 08:37:32 +0000 (10:37 +0200)]
linux: default to 2.6.39.1

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: add 2.6.39.x, use as default
Peter Korsgaard [Thu, 9 Jun 2011 08:36:21 +0000 (10:36 +0200)]
kernel-headers: add 2.6.39.x, use as default

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.38.x version
Peter Korsgaard [Thu, 9 Jun 2011 08:35:39 +0000 (10:35 +0200)]
kernel-headers: bump 2.6.38.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agouClibc: bump 0.9.32 version, use as default
Peter Korsgaard [Thu, 9 Jun 2011 08:34:12 +0000 (10:34 +0200)]
uClibc: bump 0.9.32 version, use as default

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agouClibc: bump 0.9.31.x version
Peter Korsgaard [Thu, 9 Jun 2011 08:18:05 +0000 (10:18 +0200)]
uClibc: bump 0.9.31.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosudo: bump version, use official upstream, don't disable auth
Peter Korsgaard [Tue, 7 Jun 2011 11:03:24 +0000 (13:03 +0200)]
sudo: bump version, use official upstream, don't disable auth

sudo without authentication doesn't make much sense, and it has very
limited impact on binary size.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibmpeg2: ensure cross sdl-config is used for sdl plugin
Peter Korsgaard [Mon, 6 Jun 2011 11:45:25 +0000 (13:45 +0200)]
libmpeg2: ensure cross sdl-config is used for sdl plugin

Otherwise we end up linking against host libraries.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agogst-plugins-bad: ensure cross sdl-config is used for sdl plugin
Peter Korsgaard [Mon, 6 Jun 2011 11:37:23 +0000 (13:37 +0200)]
gst-plugins-bad: ensure cross sdl-config is used for sdl plugin

Otherwise we end up linking against host libraries.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokickoff 2011.08 development cycle
Peter Korsgaard [Mon, 6 Jun 2011 11:36:55 +0000 (13:36 +0200)]
kickoff 2011.08 development cycle

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoUpdate for 2011.05
Peter Korsgaard [Fri, 27 May 2011 14:18:21 +0000 (16:18 +0200)]
Update for 2011.05

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosetlocalversion: fix svn revision l10n-ism
f8cfe@free.fr [Wed, 25 May 2011 19:10:55 +0000 (21:10 +0200)]
setlocalversion: fix svn revision l10n-ism

Fixed an l10n-ism in retrieval of the svn revision.

Signed-off-by: Stephane Fillod <fillods@users.sf.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agomakedevs: minor fix to command's help
Javier Viguera [Wed, 25 May 2011 12:31:41 +0000 (14:31 +0200)]
makedevs: minor fix to command's help

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoUpdate for 2011.05-rc2
Peter Korsgaard [Tue, 24 May 2011 13:02:23 +0000 (15:02 +0200)]
Update for 2011.05-rc2

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoext-toolchain: fix download url / add cs 2009q3
Klaus Schwarzkopf [Mon, 23 May 2011 16:19:30 +0000 (18:19 +0200)]
ext-toolchain: fix download url / add cs 2009q3

* fixed: external toolchain CODESOURCERY ARM2009Q1 downloaded version ARM2009Q3
* add CODESOURCERY ARM2009Q1 for ti dvsdk 3.10.

Signed-off-by: Klaus Schwarzkopf <schwarzkopf@sensortherm.de>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodefconfigs: bump 2.6.38.x stable version
Peter Korsgaard [Sun, 22 May 2011 15:04:47 +0000 (17:04 +0200)]
defconfigs: bump 2.6.38.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolinux: bump 2.6.38.x stable version
Peter Korsgaard [Sun, 22 May 2011 15:04:06 +0000 (17:04 +0200)]
linux: bump 2.6.38.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.38.x stable version
Peter Korsgaard [Sun, 22 May 2011 15:03:14 +0000 (17:03 +0200)]
kernel-headers: bump 2.6.38.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokbd: rename the makefile so that it's named the same as the package
Thomas Petazzoni [Sun, 22 May 2011 14:32:50 +0000 (16:32 +0200)]
kbd: rename the makefile so that it's named the same as the package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokbd: make sure to link against libintl when needed
Thomas Petazzoni [Sun, 22 May 2011 14:32:49 +0000 (16:32 +0200)]
kbd: make sure to link against libintl when needed

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofakeroot: disallow selection for the target
Thomas Petazzoni [Sun, 22 May 2011 11:56:08 +0000 (13:56 +0200)]
fakeroot: disallow selection for the target

fakeroot for the target fails to build against glibc, due to largefile
related problems :

libtool: link: /home/test/outputs/test-503/host/usr/bin/powerpc-linux-gnu-gcc -pipe -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o faked faked.o  ./.libs/libcommunicate.a -ldl
{standard input}: Assembler messages:
{standard input}:2592: Error: symbol `__fxstatat64' is already defined
{standard input}:2627: Error: symbol `__fxstat64' is already defined
{standard input}:2663: Error: symbol `__xstat64' is already defined
{standard input}:2698: Error: symbol `__lxstat64' is already defined
make[3]: *** [libfakeroot.lo] Error 1

As fakeroot for the target is not really needed, and was only added
when we packaged fakeroot for the host, just make fakeroot not
selectable for the target.

We have to keep the AUTOTARGETS call for fakeroot on the target,
because the host variant does not work otherwise, due to issues in the
package infrastructure (that will be fixed post-2011.05).

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: scripttools needs gui
Thomas Petazzoni [Sun, 22 May 2011 08:53:40 +0000 (10:53 +0200)]
qt: scripttools needs gui

The QtScriptTools library depends on the QtGui library, as can be seen
in the src/src.pro file of the Qt sources :

!contains(QT_CONFIG, no-gui):contains(QT_CONFIG, scripttools): SRC_SUBDIRS += src_scripttools

If the scripttools are enabled in the Qt configuration, but not the
gui, then the scripttools library is not built by Qt, and the
Buildroot build process fails with:

cp: cannot stat `/home/test/outputs/test-502/host/usr/sh4-unknown-linux-gnu/sysroot/usr/lib/libQtScriptTools.so.*': No such file or directory

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopsmisc: do not install pstree.x11 symbolic link
Thomas Petazzoni [Sat, 21 May 2011 15:47:50 +0000 (17:47 +0200)]
psmisc: do not install pstree.x11 symbolic link

The psmisc-no-__progname.patch removes the usage of __progname, which
removes any difference between pstree and pstree.x11. Therefore, we
make sure to not create the pstree.x11 symbolic link in the target.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopsmisc: fix build by linking against libintl when needed
Thomas Petazzoni [Sat, 21 May 2011 15:47:49 +0000 (17:47 +0200)]
psmisc: fix build by linking against libintl when needed

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agotoolchain/crosstool-NG: fix up ct-ng config file to saner defaults
Yann E. MORIN [Sat, 21 May 2011 22:05:42 +0000 (00:05 +0200)]
toolchain/crosstool-NG: fix up ct-ng config file to saner defaults

Peter on IRC reported some build failures for different targets.
They were of two kinds:
 - missing/unknown stack unwinding support
 - missing *_chk functions

The first is about configure not being able to automagically determine
if stack unwinding support is available for the target. The second is
about fortified build forgetting to build the fortified functions.
This applies to both glibc and eglibc.

After some discussions on IRC with Jacmet, it appears that we can
safely assume both of the following:
 - virtually all targets of buildroot will have stack unwinding support
 - we do not care about fortified builds (so far)

So, update the bundled crosstool-NG .config file to saner defaults:
 - force unwind support
 - disable fortified builds

[Peter: fix 'force non-fortified build' sed invocation]
Reported-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agotoolchain/crosstool-NG: update to 1.11.3
Yann E. MORIN [Sat, 21 May 2011 22:05:41 +0000 (00:05 +0200)]
toolchain/crosstool-NG: update to 1.11.3

1.11.3 is the latest stable version, and it has a few improvements
we'll find usefull. For example, it hasa a boolean option for
disabling the {,e}glibc fortified build (instead of requiring us
to shoehorn it in extra cflags.

Update the config files.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agotoolchain/crosstool-NG: bundle one CT-NG config file for each libc familly
Yann E. MORIN [Sat, 21 May 2011 22:05:40 +0000 (00:05 +0200)]
toolchain/crosstool-NG: bundle one CT-NG config file for each libc familly

Currently, the bundled CT-NG config file has no C library configured.
It is quite complex to add and/or munge options in this case.

Now, with one config file per libc familly, it becomes easier.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobind: give path to OpenSSL when OpenSSL is enabled
Thomas Petazzoni [Thu, 19 May 2011 17:23:29 +0000 (19:23 +0200)]
bind: give path to OpenSSL when OpenSSL is enabled

bind needs to be specifically told where OpenSSL is, otherwise, the
build fails with:

checking for OpenSSL library... configure: error: OpenSSL was not found in any of /usr /usr/local /usr/local/ssl /usr/pkg /usr/sfw; use --with-openssl=/path
If you don't want OpenSSL, use --without-openssl

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agonews.html: add 2011.05-rc1 announcement link
Peter Korsgaard [Wed, 18 May 2011 21:07:08 +0000 (23:07 +0200)]
news.html: add 2011.05-rc1 announcement link

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoUpdate for 2011.05-rc1
Peter Korsgaard [Wed, 18 May 2011 19:47:48 +0000 (21:47 +0200)]
Update for 2011.05-rc1

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agomplayer: fix libmad check
Peter Korsgaard [Wed, 18 May 2011 20:03:27 +0000 (22:03 +0200)]
mplayer: fix libmad check

Closes #3757

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoCHANGES: update with recent changes
Peter Korsgaard [Wed, 18 May 2011 19:02:30 +0000 (21:02 +0200)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agogtk2-engines: bump, rename config option and convert to AUTOTARGETS
Thomas Petazzoni [Wed, 18 May 2011 10:01:24 +0000 (12:01 +0200)]
gtk2-engines: bump, rename config option and convert to AUTOTARGETS

gtk2-engines is bumped from 2.9.1 to 2.20.2 (the latest available
version compatible with Gtk2). The package is converted to the
AUTOTARGETS infrastructure.

The config option is renamed so that it matches the package name
(gtk2-engines instead of libgtk2-engines).

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibgtk2: add option to install the gtk-demo program
Thomas Petazzoni [Wed, 18 May 2011 10:00:16 +0000 (12:00 +0200)]
libgtk2: add option to install the gtk-demo program

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibgtk2: change download site
Thomas Petazzoni [Wed, 18 May 2011 09:59:46 +0000 (11:59 +0200)]
libgtk2: change download site

Use the Gnome FTP server as the download site, like we do for other
components of the Gtk stack.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibgtk2: bump to 2.24.4
Thomas Petazzoni [Wed, 18 May 2011 09:59:31 +0000 (11:59 +0200)]
libgtk2: bump to 2.24.4

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agopango: bump to 1.28.4
Thomas Petazzoni [Wed, 18 May 2011 10:02:55 +0000 (12:02 +0200)]
pango: bump to 1.28.4

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibglib2: bump to 2.28.6
Thomas Petazzoni [Wed, 18 May 2011 09:55:54 +0000 (11:55 +0200)]
libglib2: bump to 2.28.6

The patch libglib2-mkenums-nowarn.patch is removed, since it has been
merged upstream.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agoatk: bump to 1.33.6
Thomas Petazzoni [Wed, 18 May 2011 09:55:30 +0000 (11:55 +0200)]
atk: bump to 1.33.6

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agosudo: bump and convert to AUTOTARGETS
Thomas Petazzoni [Tue, 17 May 2011 18:56:46 +0000 (20:56 +0200)]
sudo: bump and convert to AUTOTARGETS

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agodhcpdump: move as a proper package, bump version
Thomas Petazzoni [Tue, 17 May 2011 18:22:29 +0000 (20:22 +0200)]
dhcpdump: move as a proper package, bump version

dhcpdump 1.7 required tcpdump, but version 1.8 now uses libpcap
instead. Also version 1.8 is no longer autotools based, but just a
simple Makefile.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agofestival: remove packages
Thomas Petazzoni [Tue, 17 May 2011 18:06:28 +0000 (20:06 +0200)]
festival: remove packages

Festival does not build, nobody cared since a long time, and they have
been marked deprecated since quite some time.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agoMakefile.autotools.in: default to same <pkg>_MAKE setting for host and target
Peter Korsgaard [Tue, 17 May 2011 08:00:01 +0000 (10:00 +0200)]
Makefile.autotools.in: default to same <pkg>_MAKE setting for host and target

Similar to how it is done for _SOURCE, _PATCH, _SITE and _SUBDIR.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibnl: minor package fixes
Gustavo Zacarias [Mon, 16 May 2011 14:18:26 +0000 (11:18 -0300)]
libnl: minor package fixes

* libnl fails to build with multiple jobs so keep make at -j1
* Multiple libraries are installed so update uninstall target for this

[Peter: remove libnl/libnl-*.* to catch subdir + any new libs in the future]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodropbear: disable zlib support when built with small option
Alexander Clouter [Mon, 16 May 2011 20:41:54 +0000 (22:41 +0200)]
dropbear: disable zlib support when built with small option

Closes #3733

Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxlib_libXfont: don't build devel documentation for host
Vasily Khoruzhick [Mon, 16 May 2011 15:10:50 +0000 (18:10 +0300)]
xlib_libXfont: don't build devel documentation for host

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofont-misc-misc: Don't pull fonts encodings from host system
Vasily Khoruzhick [Mon, 16 May 2011 15:10:49 +0000 (18:10 +0300)]
font-misc-misc: Don't pull fonts encodings from host system

Use encodings from staging dir.

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxlib_libX11: don't build docs for host
Vasily Khoruzhick [Mon, 16 May 2011 15:10:48 +0000 (18:10 +0300)]
xlib_libX11: don't build docs for host

It depends on utils provided by host system, and
they sometimes are missing.

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosdl: fix directfb driver build if host has directfb-config
Peter Korsgaard [Mon, 16 May 2011 20:18:35 +0000 (22:18 +0200)]
sdl: fix directfb driver build if host has directfb-config

Ensure our cross directfb-config is used, so the right linker paths
as passed to the compiler.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: add hush patch for version 1.18.4
Gustavo Zacarias [Mon, 16 May 2011 12:52:30 +0000 (09:52 -0300)]
busybox: add hush patch for version 1.18.4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoopenssh: bump to version 5.8p2
Gustavo Zacarias [Mon, 16 May 2011 12:52:29 +0000 (09:52 -0300)]
openssh: bump to version 5.8p2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibnl: depend on host-bison
Peter Korsgaard [Mon, 16 May 2011 12:43:51 +0000 (14:43 +0200)]
libnl: depend on host-bison

libnl build breaks with bison <2.4 with:

bison -y -d  -o route/cls/ematch_syntax.c route/cls/ematch_syntax.y
route/cls/ematch_syntax.y:31.9-16: syntax error, unexpected
identifier, expecting string

So build our own known good version and use instead.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobison: add host package
Peter Korsgaard [Mon, 16 May 2011 12:43:17 +0000 (14:43 +0200)]
bison: add host package

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: fix build when script+dbus are enabled, but gui isn't
Peter Korsgaard [Mon, 16 May 2011 12:27:24 +0000 (14:27 +0200)]
qt: fix build when script+dbus are enabled, but gui isn't

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: bump version
Peter Korsgaard [Mon, 16 May 2011 12:09:42 +0000 (14:09 +0200)]
qt: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agohaserl: remove 0.8.0 install workaround
Peter Korsgaard [Mon, 16 May 2011 08:13:19 +0000 (10:13 +0200)]
haserl: remove 0.8.0 install workaround

Not needed anymore as stripping is handled on a global level.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agohaserl: fix lua support after 0.9.29 bump
Peter Korsgaard [Mon, 16 May 2011 08:08:38 +0000 (10:08 +0200)]
haserl: fix lua support after 0.9.29 bump

haserl no longer ships haserl_lualib.inc so our lua2c hack didn't work
anymore.

Fix is by adding a patch to re-add it and move the Makefile.in changes
to here rather than with sed.

Longer term we should probably add host-lua support instead.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMerge branch 'for-2011.05/remove-dead-code' of http://free-electrons.com/~thomas...
Peter Korsgaard [Sun, 15 May 2011 20:29:02 +0000 (22:29 +0200)]
Merge branch 'for-2011.05/remove-dead-code' of free-electrons.com/~thomas/buildroot

13 years agogcc: remove references to arm-softfloat.patch.conditional
Thomas Petazzoni [Sun, 15 May 2011 19:58:50 +0000 (21:58 +0200)]
gcc: remove references to arm-softfloat.patch.conditional

The arm-softfloat.patch.conditional patches are no longer in Buildroot
since 9af188d883b2657bd967e6621011d4bbe1bb3441 (October 2009), which
removed support for gcc 3.x and 4.0.x.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agouClibc: remove AVR32 patches for 0.9.29
Thomas Petazzoni [Sun, 15 May 2011 19:55:02 +0000 (21:55 +0200)]
uClibc: remove AVR32 patches for 0.9.29

The 0.9.29 version of uClibc can no longer be selected on AVR32 since
December 2009 (b642f7eefbf8c7f0111d74528390de31aaacf203). Therefore,
those two patches are now completely useless.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agowpa_supplicant: add support for libnl-2.0
Yegor Yefremov [Wed, 27 Apr 2011 08:28:31 +0000 (10:28 +0200)]
wpa_supplicant: add support for libnl-2.0

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agohostapd: add support for libnl-2.0
Yegor Yefremov [Wed, 27 Apr 2011 08:26:39 +0000 (10:26 +0200)]
hostapd: add support for libnl-2.0

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibnl: bump to version 3.0
Yegor Yefremov [Wed, 27 Apr 2011 12:59:58 +0000 (14:59 +0200)]
libnl: bump to version 3.0

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoiw: add support for libnl-3.0
Yegor Yefremov [Thu, 28 Apr 2011 07:23:51 +0000 (09:23 +0200)]
iw: add support for libnl-3.0

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokismet: add support for libnl-3.0
Yegor Yefremov [Thu, 28 Apr 2011 12:15:41 +0000 (14:15 +0200)]
kismet: add support for libnl-3.0

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobarebox: bump version
Peter Korsgaard [Sat, 14 May 2011 22:07:28 +0000 (00:07 +0200)]
barebox: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMerge branch 'for-2011.05/new-codesourcery-toolchain' of http://free-electrons.com...
Peter Korsgaard [Fri, 13 May 2011 13:30:37 +0000 (15:30 +0200)]
Merge branch 'for-2011.05/new-codesourcery-toolchain' of free-electrons.com/~thomas/buildroot

13 years agoffmpeg: Version bump to 0.6.3
Mike Williams [Fri, 13 May 2011 12:54:05 +0000 (08:54 -0400)]
ffmpeg: Version bump to 0.6.3

Signed-off-by: Mike Williams <mike@mikebwilliams.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: only build documentation if requested
Peter Korsgaard [Fri, 13 May 2011 13:12:25 +0000 (15:12 +0200)]
ffmpeg: only build documentation if requested

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: ffmpeg binary requires swscale
Mike Williams [Thu, 12 May 2011 20:47:18 +0000 (16:47 -0400)]
ffmpeg: ffmpeg binary requires swscale

Signed-off-by: Mike Williams <mike@mikebwilliams.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: disable altivec optimizations for PPC CPUs lacking it
Mike Williams [Thu, 12 May 2011 20:12:40 +0000 (16:12 -0400)]
ffmpeg: disable altivec optimizations for PPC CPUs lacking it

[Peter: use positive logic]
Signed-off-by: Mike Williams <mike@mikebwilliams.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodropbear: link statically if BR2_PREFER_STATIC_LIB
Peter Korsgaard [Fri, 13 May 2011 10:04:10 +0000 (12:04 +0200)]
dropbear: link statically if BR2_PREFER_STATIC_LIB

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodropbear: fix static link for version 0.53.1
Jean-Christophe PLAGNIOL-VILLARD [Sun, 1 May 2011 12:37:42 +0000 (14:37 +0200)]
dropbear: fix static link for version 0.53.1

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoexternal-toolchain: Add MIPS CodeSourcery 2011.03
Thomas Petazzoni [Fri, 13 May 2011 09:41:40 +0000 (11:41 +0200)]
external-toolchain: Add MIPS CodeSourcery 2011.03

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agoexternal-toolchain: Add ARM CodeSourcery 2011.03
Thomas Petazzoni [Fri, 13 May 2011 09:38:43 +0000 (11:38 +0200)]
external-toolchain: Add ARM CodeSourcery 2011.03

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>