aboutsummaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* netsnmp: bump version, fixes security hole in snmpv3Peter Korsgaard2008-12-281-1/+1
|
* curl: convert to Makefile.autotools.in format, bump versionPeter Korsgaard2008-12-282-100/+18
|
* curl: remove unused legacy patchesPeter Korsgaard2008-12-285-116/+0
|
* libmpd: no need for autoreconf now we don't patch configure.ac anymorePeter Korsgaard2008-12-271-1/+0
|
* package: add libgladePeter Korsgaard2008-12-273-0/+31
|
* pango: bump versionPeter Korsgaard2008-12-275-43/+1
|
* directfb-examples fixesThomas Petazzoni2008-12-261-3/+2
| | | | | | | | | | | | * Do not install to the staging dir inside the target install target, since it has already been done in the staging install target. * Strip the binaries installed in the target. * Properly create the target installation stamp. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libmpd: get rid of < glib2.16 workaroundPeter Korsgaard2008-12-261-17/+0
|
* libglib2: bump versionPeter Korsgaard2008-12-263-1/+1
|
* libgtk: don't list cups/png/jpeg/tiff as hard dependenciesPeter Korsgaard2008-12-262-7/+27
| | | | | | GTK can be compiled without the above, so don't list them as hard dependencies, and simply adjust the build depending on what the user has enabled.
* libgtk2: remove unneeded configure optsPeter Korsgaard2008-12-261-15/+1
| | | | This stuff is all handled by Makefile.autotools.in
* package/multimedia: add libmpd packagePeter Korsgaard2008-12-265-0/+134
|
* strace: fix build on ARM (no <asm/cachectl.h>)Peter Korsgaard2008-12-221-0/+21
|
* rxvt: don't use getpt()Peter Korsgaard2008-12-222-1/+18
| | | | | uClibc can be (and per default is) configured to not implement the glibc function getpt(3), so use the non-getpt rxvt configuration.
* x11r7/xserver_xorg: breaks with shared cachePeter Korsgaard2008-12-221-0/+1
| | | | The package overrides CFLAGS, so disable shared cache.
* fontconfig: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard2008-12-221-0/+59
|
* x11r7/liblbxutil: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard2008-12-221-6/+6
|
* x11r7/libXt: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard2008-12-221-5/+5
|
* x11r7/libX11: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard2008-12-221-7/+7
|
* Bump version of setserialUlf Samuelsson2008-12-211-2/+4
|
* haserl: bump versionPeter Korsgaard2008-12-171-1/+1
|
* openswan: revert $(strip ...) change (r24307) on patchesPeter Korsgaard2008-12-174-12/+12
| | | | Thanks to Markus for noticing.
* Revert $(strip ...) change which corrupted this fileHamish Moffatt2008-12-171-0/+0
|
* Fix TARGET_PATH for external toolchain buildsThomas Petazzoni2008-12-151-1/+1
| | | | | | | | | | TARGET_PATH didn't contain $(STAGING_DIR)/usr/bin, which means that programs installed in $(STAGING_DIR)/usr/bin were not considered for execution during Buildroot build process. This was a problem with host automake/autoconf/libtool, which could not be found. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* avahi: make sure destination dirs existsPeter Korsgaard2008-12-151-8/+6
|
* ifplugd: fix non-C++ buildPeter Korsgaard2008-12-132-1/+18
| | | | | The ifplugd configure script was checking for a C++ compiler, even though it isn't used for anything.
* Another external toolchain support solutionThomas Petazzoni2008-12-131-3/+1
| | | | | | | | | | | | | | | | | | | | * In toolchain/external-toolchain/ext-tool.mk, copy the contents of the sysroot directory to the staging dir. * In package/Makefile.in, add a --sysroot CFLAGS pointing to the staging dir * Remove the CFLAGS and LDFLAGS definition from TARGET_CONFIGURE_OPTS. I haven't investigated exactly why, but with these options, DirectFB fails to build because it cannot find PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP, even if DirectFB's Makefile properly sets -D_GNU_SOURCE. I have already sent this patch on December, 2nd to the mailing-list, but got no feedback. So let's commit and see what happens :-) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* menuconfig: don't prepend CONFIG_ to symbols in help textPeter Korsgaard2008-12-131-1/+1
|
* Bump PHP version to 5.2.7.Thomas Petazzoni2008-12-131-1/+1
| | | | | | | Patch provided by Gustavo Zacarias <gustavo@zacarias.com.ar>. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Bump lighttpd to 1.4.20.Thomas Petazzoni2008-12-132-1/+1
| | | | | | | Initial patch provided by Gustavo Zacarias <gustavo@zacarias.com.ar>. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* samba: add a comment about why make proto is done before makeHans-Christian Egtvedt2008-12-121-0/+1
| | | | | This patch adds a comment why make proto is needed before make.
* samba: make proto first to allow parallel build afterwardsHans-Christian Egtvedt2008-12-121-1/+2
| | | | | | | | This patch fixes parallel build of Samba. The trick is to make proto before executing a full make. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* samba: bump version to 3.2.5Hans-Christian Egtvedt2008-12-126-17/+147
| | | | | | | | | | | | | | This patch bumps Samba version to 3.2.5. In the process Samba now depends on libiconv. This dependency is needed because Samba wants to use various formats when talking to the different parts of the system. Two new patches are introduced, one to double check if BSD functions are available, and one to skip checking for glibc version. The use unsigned enum patch could be removed since this can be supplied with a autoconf variable. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* libiconv: strip installed library and remove the preloadable libraryHans-Christian Egtvedt2008-12-121-0/+8
| | | | | | | | This patch is mainly for size reduction, removing more than half the needed footprint. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* zlib: install using cp instead of install for zlib librariesHans-Christian Egtvedt2008-12-111-1/+1
| | | | | | | | This patch will install zlib keeping the symlinks. The usage of $(INSTALL) here did not take into account symbolic links. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* busybox: 1.13.1 bindtodevice fixPeter Korsgaard2008-12-111-0/+86
|
* package/boa: hide if BR2_PACKAGE_BUSYBOX_HIDE_OTHERSPeter Korsgaard2008-12-111-0/+2
|
* busybox: additional 1.13.1 fixesPeter Korsgaard2008-12-102-0/+47
|
* bumpEric Andersen2008-12-091-1/+1
|
* qtopia4: add kconfig option to enable PhononHans-Christian Egtvedt2008-12-082-0/+25
| | | | | | | | | | | | This patch adds a kconfig option to enable Phonon when configuring Qt. Phonon is the multimedia API from KDE 4 which has been integrated into Qt 4.4. For playback under Linux the GStreamer multimedia framework is used. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* gst-plugins-ugly: add gstreamer ugly pluginsHans-Christian Egtvedt2008-12-083-0/+129
| | | | | | This patch adds the ugly plugins for gstreamer, for more information see http://gstreamer.freedesktop.org/modules/gst-plugins-ugly.html
* gst-plugins-good: add gstreamer good pluginsHans-Christian Egtvedt2008-12-083-0/+362
| | | | | | | This patch adds the good plugins for gstreamer, see http://gstreamer.freedesktop.org/modules/gst-plugins-good.html for more information.
* gst-plugins-base: add gstreamer base pluginsHans-Christian Egtvedt2008-12-084-0/+248
| | | | | | | This patch adds the basic plugins for gstreamer, see http://gstreamer.freedesktop.org/modules/gst-plugins-base.html for more information.
* gstreamer: add new multimedia package gstreamerHans-Christian Egtvedt2008-12-084-0/+86
| | | | | gstreamer is powerful framework for streaming media.
* libtheora: add new multimedia package libtheoraHans-Christian Egtvedt2008-12-083-0/+30
| | | | | libtheora is a library used by gstreamer when streaming Ogg multimedia.
* have zlib respect BR2_PREFER_STATIC_LIBPeter Korsgaard2008-12-081-6/+19
| | | | | | | | The ARM uClinux BFLT format apparently doesn't support shared libs nor -fPIC. So let's distinguish between shared and non shared builds by having split rules for libz.a and libz.so based on BR2_PREFER_STATIC_LIB. Signed-off-by: Nicolas Pitre <nico@cam.org>
* udev: use $@ instead of hardcoding target namePeter Korsgaard2008-12-081-11/+11
|
* package/freetype: default to 2.3.7Peter Korsgaard2008-12-081-1/+1
|
* package/udev: create base device nodes after mounting a new /devPeter Korsgaard2008-12-081-0/+3
| | | | | | | | | | Currently, udev won't start for me, as we've just mounted a new /dev, which is completely empty, and udevd requires a /dev/null. This change manually creates the three base device nodes (zero, null and console) so that udev can start. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
* package/udev: fix CFLAGS for udev extrasPeter Korsgaard2008-12-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | If the udev extras are built without large file support in uClibc, I get the following error: build_powerpc/staging_dir/usr/bin/powerpc-linux-uclibc-gcc -c -g -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -Wstrict-prototypes -Wsign-compare -Wshadow -Wchar-subscripts -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -Wmissing-prototypes -Os ext.c -o ext.o In file included from build_powerpc/staging_dir/usr/include/stdio.h:28, from ext.c:19: build_powerpc/staging_dir/usr/include/features.h:382:4: error: #error It appears you have defined _FILE_OFFSET_BITS=64. Unfortunately, uClibc was built without large file support enabled. Although the base udev package builds correctly, the extras pacakges don't adjust their CFLAGS depending on BR2_LARGEFILE. This change adds the required CFLAGS modifications to make the extras build. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>