Commit Graph

4412 Commits

Author SHA1 Message Date
Peter Korsgaard
fe3d0e27da libxml2: use install-strip instead of install-exec for target install
Use install-strip so binaries gets stripped and man pages / header files
gets installed.
2008-08-23 13:08:37 +00:00
Peter Korsgaard
f5dc33a1a3 libxml2: cleanup configure args 2008-08-23 13:08:34 +00:00
Peter Korsgaard
f27b2cc818 libxml2: point to homepage instead of ftp site in help 2008-08-23 13:08:31 +00:00
Peter Korsgaard
92b8a20f5c libxml2: remove unused BR2_PACKAGE_LIBXML2_TARGET_HEADERS option 2008-08-23 13:08:28 +00:00
Peter Korsgaard
0509df7e7b openchrome: fix install
Closes #4674.
2008-08-22 14:42:00 +00:00
Peter Korsgaard
bf83d53080 xorg: depend on WCHAR and LOCALE
Xorg needs WCHAR and LOCALE, so make sure it cannot be selected unless
this is enabled in the toolchain.

We unfortunately cannot make BR2_XSERVER_xorg depend on BR2_USE_LOCALE
because of a strange recursion error with dbus, but now we atleast
inform the user what to do to get a working configuration.

The real solution is ofcause of fix xorg, but that's for another day.
2008-08-22 14:24:53 +00:00
Peter Korsgaard
9e9e354a83 package: don't hide xorg/tinyx selection
Hiding xorg/tinyx selections until the user unselects "none" seems quite
unintuitive.
2008-08-22 14:24:51 +00:00
Peter Korsgaard
2983381337 Makefile.autotools.in: remove unused BR2_HAVE_INCLUDES handling
Patch by Wade Berrier.
2008-08-22 14:01:56 +00:00
Peter Korsgaard
1243071b16 gcc: only use -mfloat-abi for ARM, use -msoft-float for other archs
Patch by Wade Berrier.
2008-08-22 13:59:06 +00:00
Peter Korsgaard
b7e4d291e6 sqlite: bump version 2008-08-21 14:51:14 +00:00
Peter Korsgaard
1d91b56a78 ace_of_penguins: remove redundant configure settings
Reported by Hartleys.
2008-08-21 13:10:27 +00:00
Peter Korsgaard
d14a2c7796 busybox: add 1.12.x and make it default 2008-08-21 05:08:53 +00:00
Peter Korsgaard
644b251f62 u-boot: bump version 2008-08-20 20:04:18 +00:00
Peter Korsgaard
b4aeef0f1c u-boot: fix broken insert_define in Makefile
Patch by Markus Heidelberg <markus.heidelberg@web.de>
2008-08-20 20:04:14 +00:00
Peter Korsgaard
b7a45746a4 u-boot: fix wrong syntax in Makefile
Patch by Markus Heidelberg <markus.heidelberg@web.de>

Some $(call insert_define, ..., ...) calls were lacking the comma after
the variable. That didn't lead to a syntax error but it didn't have any
effect on the output u-boot/include/config.h
2008-08-20 20:04:11 +00:00
Peter Korsgaard
f43867cbb3 lzo: bump version and update to Makefile.autotools.in format
Bump LZO version and update makefile - tested with latest mtdutils.

