buildroot.git
13 years agopackage/config; br2_symbol_printer(): fix off-by-1 in string handling
Peter Korsgaard [Wed, 30 Mar 2011 18:51:48 +0000 (20:51 +0200)]
package/config; br2_symbol_printer(): fix off-by-1 in string handling

Based on patch by bbj17@gmx.de.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.37.x / 2.6.38.x stable versions
Peter Korsgaard [Tue, 29 Mar 2011 20:19:49 +0000 (22:19 +0200)]
kernel-headers: bump 2.6.37.x / 2.6.38.x stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: fix qt3 support target install
Peter Korsgaard [Tue, 29 Mar 2011 11:34:25 +0000 (13:34 +0200)]
qt: fix qt3 support target install

"lib" shouldn't be prefixed, otherwise the make file tries to install
liblibQt3Support.so.*.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMakefile.autotools.in: add libtool v2.4 support
Peter Korsgaard [Mon, 28 Mar 2011 19:45:06 +0000 (21:45 +0200)]
Makefile.autotools.in: add libtool v2.4 support

Packages (like avahi) are now using libtool 2.4, so extend the libtool
handling to support those as well.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: ensure source gets downloaded/extracted/patched before -menuconfig
Peter Korsgaard [Mon, 28 Mar 2011 19:33:26 +0000 (21:33 +0200)]
busybox: ensure source gets downloaded/extracted/patched before -menuconfig

Closes #3511

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agohostcc/hostcxx: fix noccache variant setting
Mike Frysinger [Mon, 28 Mar 2011 07:18:47 +0000 (03:18 -0400)]
hostcc/hostcxx: fix noccache variant setting

The current code accidentally sets up HOSTCC_NOCCACHE and HOSTCXX_NOCCACHE
only when the respective HOSTCC or HOSTCXX values are not set.  So if you
do something like:
make HOSTCC=gcc menuconfig
The build fails because HOSTCC_NOCCACHE is not set anywhere.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoexternal toolchain: Only prefix path if specified
Sonic Zhang [Thu, 10 Mar 2011 11:12:41 +0000 (19:12 +0800)]
external toolchain: Only prefix path if specified

