Alexander Dahl
  1. Alexander Dahl

buildroot

Public
AuthorCommitMessageCommit dateIssues
Ezequiel GarcíaEzequiel García
aa630d3fc9ezlog: Add patch to remove -WerrorAdd patch to remove -Werror and avoid build errors because of warnings. Fixes: http://autobuild.buildroot.net/results/6935e1107d832e5678c8742239eccd89d4abed47/ Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Spenser GillilandSpenser Gilliland
8011e4ffc59mesa3d-demos: new package[Thomas: - add license information, even if there's unfortunately no license file - rename patches to use the correct convention.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
André ErdmannAndré Erdmann
286e4d94344sysv init scripts: use symbolic names in trap commandNot really necessary(*), but checkbashisms complains about "trap with signal numbers". (*) Quoting man 1p trap: trap [action condition...] [...] The condition can be EXIT, 0 (equivalent to EXIT), or a signal specified using a symbolic name, without the SIG prefix [...] XSI-conformant systems also allow numeric signal numbers[...] Only one file is affected by this commit, and...
André ErdmannAndré Erdmann
5065d475fb9sysv init scripts: replace &>/dev/null redirection"<command> &>/dev/null" is supposed to redirect all output to /dev/null. However, in shells that don't support it (dash, ash without bash extensions), a command like "echo a &>/dev/null" is interpreted as (a) "echo a" in background (b) write nothing to /dev/null (redirect <empty command> to /dev/null) This commit replaces "&>..." with ">/dev/null 2>&1". Signed-off-by: André Erdmann <dywi@ma...
André ErdmannAndré Erdmann
2113ed46b2esysv init scripts: remove gettext invocations$"str" is supposed to translate str (depending on the current locale). In ash/dash/..., it cannot be expanded, so commands like echo $"Usage: $0 start|stop" are printed as '$Usage: SCRIPT start|stop' in [d]ash, and as 'Usage: SCRIPT start|stop' in bash. This patch removes the '$' in front of '"'. Command(s) used for editing: find . -type f -name '[SK][0-9][0-9]*' | \ xargs sed -r ...
Bernd KuhlsBernd Kuhls
53ff562a9efpackage/alsa-utils: optionally depends on gettextTo get a reproducable build add optional gettext dependency. - Configure log without gettext checking for GNU gettext in libc... no checking for iconv... yes checking for working iconv... guessing yes checking for GNU gettext in libintl... no checking whether to use NLS... no - Configure log with gettext built before alsa-utils checking for GNU gettext in libc... no checking for iconv... ye...
Samuel MartinSamuel Martin
8228e170bc9docs/manual: update cmake-package infrastructure sectionThis patch documents the CMake options preset by the cmake-package infrastructure. [Thomas: minor wording tweak.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
0cf0738a2e4package/polarssl: cleanup configure optionsTest build is already disabled by the cmake-package infrastructure. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
d9d5682e8e6package/opencv: cleanup configure optionsDisabling doc and example build is already done by the cmake-package infrastructure. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
69ea2958c22package/libuci: cleanup configure optionsMake BUILD_LUA assignation symetrical. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
e6436a6cdf1package/libuci: cleanup configure optionsRemove unneeded type in configure option's definition. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
c9a7bcc720apackage/libubox: cleanup configure optionsMake BUILD_LUA assignation symetrical. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
6ddebe48198package/libubox: cleanup configure optionsRemove unneeded type in configure option's definition. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
1ff0ef4500cpackage/libubox: cleanup dependencieshost-pkgconf is already a (runtime) dependency for host-cmake. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
aab83053553package/libsoxr: cleanup configure optionsBUILD_SHARED_LIBS is already driven by the cmake-package infrastructure. [Thomas: amend to really remove the BUILD_SHARED_LIBS option from the package, after checking on IRC with Samuel.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
136340bc0afpackage/libsoxr: cleanup configure optionsTest build is already disabled by the cmake-package infrastructure. We also get rid of the option type for the WITH_OPENMP option, as it is not necessary. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
0dc4f5e769apackage/flann: cleanup configure optionsDisabling doc and test build is already done by the cmake-package infrastructure. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
63f7c707f75package/clapack: cleanup configure optionsRemove the BUILD_TESTING configure option (note the typo in its existing name), which is already set to the same value by the cmake infrastructure. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
b8773d61f7cpackage/pkg-cmake.mk: disable colouring the outputBecause cmake was the only build-system supporting this feature, it has been disabled for the target packages. For consistency, this patch does the same for host package too. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Samuel MartinSamuel Martin
c99a1ab3b41package/pkg-cmake.mk: globally disable doc, examples and testsThis patch globally disables doc, examples and tests build for both the target and host packages. If needed, these configure flags can be overloaded in the per-package *_CONF_OPTS variables. This makes the cmake-package infrastructure even closer to the autotools one. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Maxime HadjinlianMaxime Hadjinlian
cfb4d2451balibevent: Use github call & fix patchWe want to use the github helper since there is not a specific releases tarball that we can download, as specified in the manual. This tarball is generated from the tag, which doesn't contains the autotools generated files, we then need to use AUTORECONF. We want to use the github helper anyway as the current URL use an old GitHub feature which was called 'Download' where you could upload fil...
Danomi ManchegoDanomi Manchego
a732c545246gst-ffmpeg: expand package description to describe libav usage- Change URL to gst-ffmpeg page at the gstreamer site. - Note that gst-ffmpeg actually uses libav, not ffmpeg [anymore]. - Note that gst-ffmpeg is using an internal copy of libav, not a system copy. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Danomi ManchegoDanomi Manchego
15a7140bc55gst-ffmpeg: add --pkg-config to internal libav configure optionsThe internal copy of libav in gst-ffmpeg does not understand the PKG_CONFIG env variable, so it throws a line like this at the end of its configuration: WARNING: .../output/host/usr/bin/i686-pc-linux-gnu-pkg-config not found, library detection may fail. This patch adds the --pkg-config to let libav know where it is. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Tested-by: Luca...
Danomi ManchegoDanomi Manchego
e6e946ebebbgst-ffmpeg: add option to select GPL vs LGPL buildSigned-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas PetazzoniThomas Petazzoni
a923b44112aipset: add patch to fix --enable-debug buildFixes: http://autobuild.buildroot.org/results/e09/e092c05b949a2bcdadc4f4a0a57d7dd1dc8dca26/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Bernd KuhlsBernd Kuhls
b90a1ea36dapackage/mesa3d: Fix uClibc build with BR2_ENABLE_DEBUG=yesSigned-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Gustavo ZacariasGustavo Zacarias
34cf104187clibmemcached: add hash fileSigned-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Gustavo ZacariasGustavo Zacarias
b65188b1c86memcached: bump to version 1.4.21And add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Jörg KrauseJörg Krause
53e22e14a78mp4v2: new package[Thomas: use --enable-largefile/--disable-largefile as appropriate.] Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Gustavo ZacariasGustavo Zacarias
c3aa6068c72coreutils: fix libintl, reorder ENV, OPTS & PROGSMove OPTS, ENV & PROGS up to the top, the fact that a conditional (BR2_PACKAGE_BUSYBOX) was before them is bad style and confused me while i tried to get them grouped together. This was making all of the new disable OPTS fail, pretty much harmless but still. Account for libintl/gettext presence, it's not required in any toolchain combination but it will fail if it's present, so use it when it'...
Francois PerradFrancois Perrad
bd1bbe43019perl-mojolicious: bump to version 5.54Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Francois PerradFrancois Perrad
a39dedc05e0perl-net-ssleay: bump to version 1.66Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Francois PerradFrancois Perrad
9c79200529eperl-io-socket-ssl: bump to version 2.002Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Francois PerradFrancois Perrad
be59a6879ebperl-json-tiny: bump to version 0.50Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Francois PerradFrancois Perrad
43ddb31b076perl-path-tiny: bump to version 0.059Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Francois PerradFrancois Perrad
b4bff77d59aperl-module-build: bump to version 0.4210[Thomas: drop empty HOST_PERL_MODULE_BUILD_DEPENDENCIES.] Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas PetazzoniThomas Petazzoni
525a94acc35liblog4c-localtime: update patches that have been submitted upstreamSigned-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas PetazzoniThomas Petazzoni
f97702e8f42liblog4c-localtime: fix build issue on uClibc with --enable-debugWhen --enable-debug is used, liblog4c-localtime wants to use <mcheck.h> if __GLIBC__ is defined. Unfortunately, uClibc defines __GLIBC__ but does not provides mcheck.h. Therefore, this commit introduces a patch (0003) that checks if mcheck.h is available or not. However, this patch requires autoreconfiguring the package, which is currently broken. Therefore, the two other patches (0004 and 000...
Thomas PetazzoniThomas Petazzoni
84a9c4b72fbliblog4c-localtime: rewrite existing patches as Git patchesIn order to prepare upstream submission, this commit rewrites the two existing liblog4c-localtime patches as Git patches. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas PetazzoniThomas Petazzoni
ce2888a053fliblog4c-localtime: rename patches to the new naming conventionSigned-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Jerzy GrzegorekJerzy Grzegorek
1769933d98cpackage: indentation cleanupSigned-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd KuhlsBernd Kuhls
28a0054bea7package/xbmc: Add optional support for libcapSigned-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd KuhlsBernd Kuhls
e48cfc39f1epackage/libcap: add hash fileSigned-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd KuhlsBernd Kuhls
57280c2f244package/libcap: bump version to 2.24Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
4ee770e1847avahi: add optional gtk3 supportSigned-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
7006bff9b3cpulseaudio: correct libgtk3 handlingThe gtk3 support uses X11 specific functionality, so it should only be enabled if the X11 backend is enabled. Fixes: http://autobuild.buildroot.net/results/9d9/9d9ddea26a5193367a80eede1be1122cec5cd939/ http://autobuild.buildroot.net/results/3fb/3fbbdbf39e29319b349b2cf155397a121f24bf28/ http://autobuild.buildroot.net/results/ccf/ccf31740a0e730f2626db9051931b1e0703c770d/ And many others. Signe...
Bernd KuhlsBernd Kuhls
1359943effepackage/qdecoder: Fix build errorError occured with an allyespackageconfig setup, with BR2_ENABLE_DEBUG=y: qcgireq.c: In function '_parse_multipart_value_into_disk': qcgireq.c:738:60: error: 'errno' undeclared (first use in this function) DEBUG("I/O error. (errno=%d)", (ioerror == true) ? errno : 0); Also fixes the same issue, seen by the autobuilders: http://autobuild.buildroot.org/results/ec0/ec06b196e0fe1e2ccc...
Pedro AguilarPedro Aguilar
c2a5b777a5blibunistring: new package[Thomas: - adjust the title of the commit - remove the thread dependency, by using the --disable-threads option when needed - remove LIBUNISTRING_SOURCE, since its value was the default - use BR2_GNU_MIRROR in LIBUNISTRING_SITE - adjust the license, which really is LGPLv3+, not LGPLv2. The license file is COPYING.LIB.] Signed-off-by: Pedro Aguilar <paguilar@paguilar.org> Sign...
Thomas PetazzoniThomas Petazzoni
c2287b9a3abshairport-sync: requires alsa-lib mixer supportFixes: http://autobuild.buildroot.org/results/b74/b74c764e9527ce1cce8825682285824a519ac2cf/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Max FilippovMax Filippov
283bc5e97c4package/aircrack-ng: add missing space to LIBSQLSigned-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>