Signed-off-by: daniel.j.laird <daniel.j.laird@nxp.com>
2008-08-20 14:28:58 +00:00
Peter Korsgaard
a9abce508d rsync: bump version 2008-08-20 14:15:15 +00:00
Peter Korsgaard
578c6a9081 rsync: convert to Makefile.autotools.in format 2008-08-20 14:15:10 +00:00
Peter Korsgaard
dab85fae49 kernel-headers: rename aout patch so it gets applied to 2.6.25.15
Needed by valgrind.
2008-08-19 15:01:36 +00:00
Peter Korsgaard
383ee808ca kernel-headers: bump 2.6.25.x / 2.6.26.x versions 2008-08-19 15:01:33 +00:00
Peter Korsgaard
0fb6258216 haserl: bump 0.9.x version 2008-08-19 09:40:23 +00:00
Peter Korsgaard
223df3f26f haserl: don't install unneeded examples for 0.8.0 to target 2008-08-19 09:40:20 +00:00
Peter Korsgaard
f8d87727a3 ifplugd: add missing newline 2008-08-19 09:40:18 +00:00
Peter Korsgaard
dd8a14d55e speex: also compile static libraries 2008-08-17 13:46:46 +00:00
Peter Korsgaard
46d6d83273 speex: automate selection of arm specific optimizations
ARM version info according to wikipedia, hopefully I got it all correct.
2008-08-17 13:46:42 +00:00
Peter Korsgaard
28b2a5bd7e speex: fix target install
Use install-strip and clean up documentation files instead of
install-exec so files get stripped and manpages installed if
requested.
2008-08-17 13:20:31 +00:00
Peter Korsgaard
52abf53f32 speex: select libogg
Speex depends on libogg, so make it visible in Kconfig
2008-08-17 13:20:28 +00:00
Peter Korsgaard
56de4e289f speex: convert to Makefile.autotools.in and bump version to 1.2rc1
Patch by Malek <souf_oued@yahoo.fr>
2008-08-17 13:20:25 +00:00
Peter Korsgaard
c86db34486 pcre: fix target install
Use install-strip and clean up documentation files instead of
install-exec so files get stripped and manpages installed if
requested.
2008-08-16 19:36:36 +00:00
Peter Korsgaard
3c10da1528 fontconfig: remove redundant configure args
Patch by antialize / bug #4524.
2008-08-16 19:13:53 +00:00
Peter Korsgaard
e77afd6790 pcre: bump version 2008-08-16 12:32:57 +00:00
Peter Korsgaard
9b28d48012 pcre: fix compilation when C++ support is disabled
pcre will use host g++ is no cross g++ is available, so explicitly disable
c++ support in pcre if it isn't enabled in buildroot instead.
2008-08-16 12:32:54 +00:00
Peter Korsgaard
844f1013dc pcre: add homepage to description 2008-08-16 11:59:59 +00:00
Peter Korsgaard
533f5e01a7 Makefile.autotools.in: add missing continuation for PKG_CONF_OPT
The silent support added in r23041 was missing a shell continuation character
breaking PKG_CONF_OPT support - Fixed.
2008-08-16 11:59:56 +00:00
Peter Korsgaard
0fa75a11ee target/device: enable uclibc globbing support
Enable UCLIBC_HAS_GNU_GLOB like in the generic config for target specific
uclibc configs. Fixes globbing issue reported on the uclibc list.
2008-08-14 06:52:15 +00:00
Peter Korsgaard
1907c34660 dnsmasq: bump version
fixes dns spoofing vulnerability.
2008-08-08 18:15:29 +00:00
Peter Korsgaard
bf4c77cca0 busybox: fix missing dependencies in unpacked and config rules
Aadds dependency to host-sed and $(PROJECT_BUILD_DIR) when running
make busybox-config and busybox-unpacked.

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
2008-08-06 12:56:31 +00:00
Peter Korsgaard
2f06c38008 busybox: additional 1.11.1 patches 2008-08-06 06:37:21 +00:00
Peter Korsgaard
a87d82081d Makefile.autotools.in: remove extra newlines in MESSAGE macro 2008-08-04 19:08:48 +00:00
Peter Korsgaard
ddd73e012c Makefile.autotools.in: quiet configure on silent (-s) builds
Use --quiet configure argument when make is invoked with the -s (silent)
option.
2008-08-04 19:08:45 +00:00
Peter Korsgaard
2964bff64e i2c-tools: cleanup clean target 2008-08-04 19:08:41 +00:00
Peter Korsgaard
bea4968d34 haserl: convert to Makefile.autotools.in format 2008-08-04 19:08:38 +00:00
Peter Korsgaard
3d4ac57987 Makefile.autotools.in: fix patch dir for version specific subdir 2008-08-04 19:08:35 +00:00
Peter Korsgaard
a83393b2ee ethtool: don't specify STRIPPROG
The correct strip program gets picked up at configure time, so no need to
specify it at target install time.
2008-08-04 19:08:26 +00:00
Peter Korsgaard
5091a9fa6d lua: select readline / ncurses 2008-08-04 19:08:21 +00:00
Peter Korsgaard
a908a97614 avahi: select expat 2008-08-04 19:08:15 +00:00
Peter Korsgaard
adf57471b0 vpnc: select libgcrypt / libgpg_error 2008-08-04 19:08:12 +00:00
Peter Korsgaard
71d8b44878 argus: select libpcap 2008-08-04 19:08:09 +00:00
Peter Korsgaard
f9bd1c85f3 ccache: expand help text 2008-08-04 19:08:06 +00:00
Peter Korsgaard
387a5491a2 ccache: cleanup configure args and respect BR2_HAVE_MANPAGES 2008-08-04 19:08:04 +00:00