Only prefix the external toolchain calls with its absolute path if
BR2_TOOLCHAIN_EXTERNAL_PATH is set, otherwise just assume it will
be available in the path.

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoCHANGES: update with recent changes
Peter Korsgaard [Sun, 27 Mar 2011 22:13:28 +0000 (00:13 +0200)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: convert to the GENTARGETS infrastructure
Thomas Petazzoni [Sun, 20 Mar 2011 14:19:12 +0000 (15:19 +0100)]
qt: convert to the GENTARGETS infrastructure

In addition to converting the qt package to the GENTARGETS
infrastructure, this commit also does the following (related) things
in the Qt package:

 * Create a BR2_PACKAGE_QT_CONFIG_FILE option, which can be used to
   pass a custom Qt configuration file, such as the ones found in
   src/corelib/global/qconfig-*.h. This used to be possible, but
   required changing qt.mk directly, which isn't really how we
   configure things in Buildroot.

 * Remove the BR2_PACKAGE_QT_EMB_PLATFORM option, the embedded
   platform name is now computed directly in qt.mk.

 * The QT_CONFIGURE variable, which hosted all ./configure options,
   has been renamed to QT_CONFIGURE_OPTS, for consistency with what we
   do in the AUTOTARGETS infrastructure.

 * The QT_DEP_LIBS variable has been renamed to QT_DEPENDENCIES, so
   that dependencies are properly handled by the GENTARGETS
   infrastructures.

 * The QT_QMAKE_SET macro (used to adjust the path/flags of the
   compiler/linker) has been extended with an additional argument,
   which allows to pass the source directory of Qt.

 * All the installation procedure has been rewritten to fit within the
   GENTARGETS mechanism.

[Peter: fixed minor issues pointed out by Will]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Acked-by: Will Wagner <willw@carallon.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodnsmasq: bump to version 2.57
Gustavo Zacarias [Tue, 1 Mar 2011 16:18:11 +0000 (13:18 -0300)]
dnsmasq: bump to version 2.57

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agonetsnmp: bump to version 5.6.1
Gustavo Zacarias [Tue, 1 Mar 2011 16:18:09 +0000 (13:18 -0300)]
netsnmp: bump to version 5.6.1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoncurses: version bump to 5.8
Mike Frysinger [Wed, 23 Mar 2011 23:42:50 +0000 (19:42 -0400)]
ncurses: version bump to 5.8

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agowebkit: prefer X11 backend if both directfb and x11 are available
Peter Korsgaard [Sun, 27 Mar 2011 20:09:07 +0000 (22:09 +0200)]
webkit: prefer X11 backend if both directfb and x11 are available

This shouldn't happen with any sane configuration, but is possible with
randpackageconfig builds, where it breaks the build as libgtk would prefer
X11 and webkit directfb, causing it to fail with:

No package 'gtk+-directfb-2.0' found

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxlib_xtrans: drop pkgconfig patch now we're search usr/share/pkgconfig
Peter Korsgaard [Sun, 27 Mar 2011 19:48:30 +0000 (21:48 +0200)]
xlib_xtrans: drop pkgconfig patch now we're search usr/share/pkgconfig

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopkg-config: add usr/share/pkgconfig to search path as well
Peter Korsgaard [Sun, 27 Mar 2011 19:20:04 +0000 (21:20 +0200)]
pkg-config: add usr/share/pkgconfig to search path as well

A few packages (like xlib_xtrans) install their .pc files here, and
upstream pkg-config defaults to searching both /usr/lib/pkgconfig and
/usr/share/pkgconfig, so add it as well.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: dbus module doesn't depend on gui support
Peter Korsgaard [Fri, 25 Mar 2011 21:12:32 +0000 (22:12 +0100)]
qt: dbus module doesn't depend on gui support

Seems I somehow got this wrong back in December (bff5248202).

At the same time fix a typo in the comment.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.37.x / 2.6.38.x stable versions
Peter Korsgaard [Thu, 24 Mar 2011 12:11:52 +0000 (13:11 +0100)]
kernel-headers: bump 2.6.37.x / 2.6.38.x stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agomtd: bump version
Peter Korsgaard [Fri, 18 Mar 2011 12:26:48 +0000 (13:26 +0100)]
mtd: bump version

Fixes flash_erase argument handling (start should be in bytes, not blocks).

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoethtool: bump version, use new upstream location
Peter Korsgaard [Thu, 17 Mar 2011 11:10:08 +0000 (12:10 +0100)]
ethtool: bump version, use new upstream location

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoicu: fix parallel builds
Peter Korsgaard [Thu, 17 Mar 2011 08:13:42 +0000 (09:13 +0100)]
icu: fix parallel builds

The icu build system seems to have a race condition, which gets triggered
by high BR2_JLEVEL settings, so disable parallel builds.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofetch/git: clone the repository as bare
Jean-Christophe PLAGNIOL-VILLARD [Wed, 16 Mar 2011 16:07:08 +0000 (17:07 +0100)]
fetch/git: clone the repository as bare

This will reduce the space used and speed up the clone as it is only
used to generate an archive, which doesn't need the git working tree.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agouClibc: bump 0.9.32-rc version
Peter Korsgaard [Wed, 16 Mar 2011 21:28:13 +0000 (22:28 +0100)]
uClibc: bump 0.9.32-rc version

To -rc3 and update defconfig to match.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosocat: bump to version 2.0.0-b4
Yegor Yefremov [Wed, 16 Mar 2011 09:46:49 +0000 (10:46 +0100)]
socat: bump to version 2.0.0-b4

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolinux: use 2.6.38 by default
Peter Korsgaard [Tue, 15 Mar 2011 08:10:50 +0000 (09:10 +0100)]
linux: use 2.6.38 by default

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: add 2.6.38, remove 2.6.34.x
Peter Korsgaard [Tue, 15 Mar 2011 08:09:32 +0000 (09:09 +0100)]
kernel-headers: add 2.6.38, remove 2.6.34.x

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolinux: bump 2.6.37.x stable version
Peter Korsgaard [Mon, 14 Mar 2011 23:02:55 +0000 (00:02 +0100)]
linux: bump 2.6.37.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.37.x stable version
Peter Korsgaard [Mon, 14 Mar 2011 23:01:39 +0000 (00:01 +0100)]
kernel-headers: bump 2.6.37.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoalsa-utils: fix dependencies
Peter Korsgaard [Mon, 14 Mar 2011 22:59:10 +0000 (23:59 +0100)]
alsa-utils: fix dependencies

Most alsa utilites depend on specific alsa-lib options, so ensure those
are selected. Arecord is furthermore just a symlink to aplay these days,
so get rid of the option.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxterm: fix dependencies
Peter Korsgaard [Mon, 14 Mar 2011 22:36:12 +0000 (23:36 +0100)]
xterm: fix dependencies

xterm doesn't need the xserver to build.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxterm: fix dependencies and bump to version 267
Gustavo Zacarias [Thu, 10 Mar 2011 13:44:32 +0000 (10:44 -0300)]
xterm: fix dependencies and bump to version 267

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agogst-plugins-good: bump version
Peter Korsgaard [Mon, 14 Mar 2011 20:17:21 +0000 (21:17 +0100)]
gst-plugins-good: bump version

Fixes v4l2src building with 2.6.38-rc1+ kernel headers.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoalsa-utils: bump to 1.0.24.2
Chih-Min Chao [Fri, 11 Mar 2011 08:13:28 +0000 (16:13 +0800)]
alsa-utils: bump to 1.0.24.2

[Peter: fix exp10 breakage on uClibc]
Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoalsa-lib : bump to 1.0.24.1
Chih-Min Chao [Fri, 11 Mar 2011 08:13:27 +0000 (16:13 +0800)]
alsa-lib : bump to 1.0.24.1

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofakeroot: use --program-prefix rather than manually renaming binaries
Peter Korsgaard [Sun, 13 Mar 2011 22:46:54 +0000 (23:46 +0100)]
fakeroot: use --program-prefix rather than manually renaming binaries

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agogrub: fix download URL
Peter Korsgaard [Sun, 13 Mar 2011 20:42:06 +0000 (21:42 +0100)]
grub: fix download URL

The Debian package snapshot service moved to an official debian.org
address last year (http://www.debian.org/News/2010/20100412) with a
slightly different URL structure, so adjust the download URL to match.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoalsamixergui: fix download URL
Hector Oron [Sun, 13 Mar 2011 20:33:53 +0000 (21:33 +0100)]
alsamixergui: fix download URL

Closes #3457

The Debian package snapshot service moved to an official debian.org
address last year (http://www.debian.org/News/2010/20100412) with a
slightly different URL structure, so adjust the download URL to match.

Signed-off-by: Hector Oron <hector.oron@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofakeroot: fix download URL
Hector Oron [Sun, 13 Mar 2011 20:28:18 +0000 (21:28 +0100)]
fakeroot: fix download URL

Closes #3451

The Debian package snapshot service moved to an official debian.org
address last year (http://www.debian.org/News/2010/20100412) with a
slightly different URL structure, so adjust the download URL to match.

Signed-off-by: Hector Oron <hector.oron@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: bump 1.18.x stable version
Peter Korsgaard [Sun, 13 Mar 2011 20:08:26 +0000 (21:08 +0100)]
busybox: bump 1.18.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agomakedevs: don't call /bin/sync after creating nodes
Peter Korsgaard [Sat, 12 Mar 2011 21:24:34 +0000 (22:24 +0100)]
makedevs: don't call /bin/sync after creating nodes

Closes #3475

There's no real reason to sync after creating the device nodes,
and it slows down the file system image creating quite a lot on
busy systems, so get rid of it.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agomakedevs: convert to GENTARGETS format
Peter Korsgaard [Sat, 12 Mar 2011 21:19:37 +0000 (22:19 +0100)]
makedevs: convert to GENTARGETS format

And at the same time fix target build (used host compiler, didn't add
to TARGETS).

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMakefile.package.in: make <pkg>_SOURCE optional
Peter Korsgaard [Sat, 12 Mar 2011 21:10:56 +0000 (22:10 +0100)]
Makefile.package.in: make <pkg>_SOURCE optional

For packages where the sources are included in buildroot (E.G. makedevs).
We unfortunately already use no <pkg>_SOURCE to mean <pkg>_<version>.tar.gz,
in several packages (and for git/svn/bzr support), so you need to
define <pkg>_SOURCE to the empty string to use it.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoCHANGES: update with recent changes
Peter Korsgaard [Sat, 12 Mar 2011 19:38:30 +0000 (20:38 +0100)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox: 1.18.3 cksum fix
Peter Korsgaard [Fri, 11 Mar 2011 23:03:52 +0000 (00:03 +0100)]
busybox: 1.18.3 cksum fix

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosamba: rename CVE-2011-0719 patch so other patches gets applied as well
Peter Korsgaard [Fri, 11 Mar 2011 22:06:16 +0000 (23:06 +0100)]
samba: rename CVE-2011-0719 patch so other patches gets applied as well

Otherwise the build breaks during configure with the AC_TRY_RUN test for
getgrouplist.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agotoolchain/gcc/4.2.4: Remove libstdc++ uClibc locale patches
Will Newton [Thu, 10 Mar 2011 10:20:47 +0000 (10:20 +0000)]
toolchain/gcc/4.2.4: Remove libstdc++ uClibc locale patches

These patches do not build with more recent versions of uClibc
going back as far as at least 2008. More recent compiler versions
seem to do fine without these patches, so lets remove them so
libstdc++ locale support will actually build for gcc 4.2.4.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agobusybox 1.18.3: add patches for klogd and menuconfig
Gustavo Zacarias [Thu, 10 Mar 2011 12:25:04 +0000 (09:25 -0300)]
busybox 1.18.3: add patches for klogd and menuconfig

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxz: bump to version 5.0.1
Gustavo Zacarias [Thu, 10 Mar 2011 12:25:03 +0000 (09:25 -0300)]
xz: bump to version 5.0.1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxorg-server: point localstatedir to /var
Gustavo Zacarias [Thu, 10 Mar 2011 12:25:02 +0000 (09:25 -0300)]
xorg-server: point localstatedir to /var

We don't want logs to end up in /usr/var/log

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopkg-config: only prepend sysroot to includedir / libdir
Peter Korsgaard [Thu, 10 Mar 2011 10:36:18 +0000 (11:36 +0100)]
pkg-config: only prepend sysroot to includedir / libdir

Only append sysroot to includedir / libdir, and not to other variables,
when a variable is requested (--variable=<name>), similar to how it
is done for the -I / -L flags in cflags/ldflags.

The problem is that pkg-config doesn't have any explicit cross compilation
support, so there's some confusion about what are host paths and what are
target ones.  Includedir / libdir are paths for the (cross) compiler, so
those should normally have sysroot prepended, but other variables might
refer to target paths instead.

This fixes the installation of the xfonts-* packages, which uses
pkg-config --variable=fontrootdir fontutil to figure out the target
installation location for fonts.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMerge branch 'for-2011.05/remove-config-scripts' of git://git.busybox.net/~tpetazzoni...
Peter Korsgaard [Wed, 9 Mar 2011 19:34:19 +0000 (20:34 +0100)]
Merge branch 'for-2011.05/remove-config-scripts' of git://git.busybox.net/~tpetazzoni/git/buildroot

13 years agoavahi: bump version
Peter Korsgaard [Wed, 9 Mar 2011 07:58:54 +0000 (08:58 +0100)]
avahi: bump version

Mainly bugfixes.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokernel-headers: bump 2.6.37.x stable version
Peter Korsgaard [Tue, 8 Mar 2011 13:56:26 +0000 (14:56 +0100)]
kernel-headers: bump 2.6.37.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Update README.buildroot.
Will Newton [Fri, 25 Feb 2011 17:17:37 +0000 (17:17 +0000)]
gnuconfig: Update README.buildroot.

GNU config is now managed in git so we cannot use the old method
of doing a cvs up to get the latest changes.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Apply patches to config.{sub,guess}.
Will Newton [Fri, 25 Feb 2011 17:16:39 +0000 (17:16 +0000)]
gnuconfig: Apply patches to config.{sub,guess}.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Update patches to apply to 2011-02-02 version.
Will Newton [Fri, 25 Feb 2011 17:15:32 +0000 (17:15 +0000)]
gnuconfig: Update patches to apply to 2011-02-02 version.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Update config.{sub,guess} to 2011-02-02 version.
Will Newton [Fri, 25 Feb 2011 17:06:02 +0000 (17:06 +0000)]
gnuconfig: Update config.{sub,guess} to 2011-02-02 version.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Remove sh patch.
Will Newton [Fri, 25 Feb 2011 15:29:05 +0000 (15:29 +0000)]
gnuconfig: Remove sh patch.

A similar patch appears to have been applied upstream.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Remove gnuconfig patch as it has been merged upstream.
Will Newton [Fri, 25 Feb 2011 14:11:23 +0000 (14:11 +0000)]
gnuconfig: Remove gnuconfig patch as it has been merged upstream.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Remove GNU Hurd patch as it is no longer supported.
Will Newton [Fri, 25 Feb 2011 14:10:36 +0000 (14:10 +0000)]
gnuconfig: Remove GNU Hurd patch as it is no longer supported.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agognuconfig: Remove old checkout of GNU config.
Will Newton [Fri, 25 Feb 2011 14:09:58 +0000 (14:09 +0000)]
gnuconfig: Remove old checkout of GNU config.

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agolibxslt: remove xslt-config script from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:23:55 +0000 (18:23 +0100)]
libxslt: remove xslt-config script from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibxml2: remove xml2-config script from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:23:39 +0000 (18:23 +0100)]
libxml2: remove xml2-config script from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibpng: remove libpng*-config scripts from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:23:11 +0000 (18:23 +0100)]
libpng: remove libpng*-config scripts from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agolibdnet: remove dnet-config script from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:22:49 +0000 (18:22 +0100)]
libdnet: remove dnet-config script from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agoneon: remove neon-config script from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:22:02 +0000 (18:22 +0100)]
neon: remove neon-config script from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agoimagemagick: remove *-config scripts from TARGET_DIR
Thomas Petazzoni [Wed, 22 Dec 2010 17:21:35 +0000 (18:21 +0100)]
imagemagick: remove *-config scripts from TARGET_DIR

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agogst-ffmpeg: bump to version 0.10.11
Gustavo Zacarias [Tue, 1 Mar 2011 16:20:01 +0000 (13:20 -0300)]
gst-ffmpeg: bump to version 0.10.11

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: bump to version 0.6.1
Gustavo Zacarias [Tue, 1 Mar 2011 16:20:00 +0000 (13:20 -0300)]
ffmpeg: bump to version 0.6.1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agofile: bump to version 5.05
Gustavo Zacarias [Tue, 1 Mar 2011 16:19:59 +0000 (13:19 -0300)]
file: bump to version 5.05

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agompg123: bump to version 1.13.2
Gustavo Zacarias [Tue, 1 Mar 2011 16:19:58 +0000 (13:19 -0300)]
mpg123: bump to version 1.13.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodropbear: bump to version 0.53.1
Gustavo Zacarias [Fri, 4 Mar 2011 14:22:26 +0000 (11:22 -0300)]
dropbear: bump to version 0.53.1

