summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* package/nginx: fix patches titlesMartin Bark2016-05-168-8/+8
| | | | | | | | | Changed [PATCH x/y] to [PATCH] at the beginning of the subject line since the numbering is meaningless. Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* stress-ng: update to 0.06.02Waldemar Brodkorb2016-05-162-2/+2
| | | | | | | | | Fixes following autobuilder errors: http://autobuild.buildroot.net/results/b527ccdbdfeaba6789528e68df93d9c7216e758a/ http://autobuild.buildroot.net/results/d658f82c66d93515276dcb6cec8d3690459fbf05/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/samba4: create tempfile with systemdYann E. MORIN2016-05-161-0/+3
| | | | | | | | | | | | | | | | | | With systemd, samba4 will need some special temporary files to be created on each boot, as explained in: packaging/systemd/README Install the provided template file as configuration. However, this is not enough, as even the log directory is a tmpfs in the default Buildroot configuration, so we must also create the log directory on each boot. Hence we append this to the template installed above. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/iputils: bump version to 31d947cf7156cf78d3f57e0bd82b33e6f6ece6b4Martin Bark2016-05-162-2/+2
| | | | | | | | | | | | Includes a fix for static builds using libgcrypt. Fixes: http://autobuild.buildroot.net/results/55a7db5c0cbc34bbf6a2cbc52713d8822deec5b2 http://autobuild.buildroot.net/results/864d8901eb901182ce186cf9a845636040e242bb http://autobuild.buildroot.net/results/aba522aa164267993fb1f1bbc57733be0cbea680 Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvpn: security bump to version 2.3.11Gustavo Zacarias2016-05-152-2/+2
| | | | | | | | Fixed port-share bug with DoS potential. Fix buffer overflow by user supplied data. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvpn: remove polarssl crypto backend optionGustavo Zacarias2016-05-153-31/+14
| | | | | | | | | | | | | | | Now that we need to bump openvpn to version 2.3.11 for security fixes the time has come to remove the polarssl option. Add legacy handling explaining the situation: PolarSSL 1.2.x can coexist with mbedTLS 2.x+, but OpenVPN requires PolarSSL/mbedTLS 1.3.x (the transition branch) >= 1.3.8 but doesn't build/work with the 2.x series. And PolarSSL/mbedTLS 1.3.x can't coexist with mbedTLS 2.x on the same target. So, unfortunately, openssl is now the only option (until libressl arrives) which means no more backend options in general. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* android-tools: add patch to fix static linkingThomas Petazzoni2016-05-151-0/+36
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/c3b95741a5f6622dc9542f9eaefe295a328e2e40/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* android-tools: needs thread supportThomas Petazzoni2016-05-151-0/+5
| | | | | | | | | | | | Both adb and adbd use <pthread.h>, and fastboot needs thread due to its dependency on libselinux, so we put the dependency in the top-level android-tools Config.in option. Fixes: http://autobuild.buildroot.net/results/bafadedc0ae91f8a1e26d14f30b37d6bb9486816/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mtr: bump to latest git version (newdns branch)Gustavo Zacarias2016-05-152-11/+3
| | | | | | | | | | | This fixes the musl build issues and the need to specially patch for uClibc at the same time. Fixes: http://autobuild.buildroot.net/results/deb/debeb3ded02c3de63182c3433ff02062192d3fd1/ Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/android-tools: fix the select logicThomas Petazzoni2016-05-151-2/+2
| | | | | | | | | | | | | | | The android-tools Config.in.host has some logic to ensure that at least one of its sub-options is enabled. However, this logic incorrectly uses the sub-option names from the *target* android-tools package, while it should be using the ones from the *host* android-tools package. Fixes the following kconfig warning: warning: (BR2_PACKAGE_HOST_ANDROID_TOOLS) selects BR2_PACKAGE_ANDROID_TOOLS_ADB which has unmet direct dependencies (BR2_PACKAGE_ANDROID_TOOLS && BR2_USE_MMU) Reported-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/android-tools: fix indentation in Config.in.hostSamuel Martin2016-05-151-17/+17
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/opencv: gpu module depends on !BR2_STATIC_LIBSSamuel Martin2016-05-151-0/+12
| | | | | | | | | | | | | | | GPU support and related features (GL and CL) are detected and loaded at runtime, so it requires libdl which is only available on !BR2_STATIC_LIBS builds. Because the OpenCV tests sets use these modules, they also requires libdl, so they cannot be built when BR2_STATIC_LIBS is enable. Fixes: http://autobuild.buildroot.net/results/570/57007a8d22d20b2fc5cd64154f5ec674b0842afa/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gmrender-resurrect: disable on musl configurationsThomas Petazzoni2016-05-151-2/+5
| | | | | | | | | | | | | | | gmrender-resurrect uses <error.h>, which isn't available on musl configuration, so let's disable this package in such situations. Fixes: http://autobuild.buildroot.net/results/96a280a8115cd01d64670e4caf2471d3ee4581d9/ (and numerous similar build failures) Cc: kei-k@ca2.so-net.ne.jp <kei-k@ca2.so-net.ne.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* android-tools: fix dependency on libselinuxThomas Petazzoni2016-05-151-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fastboot sub-option of android-tools did not properly replicate the dependency of libselinux, which it is selecting. Due to this, an invalid configuration could be generated, with fastboot selected while thread support is not available for example (and therefore libselinux is not available). This problem was causing the following build failure: http://autobuild.buildroot.net/results/21e45cee04fd983c85c6702595ee3f7ed8470931/ This is fixed by replicating the selinux dependencies in the fastboot sub-option and adding the relevant Config.in comment. In addition, the main android-tools option had some logic to make sure at least one of its sub-option is enabled: adbd by default on systems with MMU, and fastboot by default on systems without MMU (because fastboot is the only part that builds on noMMU systems). However, with the new dependencies in the fastboot sub-option, this logic would have become a lot more complicated. Since fastboot is very unlikely to be used on noMMU systems, we simply make the whole package not available on noMMU systems. Cc: Gary Bisson <gary.bisson@boundarydevices.com> Cc: Antoine Tenart <antoine.tenart@free-electrons.com> Cc: Julien Corjon <corjon.j@ecagroup.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sg3-utils: disable for blackfinGustavo Zacarias2016-05-151-0/+2
| | | | | | | | | | Suffers from the usual symbol prefixing problems for bfin, it's probably easy to fix, however no bfin has/will be used for storage apps since they lack the usual ports for it. Fixes: http://autobuild.buildroot.net/results/314/31447787e70cd351ce01b7a49ba029758d0c68e5/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/opencv: disable toolchains affected by PR19405Romain Naour2016-05-151-0/+3
| | | | | | | | | | | | opencv libphoto fail to link with the following error: nios2-linux-gnu/bin/ld: BFD (Sourcery CodeBench Lite 2015.11-130) 2.25.51 assertion fail binutils-src-2015.11-130-nios2-linux-gnu-i686-pc-linux-gnu/bfd/elf32-nios2.c:1908 Fixes: http://autobuild.buildroot.net/results/fd0cc1cb09d07be94770d984efb28eea7c6f25b7 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain: update paranoid unsafe path commentRomain Naour2016-05-151-2/+2
| | | | | | | | | | | Since 919c06c28295f19ca49459b98d8954148b381360 the calls to gcc always pass through the toolchain wrapper and all gcc patches to support poisoning has been removed. Update the BR2_COMPILER_PARANOID_UNSAFE_PATH comment. Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mali-t76x: depends on mesa3d-headersGustavo Zacarias2016-05-141-1/+1
| | | | | | | | | | | It selects them, but doesn't depend on them, and since the package only provides binaries there's a complete lack of headers. When some other package pulls in the egl/gles provider this doesn't result in headers being pulled in, hence the API is completely missing. Fixes: http://autobuild.buildroot.net/results/dab/dab91372b7bfde57796a7e3de7e823dc44adfb76/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* glmark2: narrow down libgl requirementsGustavo Zacarias2016-05-141-0/+1
| | | | | | | | | | | | | | Mesa3d DRI drivers can be enabled without support for libgl (for example without x11). So make glmark2 gl (x11) support depend on BR2_PACKAGE_HAS_LIBGL being present as well. It doesn't exactly mean mesa3d providing libgl, but since we can't have more than one libgl provider at the same time it's equivalent. This is fallout from f1894ec95728806e09405d26663e0ea371afaeab which enabled DRI drivers for non-xorg builds. Fixes: http://autobuild.buildroot.net/results/174/1743ee5a340e5f4b1f8519e0b11eb196caa4f30e/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nginx: add libatomic_ops supportMartin Bark2016-05-132-3/+14
| | | | | | | | | | | | | Force the use of libatomics_ops on the sparc v8 and leon3 platforms to allow nginx to build. Optionally use libatomic_ops on other platforms. This fixes: http://autobuild.buildroot.net/results/20dc41cd62887222d2569d81b5865893baeafaae/ http://autobuild.buildroot.net/results/eb47af0c8df6fae82859865fb8b9912f45960444/ Cc: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nginx: fix dlopen supportMartin Bark2016-05-131-0/+33
| | | | | | | | | | Only include dlfcn.h on systems that support it This fixes: http://autobuild.buildroot.net/results/f72a9a81e21166af20332d835d71651be7c016c3/ Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nginx: fix libgd supportMartin Bark2016-05-132-0/+32
| | | | | | | | | | Change to using gdlib-config to find libgd and its dependencies. This fixes: http://autobuild.buildroot.net/results/d1806140eccb1202cb8b223289510d64fb28acb6/ Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nginx: fix openssl supportMartin Bark2016-05-131-0/+31
| | | | | | | | | | Change to using pkg-config to find openssl and its dependencies. This fixes: http://autobuild.buildroot.net/results/17db76c3a099e7592af343bbe119dfe717cd7999/ Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nginx: fix libxslt supportMartin Bark2016-05-133-45/+35
| | | | | | | | | | Change to using pkg-config to find libxslt and it dependencies. This Fixes: http://autobuild.buildroot.net/results/382699bbed15f598625b9296e464d1349ef559f8 Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/quagga: Fix directories and permissionsNathaniel Roach2016-05-132-1/+29
| | | | | | | | | | | Quagga runs as the "quagga" user, but it also needs to modify files in /etc and /var - config files, pid files and vty sockets for vtysh. Tell the configure script the right folders to use, create the user, fix the permissions, and then let systemd know (if needed). Signed-off-by: Nathaniel Roach <nroach44@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/turbolua: Fix optional openssl dependencyMarcin Niestroj2016-05-131-1/+7
| | | | | | | | | | | turbolua fails to build when we have openssl selected, because it didn't mention openssl in the dependency list. Fix build failure by specifying openssl in dependency list when it is selected. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile: fix rootfs overlay with BR2_ROOTFS_MERGED_USR enabledPeter Seiderer2016-05-131-1/+1
| | | | | | | | | | | | | | | | | | | Use rsync with '--keep-dirlinks' option to prevent rootfs overlay to overwrite /usr, /bin, /sbin and /lib links in case BR2_ROOTFS_MERGED_USR option is enabled. Steps to reproduce failure: - enable BR2_ROOTFS_MERGED_USR - mkdir some_path/rootfs-overlay/lib/firmware/some_file.txt - enable BR2_ROOTFS_OVERLAY="some_path/rootfs-overlay" - run 'make' - 'target/lib' contains only the files from 'some_path/rootfs-overlay/lib' instead of the original symlink 'lib -> usr/lib'. Signed-off-by: Peter Seiderer <ps.report@gmx.net> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: fix user provided libraries deploymentRomain Naour2016-05-131-1/+1
| | | | | | | | | | | | | | | | | | | In commit 919b4f9eab3e6dcd18cf9220af2c9bb2ca3e5098 the internal symbol LIB_EXTERNAL_LIBS was renamed TOOLCHAIN_EXTERNAL_LIBS but the find and replace command also renamed BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS to BR2_TOOLCHAIN_EXTRA_TOOLCHAIN_EXTERNAL_LIBS which doesn't exist. So user provided libraries defined in BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS are not copied anymore to staging and target directories. For example: BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS="libasan.* libubsan.*" Simply revert this change by renaming BR2_TOOLCHAIN_EXTRA_TOOLCHAIN_EXTERNAL_LIBS to BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/go: Fix powerpc64 config typoGeoff Levand2016-05-122-2/+4
| | | | | | | | | Fix typo in config powerpc64 depends. Go language only supports 64 bit powerpc. Also add BR2_powerpc64le to depends list. Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/go-bootstrap: Set CGO_ENABLED=0Geoff Levand2016-05-121-1/+2
| | | | | | | | | Fixes build erorros like these: cgo.a(_all.o): unknown relocation type 42; compiled without -fpic? Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/go-bootstrap: Add toolchain dependencyGeoff Levand2016-05-121-0/+6
| | | | | | | | | | To build programs that need cgo support the toolchain needs to be available. Cc: Christian Stewart <christian@paral.in> Signed-off-by: Geoff Levand <geoff@infradead.org> [Thomas: add comment in the code about the toolchain dependency.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libpjsip: disable parallel buildLuca Ceresoli2016-05-121-0/+1
| | | | | | | | | | | | | | | | | | | | | The libpjsip package has build issues on the autobuilders that look like parallel build issues. These issues seem to be extremely hard to reproduce, so let's disable parallel build and see if this fixes the issue. The suspect error message is: ...-ld: cannot find -lpjsua collect2: error: ld returned 1 exit status Some of the failures: http://autobuild.buildroot.org/results/d6b/d6bff569bc9238cdf07970e11b5535d570be59bf http://autobuild.buildroot.org/results/f72/f721d5390bc61274c224bfe3a675ee194172ac91 http://autobuild.buildroot.org/results/b45/b45262971a7d7ce0604d124734223abca190c11e http://autobuild.buildroot.org/results/75e/75ee45b746ab8b80eb84297e2e4babbace1b5608 http://autobuild.buildroot.org/results/873/873771fbcc859578ed40a3c81b69ac3a388ae585 Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* android-tools: adb/adbd sub options use fork(), need MMUPeter Korsgaard2016-05-111-1/+7
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/d87/d87a4bd35cedca94ef6266a06ba05dda103d49ce/ http://autobuild.buildroot.org/results/a83/a8312469b4da6142f0ae67a5eeaf255da351a379/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* android-tools: fix Config.in indentationPeter Korsgaard2016-05-111-29/+29
| | | | | | Config.in files should be indented using <tab>. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imx6ulevk: readme: Update the rootfs type to ext4Fabio Estevam2016-05-111-1/+1
| | | | | | | | Since commit 2f37ef48e82e3ba ("configs/imx6ulevk: Use ext4 as filesystem type") the rootfs type is ext4, so update the readme.txt accordingly. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux: Bump default to version 4.5.4Fabio Estevam2016-05-111-2/+2
| | | | | | Signed-off-by: Fabio Estevam <festevam@gmail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libarchive: add security patch for CVE-2016-1541Gustavo Zacarias2016-05-111-0/+71
| | | | | | | | | | | | Fixes: CVE-2016-1541 - heap-based buffer overflow vulnerability in the zip_read_mac_metadata function in libarchive, a multi-format archive and compression library, which may lead to the execution of arbitrary code if a user or automated system is tricked into processing a specially crafted ZIP file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.{14, 18}.x and 4.{1, 4, 5}.x seriesGustavo Zacarias2016-05-111-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/kodi-screensaver/visualisation-*: allow OpenGL build on armBernd Kuhls2016-05-1115-30/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Kodi depends on egl/gles on arm, our Kconfig option BR2_PACKAGE_KODI_GL reflects this, it depends on !BR2_arm. This option is wrongly used in many Kodi addons needing OpenGL, they can be compiled even if Kodi itself uses egl/gles. This patch changes the dependency on BR2_PACKAGE_KODI_GL to BR2_PACKAGE_HAS_LIBGL. Tested using this defconfig: BR2_arm=y BR2_cortex_a17=y BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y BR2_TOOLCHAIN_BUILDROOT_LOCALE=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_PACKAGE_KODI=y BR2_PACKAGE_KODI_SCREENSAVER_ASTEROIDS=y BR2_PACKAGE_KODI_SCREENSAVER_ASTERWAVE=y BR2_PACKAGE_KODI_SCREENSAVER_BIOGENESIS=y BR2_PACKAGE_KODI_SCREENSAVER_CPBLOBS=y BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH=y BR2_PACKAGE_KODI_SCREENSAVER_GREYNETIC=y BR2_PACKAGE_KODI_SCREENSAVER_MATRIXTRAILS=y BR2_PACKAGE_KODI_SCREENSAVER_PINGPONG=y BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE=y BR2_PACKAGE_KODI_SCREENSAVER_PYRO=y BR2_PACKAGE_KODI_SCREENSAVER_RSXS=y BR2_PACKAGE_KODI_SCREENSAVER_STARS=y BR2_PACKAGE_KODI_VISUALISATION_FISHBMC=y BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN=y BR2_PACKAGE_KODI_VISUALISATION_GOOM=y BR2_PACKAGE_KODI_VISUALISATION_SHADERTOY=y BR2_PACKAGE_KODI_VISUALISATION_SPECTRUM=y BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE=y BR2_PACKAGE_KODI_VISUALISATION_WAVEFORM=y BR2_PACKAGE_MESA3D=y BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST=y BR2_PACKAGE_MESA3D_OPENGL_EGL=y BR2_PACKAGE_MESA3D_OPENGL_ES=y BR2_PACKAGE_XORG7=y $ grep PACKAGE_HAS_LIB .config BR2_PACKAGE_HAS_LIBGL=y BR2_PACKAGE_HAS_LIBEGL=y BR2_PACKAGE_HAS_LIBGLES=y Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi-visualisation-shadertoy: needs libglew for OpenGL buildBernd Kuhls2016-05-112-0/+5
| | | | | | | | | | | | | | Fixes -- Found OpenGL: /home/bernd/buildroot/output/host/usr/arm-buildroot-linux-uclibcgnueabihf/sysroot/usr/lib/libGL.so CMake Error at /home/bernd/buildroot/output/host/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:148 (message): Could NOT find GLEW (missing: GLEW_INCLUDE_DIRS GLEW_LIBRARIES) For details have a look at https://github.com/notspiff/visualization.shadertoy/blob/master/CMakeLists.txt#L21 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi-screensaver-rsxs: needs xlib_libXmuBernd Kuhls2016-05-112-3/+5
| | | | | | | | | | | | | Fixes /home/bernd/buildroot/output/build/kodi-screensaver-rsxs-195e0ec3fbbcb2ee2012cd560e42d05167f0f259/lib/rsxs-1.0/src/common.cc:42:27: fatal error: X11/Xmu/StdCmap.h: No such file or directory X11/Xmu/StdCmap.h is included here: https://github.com/notspiff/screensavers.rsxs/blob/master/lib/rsxs-1.0/src/common.cc#L48 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi-screensaver-asterwave: needs libgluBernd Kuhls2016-05-112-1/+2
| | | | | | | | | | Fixes /home/bernd/buildroot/output/build/kodi-screensaver-asterwave-0dc2c48dadb100954eef823e7e3a5f502ce65b1e/src/Water.cpp:25:20: fatal error: GL/glu.h: No such file or directory Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi-visualisation-shadertoy: needs libplatformBernd Kuhls2016-05-111-0/+1
| | | | | | | | | | | Fixes Makefile:477: *** libplatform is in the dependency chain of kodi-visualisation-shadertoy that has added it to its _DEPENDENCIES variable without selecting it or depending on it from Config.in. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi-{screensaver,visualisation}-*: fix commentsBernd Kuhls2016-05-1115-15/+15
| | | | | | | | | | Various small changes to comments: - shorten OpenGL info (Thomas) - fix typos - add full packages names when missing (Thomas) Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* m68k: fix open issues with qemu coldfireWaldemar Brodkorb2016-05-114-44/+151
| | | | | | | | | | | Enable kernel drivers for networking and add a simple busybox config with basic network tools. Add kernel patch from Linux git to fix hush segfaults while using signal handler. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-coherence: fix twisted detectionYegor Yefremov2016-05-111-0/+29
| | | | | | | | | | | Apply upstream patch, that provides proper twisted detection. Fixes: http://autobuild.buildroot.net/results/d09/d09a6604414ed79205d95b164e32dbd72268e05c http://autobuild.buildroot.net/results/a97/a974f3f075fb22adde720856ec4c9d11d8151da7 Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libinput: fix variable name typoDanomi Manchego2016-05-111-1/+1
| | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Update for 2016.05-rc1Peter Korsgaard2016-05-104-12/+111
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imagemagick: security bump to version 6.9.4-1Gustavo Zacarias2016-05-102-2/+2
| | | | | | | | | | | | | Fixes: Fix GetNextToken() off by one error. Check for buffer overflow in magick/draw.c/DrawStrokePolygon(). Remove support for internal ephemeral coder. These are all related to the recent ImageTragick bundle that were partially fixed in 6.9.3-10 as well. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* php-geoip: fix legal infoGustavo Zacarias2016-05-101-1/+1
| | | | | | | | The LICENSE file is gone, so use the lone .c source fle. Fixes: http://autobuild.buildroot.net/results/acd/acd763e7eefb8be2bbd0bf973bb7855fceee7377/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud