summaryrefslogtreecommitdiff
path: root/package
AgeCommit message (Collapse)Author
2007-08-22- set _SKIP_CONFIGURE since we can just make itBernhard Reutner-Fischer
2007-08-22- if $(PKG)_SKIP_CONFIGURE is non-empty then ./configure is skippedBernhard Reutner-Fischer
2007-08-22- don't print the second time autoreconf would be runBernhard Reutner-Fischer
2007-08-22- add some $(Q) here and thereBernhard Reutner-Fischer
2007-08-22- reinstate accidentally deleted hunkBernhard Reutner-Fischer
2007-08-22(no commit message)Bernhard Reutner-Fischer
2007-08-22- forgot to include the Config.inBernhard Reutner-Fischer
2007-08-22- pass TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer
2007-08-22- honour BR2_HAVE_MANPAGES BR2_HAVE_INFOPAGES, BR2_HAVE_INCLUDESBernhard Reutner-Fischer
2007-08-22- fix typoBernhard Reutner-Fischer
- Start to add infrastructure to be able to download a patch.
2007-08-22- add pptp-linuxBernhard Reutner-Fischer
2007-08-22- was broken by the patch omitting the CFLAGS for configureBernhard Reutner-Fischer
- misc cleanup while at it
2007-08-22- use proper include dir (Simon Pasch)Bernhard Reutner-Fischer
- cleanup a little while at it
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-08-22- random whitespace cleanupBernhard Reutner-Fischer
2007-08-22- fix unpacking the tarballs, minor cleanups while at it.Bernhard Reutner-Fischer
2007-08-22- use the BZCAT/ZCAT as configured by the userBernhard Reutner-Fischer
2007-08-22- semicolon touchup. No other changesBernhard Reutner-Fischer
2007-08-22- fix patch regexBernhard Reutner-Fischer
2007-08-22Remove bzero dependencies in bashUlf Samuelsson
2007-08-22Fix bad patch naming schemeUlf Samuelsson
2007-08-21- more cleanup (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer
2007-08-21- fixup whitespace damage after ulfBernhard Reutner-Fischer
2007-08-21- sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer
toolchain/*/*.mk */Makefile.in -l)
2007-08-21- remove a superfluous semicolonBernhard Reutner-Fischer
2007-08-21- pull in patches from debian.Bernhard Reutner-Fischer
2007-08-21- our dependencies are project specific. First (untested) attempt to take ↵Bernhard Reutner-Fischer
this fact into account. Will need to try to copy eventual pre-existing project-specific deps back to package/config in order not to mess up the corresponding timestamps (to avoid superfluous rebuilds)..
2007-08-21- move the PROJECT variable setting to a more sensible placeBernhard Reutner-Fischer
2007-08-21- honour BR2_HAVE_MANPAGESBernhard Reutner-Fischer
2007-08-21- bump version to 2.2.6Bernhard Reutner-Fischer
2007-08-21- add handling of lzma for the host (unconditionally for now)Bernhard Reutner-Fischer
- remove non-working attempt to install an lzma to the host via sudo
2007-08-21Use $(BZCAT) instead of bzcatUlf Samuelsson
2007-08-21- add BR2_HAVE_MANPAGE and BR2_HAVE_INFOPAGE. Selecting these will keep theBernhard Reutner-Fischer
respective documentation on your target filesystem.
2007-08-21- fix installation of dbus.Bernhard Reutner-Fischer
2007-08-21- sed -i -e ↵Bernhard Reutner-Fischer
"/\-[[:space:]]*mkdir[[:space:]][[:space:]]*-p/s/-[[:space:]]*mkdir/mkdir/g" (want to know about errors if mkdir failed). Thanks to Cristian Ionescu-Idbohrn for pointing this out
2007-08-21- a few more cleanups (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer
2007-08-21- fix patching in the correct target cflags (Thiago A. Corr^ea)Bernhard Reutner-Fischer
2007-08-21Remove switches if sstrip is runUlf Samuelsson
2007-08-21Reintroduce possibility to use old makefile for tiny-x as a testUlf Samuelsson
2007-08-21Fix configure problem with libdaemon, by patching result from autotoolsUlf Samuelsson
2007-08-20SED away some whitespaceUlf Samuelsson
2007-08-20Cleanup dnsmasqUlf Samuelsson
2007-08-20Make sure directories are available before install of dhcp targetsUlf Samuelsson
2007-08-19Update configs for distcc, diffutils and freetypeUlf Samuelsson
2007-08-19Replace non-working 'make uninstall' for 'package/patch' with simple 'rm'Ulf Samuelsson
2007-08-19move tcpdump from lib to usr/lib, simplify configure, general cleanupUlf Samuelsson
2007-08-19openntpd cleanupUlf Samuelsson
2007-08-19libpcap cleanupUlf Samuelsson
2007-08-19Från: Brad House <brad@mainstreetsoftworks.com>Ulf Samuelsson
Till: buildroot@uclibc.org Ämne: [Buildroot] [patch] php fixes and updates Datum: Tue, 14 Aug 2007 16:39:03 -0400 (22.39 CEST) Changes: - fastcgi config option - force php to find the php.ini in /etc (it seems to default to /lib for some reason) - build with posix support, a lot of php scripts require this apparently - strip the php binary when installing to TARGET_DIR - actually 'uninstall' php on a php-clean -Brad
2007-08-19Från: Brad House <brad@mainstreetsoftworks.com>Ulf Samuelsson
Till: buildroot@uclibc.org Ämne: [Buildroot] [patch] libxml2 install fails because of missing directory Datum: Tue, 14 Aug 2007 16:34:34 -0400 (22.34 CEST) If libxml2 is installed before $(TARGET_DIR)/usr/lib is created, it fails because it can't copy the library over. Also, the dependency tree is a bit messed up. libxml2.a should only be installed if target-headers is specified, it's 4MB on my system and the only .a file I found in my TARGET_DIR (target-headers was not specified). The attached patch fixes the above problems. -Brad