Changelog @ http://matt.ucc.asn.au/dropbear/CHANGES

Since some build-time defaults have changed that make dropbear somewhat
bigger we introduce a new option to optimize dropbear for size.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosamba: add security fix for CVE-2011-0719
Gustavo Zacarias [Fri, 4 Mar 2011 14:22:25 +0000 (11:22 -0300)]
samba: add security fix for CVE-2011-0719

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: add option for system sqlite
Gustavo Zacarias [Tue, 1 Mar 2011 14:34:00 +0000 (11:34 -0300)]
qt: add option for system sqlite

Add an option to use the system sqlite library.
Also drop sqlite2 stub since it's pointless.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoMerge branch 'for-2011.05/pkg-stats-improvements' of git://git.busybox.net/~tpetazzon...
Peter Korsgaard [Sat, 5 Mar 2011 14:30:12 +0000 (15:30 +0100)]
Merge branch 'for-2011.05/pkg-stats-improvements' of git://git.busybox.net/~tpetazzoni/git/buildroot

13 years agoxz: fix build without wchar support
Peter Korsgaard [Sat, 5 Mar 2011 14:04:44 +0000 (15:04 +0100)]
xz: fix build without wchar support

xz itself works without wchar support, but the C99 test in configure
fails when it isn't available. Fix it by providing a cached value for
the test.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosquashfs: re-add legacy lzma support
Gustavo Zacarias [Fri, 4 Mar 2011 14:10:14 +0000 (11:10 -0300)]
squashfs: re-add legacy lzma support

