summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* luarocks: use -fPIC for shared libraryFrancois Perrad2014-01-151-1/+1
| | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/f28a624f89f4de249a1b7a718f5ae31109ba9171/ http://autobuild.buildroot.net/results/1ead0a162a251d3e7bf8598036fa06c4befeb3d9/ http://autobuild.buildroot.net/results/0544cead086ba51b45dfa1df114787a8f22eaf8d/ http://autobuild.buildroot.net/results/60161d13d596d41dd4059977eb947d72c172f0d5/ http://autobuild.buildroot.net/results/e7e/e7ea6946552f72dc27f23ae1aff1665a6aa097c7/ [Peter: adjust commit message] Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* raspberrypi: tweak readmeSimon Dawson2014-01-151-3/+2
| | | | | | | | Make the readme.txt for the raspberrypi board less misleading regarding the kernel image file name. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ola: fix check for google.protobufYann E. MORIN2014-01-144-30/+130
| | | | | | | | | | | | | | Fix the google.protobuf check in an upstreamable way. As suggested by Arnout, use an autoconf ac_cv_have_* variable so we can pass it on the command line. This is generic behaviour for a lot of autoconf internals, so it makes sense to do it this way. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ola: bump to 0.8.33Yann E. MORIN2014-01-141-1/+1
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libsigsegv: fix for microblazeSpenser Gilliland2014-01-141-0/+16
| | | | | | | | | | | Fixes autobuild failure http://autobuild.buildroot.net/results/799/799ac378713d82f9632a2aa925223e21157b1042/build-end.log http://autobuild.buildroot.net/results/ae6/ae6a10ae7cd8f2d2f3891ea9c6e867695ca1acfe/build-end.log http://autobuild.buildroot.net/results/db4/db48622f6c3a998ecec84ec51f21b4a031ab0fb5/build-end.log Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gob2: bump to version 2.0.19Jerzy Grzegorek2014-01-141-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: libpng: don't append prefix to symbol names in the version script fileSonic Zhang2014-01-141-0/+26
| | | | | | | | | Even if Blackfin GNU toolchain add prefix '_' to all symbols, symbol prefix is not accepted in the link flag --version-script. Don't append prefix in the symbols in the version script file. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: Add mips related configure options to fix build errorsBernd Kuhls2014-01-141-0/+26
| | | | | | | | http://autobuild.buildroot.net/results/aa5/aa5cb447342af9995d8f198eb0a151fe6e3d5c19// http://autobuild.buildroot.net/results/355/355f56f6b466521e2c4c71f69b06a0ca2a56949b// Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* aiccu: fix undefined reference to clock_* functionsVicente Olivert Riera2014-01-141-0/+18
| | | | | | | | | | | | | Since glibc 2.17 the clock_* suite functions are available directly in the main C library. For previous versions we still need -lrt to link. Upstream is aware of this problem. Fixes: http://autobuild.buildroot.net/results/c11/c1182b00f9d968e587acba15af4af905b92227f5/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: unification of use $(subst [._-], [._-], $(<PKG>_VERSION)) macroJerzy Grzegorek2014-01-144-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, there are five packages which use 'subst' macro to change their version. * Three of them (ebtables, icu, perl) use this macro "in place" : EBTABLES_SITE = http://downloads.sourceforge.net/project/ebtables/ebtables/ebtables-$(subst .,-,$(EBTABLES_VERSION)) ICU_SOURCE = icu4c-$(subst .,_,$(ICU_VERSION))-src.tgz PERL_CROSS_OLD_POD = perl$(subst .,,$(PERL_CROSS_BASE_VERSION))delta.pod PERL_CROSS_NEW_POD = perl$(subst .,,$(PERL_VERSION))delta.pod * Two of them (boost, libnss) use an additional variable : BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION)) BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2 LIBNSS_SITE_VERSION = $(subst .,_,$(LIBNSS_VERSION)) LIBNSS_SITE = https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_$(LIBNSS_SITE_VERSION)_RTM/src * Additionally two packages (duma, rings) doesn't use it at all : DUMA_VERSION = 2_5_15 DUMA_SITE = http://downloads.sourceforge.net/project/duma/duma/2.5.15 RINGS_VERSION_MAJOR = 1.3.0 RINGS_SUBDIR = rings-v_1_3_0 This commit makes changes to use 'subst' macro "in place", in all of them. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: bump apf28 module Linux version to latest vanilla stable one (3.12.7)Julien Boibessot2014-01-141-2/+2
| | | | | Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tinymembench: bump to version 0.3Axel Lin2014-01-141-1/+1
| | | | | Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rings: add the version major variableJerzy Grzegorek2014-01-141-1/+2
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imagemagick: bump to version 6.8.8-2Jerzy Grzegorek2014-01-141-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vlc: correct libtheora dependency namePeter Korsgaard2014-01-141-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/7b5/7b5387fa4e50036b7db407bf6ce866156bafcfdd/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rings: bump to version 1.3.0Francois Perrad2014-01-141-1/+2
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* system: fix kconfig warning about BR2_PACKAGE_SYSVINITPeter Korsgaard2014-01-131-0/+1
| | | | | | | | | Fixes: warning: (BR2_INIT_SYSV) selects BR2_PACKAGE_SYSVINIT which has unmet direct dependencies (BR2_PACKAGE_BUSYBOX_SHOW_OTHERS && BR2_INIT_SYSV) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sysvinit: depend on SysV selected as init system.eric.le.bihan.dev@free.fr2014-01-131-0/+1
| | | | | | | | | In order to prevent sysvinit and systemd to be selected at the same time, sysvinit can now only be selected if SysV is chosen as init system. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* website: add pointers to the PGP signatures for releasesYann E. MORIN2014-01-131-3/+7
| | | | | | | | | | | | | | Peter has just pointed me to the PGP signatures of the release tarballs, which exist since he's been doing releases. This was not obvious to me that the releases were signed, as there was no info about it on the website. So, add such links on the downloads page. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mpd: bump to version 0.18.7Gustavo Zacarias2014-01-133-7/+38
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mpg123: bump to version 1.17.0Gustavo Zacarias2014-01-131-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wsapi: bump to version 1.6Francois Perrad2014-01-131-1/+1
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xavante: bump to version 2.3.0Francois Perrad2014-01-131-1/+1
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* copas: bump to version 1.2.1Francois Perrad2014-01-131-1/+2
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* coxpcall: bump to version 1.14.0Francois Perrad2014-01-131-8/+3
| | | | | | | and refactor with luarocks infra Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luasocket: bump to version 3.0-rc1Francois Perrad2014-01-131-17/+4
| | | | | | | and refactor with luarocks infra Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* manual: adding packages luarocksFrancois Perrad2014-01-132-0/+95
| | | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: some cleanups and rephrasing] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lua*: refactor with luarocks infrastructureFrancois Perrad2014-01-1315-214/+50
| | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luasql-sqlite3: renamed like with LuaRocksFrancois Perrad2014-01-136-57/+50
| | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: select BR2_PACKAGE_SQLITE] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lua-cjson: restore official nameFrancois Perrad2014-01-134-12/+18
| | | | | | | | | (need by LuaRocks) Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luarocks: new infrastructureFrancois Perrad2014-01-135-0/+95
| | | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: apply Thomas' comments] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luarocks: new packageFrancois Perrad2014-01-131-0/+42
| | | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: apply Thomas' suggestions] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lua*: restore version in module pathsFrancois Perrad2014-01-1321-72/+30
| | | | | | | | (like in upstream) Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luajit: allow to build Lua extensions without luaFrancois Perrad2014-01-131-0/+17
| | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* luainterpreter: create virtual packageFrancois Perrad2014-01-1327-12/+52
| | | | | | | | | | | | | | | | This patch introduces the luainterpreter virtual package, which is provided either by 'lua' or by 'lua-jit'. Packages that require a Lua interpreter can then depend on BR2_PACKAGE_LUAINTERPRETER (in their Config.in) and luainterpreter (in their .mk). Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: switch to package-defined providers, apply Thomas' comments] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cwiid: new packageSamuel Martin2014-01-137-0/+341
| | | | | | | | | | | | This patch only add the native cwiid library and a couple of tools. The 2 first cwiid patches are retrieved from upstream and fix build issues, so does the 3rd one. The 4th patch allows to disable wmgui build, so allows to reduce to number of dependencies. Cc: Eric Jarrige <eric.jarrige@armadeus.org> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
* ffmpeg: Add sse4 related options BR2_X86_CPU_HAS_SSE4 / BR2_X86_CPU_HAS_SSE4Bernd Kuhls2014-01-132-0/+16
| | | | | Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: bump to version 1.55.0Bernd Kuhls2014-01-133-84/+1
| | | | | Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* barebox: bump to version 2014.01.0Fabio Porcedda2014-01-131-2/+2
| | | | | Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sysstat: bump to version 10.2.0Axel Lin2014-01-131-1/+1
| | | | | Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mplayer: add patch to fix building with modern versions of live555Peter Korsgaard2014-01-133-0/+126
| | | | | | | | Patch taken from: https://raw.github.com/sherpya/mplayer-be/master/patches/mp/0025-mpdemux-live555-async-interface.patch At the same time rename patches to follow the new convention. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* live555: bump versionPeter Korsgaard2014-01-131-3/+3
| | | | | | And cleanup/add license info while we're at it. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vlc: needs host-pkgconfPeter Korsgaard2014-01-131-0/+1
| | | | | | The configure script uses PKG_CHECK_MODULES to detect dependencies. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: fix build with gpl suboption and opensslPeter Korsgaard2014-01-131-0/+5
| | | | | | | | | Openssl's license isn't compatible with GPL, so ffmpeg's configure script only allows this combination if nonfree is enabled. Fixes http://autobuild.buildroot.net/results/ed6/ed6129d584229ebe4a0b291bc6a1dd0be23cc92a/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libnfc-llcp: rename to libllcp and bump versionVicente Olivert Riera2014-01-135-19/+32
| | | | | | | | | | This package has been renamed upstream to libllcp. Also, the current package we have in Buildroot fails to compile due to a version bump of it's main dependence, libnfc. A version bump is required because this package has been adapted upstream to work with libnfc-1.7.0-rc6. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* prevent recursion in %_defconfig rulesJeremy Rosen2014-01-131-0/+4
| | | | | Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* jasper: fix file header commentPeter Korsgaard2014-01-131-2/+2
| | | | | Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcpreplay: bump version to 4.0.0Chris Packham2014-01-133-259/+7
| | | | | | | | | | Update the tcpreplay package to version 4.0.0. The upstream package has a new maintainer and license. Version 4.0.0 brings a number of new features see http://tcpreplay.appneta.com/ for details. [Peter: drop autoreconf] Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: Fix build error regarding missing host-yasmBernd Kuhls2014-01-131-1/+1
| | | | | | | Fixes http://autobuild.buildroot.net/results/b2a/b2aefd25431bab3d0f4fcf4c3e6de1ff6fc54ffa// Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: bump to version 1.2.4Bernd Kuhls2014-01-122-29/+112
| | | | | | | | | | | | | | | | | Compile tested the following packages which depend on ffmpeg: freerdp mpd gstreamer For minidlna please see the separate patch for version bump to 1.1.1 Some compile options were taken from OpenELEC: https://github.com/OpenELEC/OpenELEC.tv/blob/master/packages/multimedia/ffmpeg/build [Peter: fix ARM VFP option, target tune, enable PIC for !static] Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud