summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
...
* ntp.sysvinit: fix 'restart' (don't exit on failed commands with set -e)Wade Berrier2008-11-141-6/+3
|
* lzo: add $(DISABLE_LARGEFILE) to configure optionsPeter Korsgaard2008-11-141-1/+1
| | | | Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
* libogg: convert to Makefile.autotools.inPeter Korsgaard2008-11-141-68/+8
| | | | | | | Also remove --enable-shared and --enable-static as it's default and --disable-oggtest and $(DISABLE_NLS) as they are not supported. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
* package: Kconfig: use menu instead of menuconfig for sub menusPeter Korsgaard2008-11-146-100/+24
| | | | | As discussed on the list - These things should normally not be (un)selectable.
* Fix build. Use TARGET_CONFIGURE_OPTS as environment rather than as argument ↵Thiago A. Corrêa2008-11-141-1/+1
| | | | of make to avoid overwriting dropbear's CFLAGS
* dropbear: bump versionPeter Korsgaard2008-11-141-1/+1
|
* busybox: add 1.13.x, mark older as deprecatedPeter Korsgaard2008-11-134-2/+91
|
* busybox: bump 1.12.x versionPeter Korsgaard2008-11-1310-339/+36
|
* Add a parallel compilation fix for fontconfigThomas Petazzoni2008-11-112-1/+27
| | | | | | | | | | | | | | | | | | This patch adds a patch to fix bug https://bugs.freedesktop.org/show_bug.cgi?id=16464 affecting parallel compilation of fontconfig. The patch is the one proposed in the bugzilla entry, available at https://bugs.freedesktop.org/attachment.cgi?id=17294. Without this patch, the compilation (at BR2_JLEVEL > 1) of fontconfig sometimes fails with: In file included from fc-case.c:25: ../src/fcint.h:118:21: error: fcalias.h: No such file or directory Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix the mtd package with regard to external toolchain use.Thomas Petazzoni2008-11-113-0/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix Qtopia build issuesThomas Petazzoni2008-11-111-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | This patch fixes two Qtopia build issues, encountered while trying to use system implementation of zlib, freetype, jpeg and libpng : * The build process doesn't look in $(STAGING_DIR)/usr/include for includes and $(STAGING_DIR)/usr/lib. Same problem as the patch currently floating around adding LDFLAGS to TARGET_CONFIGURE_OPTS, but as Qtopia doesn't use TARGET_CONFIGURE_OPTS, we need a specific fix here. So we use the -I and -L options of Qtopia's configure script. * The build process doesn't use pkg-config to get the header path for Freetype headers (located in $(STAGING_DIR)/usr/include/freetype2 and not directly in $(STAGING_DIR)/usr/include/). There was already a fix for this, consisting in adding $(FREETYPE_DIR)/include to the -I path of Qtopia's configure. This patch modifies this fix to use $(STAGING_DIR)/usr/include/freetype2 instead, which looks more coherent with how all the packages are built (using $(STAGING_DIR) as the reference to get headers and libraries). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix external toolchain buildThomas Petazzoni2008-11-111-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch is a new version of a patch already sent several times on the mailing-list, committed and reverted a few times by Daniel Laird, due to several imperfections. This version is a new try at finding a solution that works for everybody. Hopefully it'll work :-) The original problem is that external toolchain builds failed because packages couldn't find their dependent libraries at configure time and could not be linked with them. To fix these two problems, two things are added: * The TARGET_LDFLAGS variable was exposed as LDFLAGS at ./configure time thanks to TARGET_CONFIGURE_OPTS. The TARGET_LDFLAGS variable contains -L options with the path in the STAGING_DIR for the libraries. It allows ./configure scripts to properly compile the small test programs testing whether a dependency is properly installed. * The TARGET_CFLAGS contains a new -Wl,--rpath-link option for both $(STAGING_DIR)/lib and $(STAGING_DIR)/usr/lib. It allows library depending on other libraries to link properly. The TARGET_CFLAGS is exposed as CFLAGS in TARGET_CONFIGURE_OPTS. This new version fixes a problem encountered by hartleys <hartleys@visionengravers.com> when building the kernel. The problem was that the -Wl,--rpath-link options were added to LDFLAGS, while there are options for the C compiler, not the ld linker. Moving them to CFLAGS seems to fix the issue. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/tiff/tiff.mk: Change to Autotools.in formatDaniel Laird2008-11-111-81/+19
| | | | | | | | | Bounce tiff into Autotools.in format. Did not use install to target as this puts loads of executables into TARGET. So just copied tiff.so instead. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* package/freetype/freetype.mk: Add zib to dependenciesDaniel Laird2008-11-111-2/+1
| | | | | | | | | | Looking into adding a configure cache to the build (like the GIT buildroot version) This means that freetype needs to know about zlib so make sure it had it as a dependency. Also remove install rule for staging as it matches default. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* Remove .rej file included in the upstream tarball before patchingHamish Moffatt2008-11-101-0/+1
|
* busybox: basename 1.12.1 fixPeter Korsgaard2008-11-071-0/+10
|
* Makefile.autotools.in: make MESSAGE output stand outPeter Korsgaard2008-11-071-2/+2
| | | | | | | | | | | | | The following patch makes the MESSAGE Macro in Makefile.autotools.in work. I think it was originally intended to print the messages in bold type but it doesn't appear to work correctly. This patch should work on all platforms. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> (Fixed to not continously call tput)
* package/Makefile.in: revert rpath setup for toolchains.Daniel Laird2008-11-071-4/+3
| | | | | | | | | | Revert the rpath patch, it looked good up until someone tried to build a kernel as well. This seems to break as a result. Will post a new patch soon and see how that goes.. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* ntp: add /etc/default/ntpd to control whether to startWade Berrier2008-11-063-3/+25
| | | | ntpd and/or ntpdate. Also specify options and servers.
* package/Makefile.in: rpath setup for toolchains.Daniel Laird2008-11-061-3/+4
| | | | | | | | | | Apply the patch I posted some time ago that fixes rpath issues with external toolchains. Has been tested by users of buildroot and feedback looks good. Signed-off-by: Thomas Petazzoni Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* prboom: misc cleanupsPeter Korsgaard2008-11-051-5/+5
| | | | As noted by Bernhard on irc.
* prboom: add a touch $@ to end of install target rule to install PrBoom only onceHans-Christian Egtvedt2008-11-051-0/+1
| | | | | | Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* Move creation of $(PROJECT_BUILD_DIR)/autotools-stamps into top level MakefileHans-Christian Egtvedt2008-11-051-1/+0
| | | | | | | | | This patch will create the autotools-stamps directory early in the build process, thus making it possible for non Makefile.autotools.in packages to use this directory to hold stamp files. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* make: add gettext dependency to make rule instead of TARGETSHans-Christian Egtvedt2008-11-051-2/+2
| | | | | | | | This patch adds gettext dependency to make: rule instead of the TARGETS variable if locale is selected. Just to conform with common syntax. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* make: select gettext and libintl if locale is enabledHans-Christian Egtvedt2008-11-052-1/+3
| | | | | | | | | This patch makes sure gettext and libintl are selected if locale support is enabled. Gettext must also be compiled before make so appropriate headers are available to make. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* matchbox: fix prefixPeter Korsgaard2008-11-041-12/+12
| | | | Closes #5946.
* matchbox: fix mb-applet-startup-monitor compilation (TRUE/FALSE issue)Peter Korsgaard2008-11-042-0/+22
|
* netsnmp: run CONFIG_UPDATEPeter Korsgaard2008-11-041-0/+1
| | | | Based on e068796d3 in Bernhards tree.
* netsnmp: bump versionPeter Korsgaard2008-11-044-256/+169
| | | | Based on fa86c12d in Bernhards tree.
* mkdosfs: cleanup target install handlingPeter Korsgaard2008-11-031-2/+2
| | | | closes #5834.
* package/: remove more 'default n' (see r22874)Peter Korsgaard2008-11-022-5/+0
|
* sdl-image: convert to Makefile.autotools.in formatPeter Korsgaard2008-11-021-149/+27
|
* libpng: fix Makefile.autotools.in falloutPeter Korsgaard2008-11-023-3/+3
| | | | | | | | libpng used to have the 'png' Makefile alias, which some packages used in their dependencies list. With the move to Makefile.autotools.in this is now gone, so update the packages to match.
* busybox: additional 1.12.1 patchesPeter Korsgaard2008-11-025-4/+272
|
* Fixes for Qt from Markus HeidelbergArnar Mar Sigurðsson2008-11-025-22/+16
|
* Add options to select what gfx and mouse drivers are compiled in.Arnar Mar Sigurðsson2008-10-315-9/+121
| | | | Note to tslib users: You now have to select the tslib mouse driver to build it.
* Fix zlib install broken by previous commit. SorryThiago A. Corrêa2008-10-311-5/+6
|
* package/lite/lite.mk: Bounce versionDaniel Laird2008-10-311-3/+1
| | | | | | | | Bounce version. Signed-off-by: Thomas Petazzoni<> Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* pciutils may depend on zlib. Based on Bernhard's git repository.Thiago A. Corrêa2008-10-311-1/+1
|
* Improve pciutils based on Bernhard Reutner-Fischer's git repository ↵Thiago A. Corrêa2008-10-313-25/+29
| | | | (http://repo.or.cz/w/buildroot.git?a=tree;f=package/pciutils;hb=HEAD). Thanks
* Make sure directories are created during install to STAGING_DIR and ↵Thiago A. Corrêa2008-10-311-10/+8
| | | | TARGET_DIR. Thanks to Thomas Petazzoni and Bernhard Reutner-Fischer.
* Fix bug #0005884 - pciutils depends on zlibThiago A. Corrêa2008-10-312-1/+2
|
* Minor cleanups. Use touch for stamp-filesThiago A. Corrêa2008-10-311-2/+2
|
* fix wrong variable name for SQL. Signed-off-by: Markus Heidelberg ↵Thiago A. Corrêa2008-10-311-1/+1
| | | | <markus.heidelberg@web.de>
* Bump ntp versionArnar Mar Sigurðsson2008-10-311-1/+1
|
* python: add $(STAGING_DIR)/usr/lib to PYTHON_MODULES_LIB so thatWade Berrier2008-10-301-2/+2
| | | | modules build correctly (particularly readline)
* qtopia4: fix wrong compilation of qmakePeter Korsgaard2008-10-291-1/+5
| | | | Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
* package/libpng/libpng.mk: Change to autotools.in formatDaniel Laird2008-10-291-76/+13
| | | | | | | Move libpng into the new era..... Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* bind: use strchr() instead of index()Peter Korsgaard2008-10-291-0/+33
|
* qtopia4: fix adjustment of qmake.confPeter Korsgaard2008-10-281-8/+9
| | | | | | | | | Extend the regexp to match spaces and also tabs to replace the qmake variables with the proper buildroot values. Also use TARGET_AR and TARGET_STRIP instead of using TARGET_CROSS and set a variable for qmake.conf to shorten the command line. Patch by Markus Heidelberg