Readd legacy LZMA support since older patched kernels might be using it.
Introduce an XZ target filesystem option for the new format.

[Peter: add a seperate xz target for squashfs-target as well]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosquashfs: bump version
Peter Korsgaard [Thu, 3 Mar 2011 10:49:57 +0000 (11:49 +0100)]
squashfs: bump version

The EXTRA_CFLAGS patch is now upstream, but we need a fix for !gzip builds
instead.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxerces: add optional libcurl support
Peter Korsgaard [Wed, 2 Mar 2011 10:56:03 +0000 (11:56 +0100)]
xerces: add optional libcurl support

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxerces: bump version, convert to autotargets
Peter Korsgaard [Wed, 2 Mar 2011 07:50:58 +0000 (08:50 +0100)]
xerces: bump version, convert to autotargets

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agowebsite: add google analytics for statistics
Peter Korsgaard [Tue, 1 Mar 2011 22:20:16 +0000 (23:20 +0100)]
website: add google analytics for statistics

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: bump version
Peter Korsgaard [Tue, 1 Mar 2011 16:08:42 +0000 (17:08 +0100)]
qt: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoavahi: bump version, remove dbus workaround
Peter Korsgaard [Tue, 1 Mar 2011 13:13:56 +0000 (14:13 +0100)]
avahi: bump version, remove dbus workaround

