summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* linux: bump 2.6.38.x stable versionPeter Korsgaard2011-05-221-3/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kernel-headers: bump 2.6.38.x stable versionPeter Korsgaard2011-05-221-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kbd: rename the makefile so that it's named the same as the packageThomas Petazzoni2011-05-221-0/+0
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kbd: make sure to link against libintl when neededThomas Petazzoni2011-05-223-0/+38
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* fakeroot: disallow selection for the targetThomas Petazzoni2011-05-223-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* qt: scripttools needs guiThomas Petazzoni2011-05-221-0/+1
| | | | | | | | | | | | | | | | 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>
* psmisc: do not install pstree.x11 symbolic linkThomas Petazzoni2011-05-221-3/+20
| | | | | | | | | 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>
* psmisc: fix build by linking against libintl when neededThomas Petazzoni2011-05-221-0/+43
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain/crosstool-NG: fix up ct-ng config file to saner defaultsYann E. MORIN2011-05-221-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* toolchain/crosstool-NG: update to 1.11.3Yann E. MORIN2011-05-225-147/+242
| | | | | | | | | | | | 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>
* toolchain/crosstool-NG: bundle one CT-NG config file for each libc famillyYann E. MORIN2011-05-225-31/+1019
| | | | | | | | | | 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>
* bind: give path to OpenSSL when OpenSSL is enabledThomas Petazzoni2011-05-191-0/+1
| | | | | | | | | | | 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>
* news.html: add 2011.05-rc1 announcement linkPeter Korsgaard2011-05-181-1/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update for 2011.05-rc12011.05_rc1Peter Korsgaard2011-05-184-7/+20
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: fix libmad checkPeter Korsgaard2011-05-182-5/+6
| | | | | | Closes #3757 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* CHANGES: update with recent changesPeter Korsgaard2011-05-181-9/+44
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gtk2-engines: bump, rename config option and convert to AUTOTARGETSThomas Petazzoni2011-05-182-78/+10
| | | | | | | | | | | 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>
* libgtk2: add option to install the gtk-demo programThomas Petazzoni2011-05-182-0/+9
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libgtk2: change download siteThomas Petazzoni2011-05-181-1/+1
| | | | | | | 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>
* libgtk2: bump to 2.24.4Thomas Petazzoni2011-05-181-2/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pango: bump to 1.28.4Thomas Petazzoni2011-05-181-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libglib2: bump to 2.28.6Thomas Petazzoni2011-05-182-16/+2
| | | | | | | The patch libglib2-mkenums-nowarn.patch is removed, since it has been merged upstream. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* atk: bump to 1.33.6Thomas Petazzoni2011-05-181-2/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sudo: bump and convert to AUTOTARGETSThomas Petazzoni2011-05-184-14320/+11
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dhcpdump: move as a proper package, bump versionThomas Petazzoni2011-05-186-68/+50
| | | | | | | | 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>
* festival: remove packagesThomas Petazzoni2011-05-1715-468/+0
| | | | | | | 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>
* Makefile.autotools.in: default to same <pkg>_MAKE setting for host and targetPeter Korsgaard2011-05-171-1/+8
| | | | | | Similar to how it is done for _SOURCE, _PATCH, _SITE and _SUBDIR. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libnl: minor package fixesGustavo Zacarias2011-05-161-1/+3
| | | | | | | | | * 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>
* dropbear: disable zlib support when built with small optionAlexander Clouter2011-05-163-3/+5
| | | | | | | Closes #3733 Signed-off-by: Alexander Clouter <alex@digriz.org.uk> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libXfont: don't build devel documentation for hostVasily Khoruzhick2011-05-161-0/+1
| | | | | Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* font-misc-misc: Don't pull fonts encodings from host systemVasily Khoruzhick2011-05-161-0/+6
| | | | | | | Use encodings from staging dir. Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libX11: don't build docs for hostVasily Khoruzhick2011-05-161-0/+3
| | | | | | | | 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>
* sdl: fix directfb driver build if host has directfb-configPeter Korsgaard2011-05-161-1/+1
| | | | | | | 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>
* busybox: add hush patch for version 1.18.4Gustavo Zacarias2011-05-161-0/+160
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openssh: bump to version 5.8p2Gustavo Zacarias2011-05-161-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libnl: depend on host-bisonPeter Korsgaard2011-05-161-0/+1
| | | | | | | | | | | | 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>
* bison: add host packagePeter Korsgaard2011-05-161-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: fix build when script+dbus are enabled, but gui isn'tPeter Korsgaard2011-05-161-0/+22
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: bump versionPeter Korsgaard2011-05-164-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* haserl: remove 0.8.0 install workaroundPeter Korsgaard2011-05-161-3/+0
| | | | | | Not needed anymore as stripping is handled on a global level. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* haserl: fix lua support after 0.9.29 bumpPeter Korsgaard2011-05-162-8/+136
| | | | | | | | | | | | 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>
* Merge branch 'for-2011.05/remove-dead-code' of ↵Peter Korsgaard2011-05-153-3590/+0
|\ | | | | | | http://free-electrons.com/~thomas/buildroot
| * gcc: remove references to arm-softfloat.patch.conditionalThomas Petazzoni2011-05-151-13/+0
| | | | | | | | | | | | | | | | 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>
| * uClibc: remove AVR32 patches for 0.9.29Thomas Petazzoni2011-05-152-3577/+0
| | | | | | | | | | | | | | | | 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>
* | wpa_supplicant: add support for libnl-2.0Yegor Yefremov2011-05-151-0/+1
| | | | | | | | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | hostapd: add support for libnl-2.0Yegor Yefremov2011-05-151-0/+5
| | | | | | | | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | libnl: bump to version 3.0Yegor Yefremov2011-05-154-97/+2
| | | | | | | | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | iw: add support for libnl-3.0Yegor Yefremov2011-05-151-0/+47
| | | | | | | | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | kismet: add support for libnl-3.0Yegor Yefremov2011-05-151-0/+123
| | | | | | | | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | barebox: bump versionPeter Korsgaard2011-05-151-1/+1
|/ | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>