summaryrefslogtreecommitdiff
path: root/CHANGES
AgeCommit message (Collapse)Author
2010-09-10usbutils: bump to 0.90Marcus Osdoba
Signed-off-by: Marcus Osdoba <marcus.osdoba@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-09qt: Bump to 4.6.3Paul Jones
Also add option to build example and demo code [Peter: fix patch handling] Signed-off-by: Paul Jones <paul@pauljones.id.au> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-07berkeleydb: fix download urlGustavo Zacarias
Sleepycat is now owned by oracle so the old site is gone. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-07iptables: bump to 1.4.9.1Gustavo Zacarias
Adds support for new kernel 2.6.35 features. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-07kismet: bump to 2010-07-R1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-07openvpn: bump to 2.1.2Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-06dropbear: add option to disable reverse DNS lookupsPeter Korsgaard
Add option to disable reverse DNS lookups on client connection, as connections otherwise stall until DNS times out in configurations without working reverse DNS. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-05busybox: Bump to 1.17.2Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-05kconfig: remove CONFIG_ references in search/helpPeter Korsgaard
We use BR2_*, not CONFIG_* - So remove references to CONFIG_ in search/help windows. Long term we should probably consider doing s/^BR2_/CONFIG_/ to get rid of all this though. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-02kick off 2010.11 developmentPeter Korsgaard
Tree is open again. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-01update for 2010.082010.08Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-31package/games: remove broken lxdoom packagePeter Korsgaard
It's deprecated upstream (merged in prboom), not updated in years and broken (uses host includes / missing dependencies), so remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30xstroke: fix dependenciesPeter Korsgaard
xstroke doesn't need docker, but it does need libXft/Xtst/Xpm. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30packages/atk: fix MakefileYann E. MORIN
Reported-by: "James J. Dines" <jdines@jdines.net> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30update for 2010.08-rc22010.08_rc2Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30gcc: remove deprecated gcc 4.2.[1-3] versions and unused patchesPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30kismet: fix build when none of client, server or drone are selectedThomas Petazzoni
Random package configuration can trigger the selection of kismet, but neither of client, server or drone suboptions. In this case, the KISMET_TARGET_BINARIES variable is empty, leading to failure during the installation stage. At the same time, we remove the useless stripping of the installed binaries, since this is done globally by the Buildroot infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-08-30CHANGES: #2395 is resolvedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30ncurses: get rid of unused BR2_PACKAGE_NCURSES_TARGET_HEADERS handlingPeter Korsgaard
The option was removed from Config.in in 58508f39c (ncurses: remove dedicated target-headers option), so remove it from the makefile as well. Reported-by: Ian <reg-ian.ridley-buildroot@hydrix.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-30pango: needs C++ for freetype handlingPeter Korsgaard
Pango was recently updated to v1.28 as a dependency of webkit, but its freetype support has unfortunately been rewritten with parts in C++ (since pango 1.25), so adjust dependencies of pango and users of it to require C++ support. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29initramfs: Don't overwrite $(TARGET_DIR)/init if it existsSimon Pasch
Closes #2443 Allow use of custom init scripts. Signed-off-by: Simon Pasch <fpasch@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29pppd.mk installs radattr.so twice and omits radrealms.soDarcy Watkins
In pppd.mk the radattr.so plugin (for radiua) is installed twice (the second install overwriting the first) but the radrealms.so plugin is omitted from the install. This appears to be a copy-paste error. Below is patch that corrects this. signed-off by: Darcy Watkins <dwatkins@tranzeo.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29stunnel: remove broken packagePeter Korsgaard
It doesn't build as there's no dependency on openssl, and it hasn't seen any real updates since it got added in 2006, so simply remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29proftpd: breaks with parallel buildsPeter Korsgaard
The proftpd build system has a race condition, which may break the build with high -j<level> values (libsupp.a isn't built by the time it is needed). Fix it by using MAKE1 instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29samba: avahi support needs avahi-daemon / dbusPeter Korsgaard
./configure checks for libavahi-client. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29startup-notification: fix typo in dependencies linePeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-29uClibc: fix ppc e500 handlingStanislav Bogatyrev
Closes #2449 Signed-off-by: Stanislav Bogatyrev <bogatyrev_stanislav@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-27fs/squashfs: fix endianness typo for squashfs3Stanislav Bogatyrev
Signed-off-by: Stanislav Bogatyrev <bogatyrev_stanislav@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-26qt: fix sysroot confusion in ./configurePeter Korsgaard
qt's configure script is getting confused now that we're passing --sysroot= in QMAKE_CC / QMAKE_CXX, causing misdetection of features and runtime breakage. Fix it by passing --sysroot in CFLAGS/CXXFLAGS instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-25Config.in: mark BR2_CONFIG_CACHE as experimental and disable by defaultPeter Korsgaard
As it is known to break with certain package combinations. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-25toolchain/gcc: fix 4.2.4 build after uClibc NTPL support got addedKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-25CHANGES: update with changes from for-2010.08 branchPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-30CHANGES: libgail is new, not removedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-30update for 2010.08-rc12010.08_rc1Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-30CHANGES: add a bunch of issues resolved by ThomasPeter Korsgaard
Thanks! Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-30CHANGES: update with changes from fixes-20100729 branchPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-29iostat: migrate to gentargetsGustavo Zacarias
Also make the cpu counting routine more reliable (for ARM it's "Processor" in cpuinfo rather than "processor"). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-29uClibc: remove old 0.9.28 supportPeter Korsgaard
Not supported upstream and needs complicated workaround for the NPTL stuff. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-29CHANGES: #2257 / #2263 are resolvedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-28CHANGES: add note about GTK+ on directfb being deprecatedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-28CHANGES: update with changes from the 'various-things' branchPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27zlib: Bump to 1.2.5Paul Jones
Closes #1981 Signed-off-by: Paul Jones <paul@pauljones.id.au> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27Deprecate the Alpha, IA64 and Sparc64 supportThomas Petazzoni
Those architectures don't exist anymore (Alpha, IA64) or aren't widely used for embedded systems running Linux. Moreover, no clear Buildroot maintainer has stepped in to maintain these architectures, so it's better to not pretend that we support them. The goal is to mark them as deprecated in 2010.08 and remove them in 2010.11. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27CHANGES: update with changes from various-bumps branchPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27at: fix configure cache issue with flexPeter Korsgaard
Make sure flex is built before at if enabled, so it correctly detects it and doesn't populate tgt-config.cache with invalid values. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27gnuchess: fix configure cache issue with readlinePeter Korsgaard
Make sure readline is built before gnuchess if enabled, so it correctly detects it and doesn't populate tgt-config.cache with invalid values. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27CHANGES: fix typoPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27Deprecate pcmcia and microwin packagesThomas Petazzoni
It isn't worth the effort to convert these packages to the new package infrastructure since they are deprecated. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27setserial: convert to autotargets and fix manpages installThomas Petazzoni
Close #2269 [Peter: fix Makefile patch to not strip wrong file, rename hayes patch] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-27tftpd: convert to autotargetsThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>