This is now fixed upstream.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agokickoff 2011.05 development cycle
Peter Korsgaard [Tue, 1 Mar 2011 13:13:06 +0000 (14:13 +0100)]
kickoff 2011.05 development cycle

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agopkg-stats: add statistics about number of patches per package
Thomas Petazzoni [Mon, 28 Feb 2011 21:09:20 +0000 (22:09 +0100)]
pkg-stats: add statistics about number of patches per package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agopkg-stats: support CMAKETARGETS and update list of .mk to ignore
Thomas Petazzoni [Mon, 28 Feb 2011 20:54:58 +0000 (21:54 +0100)]
pkg-stats: support CMAKETARGETS and update list of .mk to ignore

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 years agonews.html: add 2011.02 announcement link
Peter Korsgaard [Mon, 28 Feb 2011 21:37:41 +0000 (22:37 +0100)]
news.html: add 2011.02 announcement link

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoUpdate for 2011.02
Peter Korsgaard [Mon, 28 Feb 2011 20:54:22 +0000 (21:54 +0100)]
Update for 2011.02

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: qt3 compatibility needs gui support
Peter Korsgaard [Mon, 28 Feb 2011 20:46:05 +0000 (21:46 +0100)]
qt: qt3 compatibility needs gui support

Closes #2911

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxerces: disable parallel builds
Peter Korsgaard [Mon, 28 Feb 2011 15:56:52 +0000 (16:56 +0100)]
xerces: disable parallel builds

The build system has a race condition causing build failure with high
BR2_JLEVEL values, so ensure make -j1 is used.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoCHANGES: update with recent changes
Peter Korsgaard [Mon, 28 Feb 2011 15:11:02 +0000 (16:11 +0100)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoffmpeg: disable mmx for low end x86-type processors
Gustavo Zacarias [Mon, 28 Feb 2011 14:18:21 +0000 (11:18 -0300)]
ffmpeg: disable mmx for low end x86-type processors

ffmpeg enables mmx by default for x86-class processors, so disable it for
processors that lack it (i386, i486, i586, i686, pentium pro, geode).
Solves bug #3325

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoavahi: fix avahi access through dbus
Peter Korsgaard [Mon, 28 Feb 2011 14:53:49 +0000 (15:53 +0100)]
avahi: fix avahi access through dbus

Ensure that the avahi dbus service gets installed if dbus support is
enabled, otherwise avahi access through dbus fails (as clients try
to start the daemon and dbus doesn't know how to do this).

Fixed upstream in 0.6.28 (http://avahi.org/ticket/319) but this
workaround is simpler/safer for now.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agogdb: depend on host-expat to fix remote debugging
Bjørn Forsman [Thu, 24 Feb 2011 20:37:48 +0000 (21:37 +0100)]
gdb: depend on host-expat to fix remote debugging

This patch fixes the following error when using GDB with gdbserver:

  warning: Can not parse XML target description; XML support was disabled at compile time
  Remote 'g' packet reply is too long: <very long line of hex chars>
  [remote debugging does not work]

Use $(HOST_CONFIGURE_OPTS) so expat is found.

Signed-off-by: Bjørn Forsman <bjorn.forsman@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosynergy: fix build with modern toolchains
Peter Korsgaard [Mon, 28 Feb 2011 09:24:51 +0000 (10:24 +0100)]
synergy: fix build with modern toolchains

A number of includes were missing for exit/getenv/memcpy/strlen/...

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoCHANGES: update with recent changes
Peter Korsgaard [Sun, 27 Feb 2011 21:31:05 +0000 (22:31 +0100)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoxerces: needs wchar support in toolchain
Peter Korsgaard [Sun, 27 Feb 2011 21:25:58 +0000 (22:25 +0100)]
xerces: needs wchar support in toolchain

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agowebif: mark as deprecated
Peter Korsgaard [Sun, 27 Feb 2011 20:28:50 +0000 (21:28 +0100)]
webif: mark as deprecated

It's long dead upstream and hasn't seen any updates since it got added
back in 2008.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agodevmem2: mark as deprecated
Peter Korsgaard [Sun, 27 Feb 2011 20:13:10 +0000 (21:13 +0100)]
devmem2: mark as deprecated

Busybox has had a devmem applet for a number of years now, so deprecate
the old standalone program.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agoqt: add option to hide mouse cursor
Daniel Nyström [Wed, 2 Feb 2011 23:06:44 +0000 (00:06 +0100)]
qt: add option to hide mouse cursor

Allow the user to build Qt with the QT_NO_QWS_CURSOR macro set.

Signed-off-by: Daniel Nyström <daniel.nystrom@timeterminal.se>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 years agosquashfs: use kconfig to ensure atleast one compressor is selected
Peter Korsgaard [Fri, 25 Feb 2011 20:27:40 +0000 (21:27 +0100)]
squashfs: use kconfig to ensure atleast one compressor is selected

Similar to how we do it for mpd now. This way, the selection is clearly
visible to the user, instead of the hidden selection we used to do in
the makefile.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>