summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* core/pkg-kconfig: handle generated defconfigsSam bobroff2015-12-221-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As of Linux kernel commit ea4d1a8 "powerpc/configs: Replace pseries_le_defconfig with a Makefile target using merge_config" some kconfig defconfigs (one so far: "pseries_le_defconfig") can be generated using "make <defconfig>" and they do not exist on disk as a single defconfig file. This causes buildroot's build to fail for those configs with: 'arch/powerpc/configs/pseries_le_defconfig' for 'linux' does not exist To handle this case and keep the makefile steps as simple as possible, introduce a new package variable, *_KCONFIG_DEFCONFIG, that can be used to indicate that a defconfig rule is being used, rather than a file. This allows the rule that generates the .config file to use either the provided file (by copying) or a generated defconfig (by running "make <defconfig>") as its starting point. merge_config.sh can then be run the same way in either case, using .config as both input and output. Note that merge_config.sh is now modifying .config in-place but this is safe because it uses a temporary copy while making changes. This patch introduces the new variable but does not make use of it. Use of the new variable will be introduced in separate patches. Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com> [yann.morin.1998@free.fr: - include all the other kconfig-package hunks into this one patch - do not transform the 'echo "..."; exit 1' into $(error ...) calls - use a make $(if)-block instead of a shell if-block to copy the file or run make (like is done to check the kconfig snippets) - misc typoes and rephrasing in the commit log - do not force the _defconfig suffix in the infra (Thomas) ] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* wine: handle all *-config scriptsThomas Petazzoni2015-12-223-21/+113
| | | | | | | | | | | | We already had a patch to allow us to explicitly pass the location of the sane-config script, but wine's configure script uses several other *-config scripts. This commit extends the wine patch and wine.mk to explicitly pss the location of all *-config scripts that may be used by wine. The wine patch has been submitted upstream. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ltrace: add patch to fix build on sparcThomas Petazzoni2015-12-221-0/+36
| | | | | | | | | | | | | | | | | | | | Due to a missing header inclusion, the build of ltrace of sparc fails with the following error: plt.c: In function 'sym2addr': plt.c:33:12: error: dereferencing pointer to incomplete type return sym->enter_addr; ^ plt.c:34:1: warning: control reaches end of non-void function [-Wreturn-type] } This commit fixes that by adding a patch to the ltrace code base. Fixes: http://autobuild.buildroot.org/results/55c/55ce618dbe1b2867e5738d90afb2eb67c19200e4/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lockdev: fix build with the musl C libraryThomas Petazzoni2015-12-221-0/+6
| | | | | | | | | | | | | | When the musl C library is used, the __GNU_LIBRARY__ symbol is not defined, so the lockdev code doesn't know what to do. To work around this, we explicitly pass __GNU_LIBRARY__ when building with musl, this musl provides what's needed for lockdev to build, as if we were building against glibc. Fixes: http://autobuild.buildroot.org/results/9db/9db4ab40955d3af0027e141245d73ee6c614fb1f/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* autofs: add missing dependencies on flex and bisonThomas Petazzoni2015-12-221-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/999/999d2d5fe07994642ab39b26d936c230d79947a2/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ubus: new packageSergio Prado2015-12-225-0/+94
| | | | | Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/unscd: new packageDoug Kehn2015-12-226-0/+121
| | | | | | | | | | | | | | | | | | | A daemon which handles passwd, group and host lookups for running programs and caches the results for the next query. This package is intended to replace glibc nscd. Presently, glibc nscd is not installed by Buildroot. unscd depends on glibc because it relies on glibc function __nss_disable_nscd. nscd.conf is taken from glibc with unused configurations removed. Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Doug Kehn <rdkehn@yahoo.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nfs-utils: install /etc/nfsmount.confJonathan Ben Avraham2015-12-221-0/+2
| | | | | | | | | | | Installs /etc/nfsmount.conf on the target, mainly to be able to configure the the NFS version that mount.nfs uses by default. Without this ability you are likely to encounter mount errors when automounting directories from NFS version 3 servers. Signed-off-by: Jonathan Ben Avraham <yba@tkos.co.il> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* autofs: new packageJonathan Ben Avraham2015-12-225-0/+76
| | | | | | | | | | | | | | | | | | Tested on i.MX6 using NFS mounts only. Not tested with DAS mounts as of this commit. [Thomas: - remove the "# rpcbind" comments on the thread and mmu dependencies, since we don't select rpcbind. The thread and mmu dependencies are still needed though, since autofs uses pthread_*() functions and fork(). - Remove "Requires a toolchain with native RPC." in the Config.in help text and instead add a proper Config.in comment about the thread and RPC dependency. - Add patch to fix building with uClibc, taken from OpenEmbedded.] Signed-off-by: Jonathan Ben Avraham <yba@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/Config.in: fix alphabetical orderJerzy Grzegorek2015-12-221-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* emlog: new packageJoris Lijssens2015-12-225-0/+100
| | | | | | | | | | | | | [Thomas: - update to the latest github version, which has a number of fixes/improvements compared to the latest tag. - add a patch to fix the build of the kernel module with recent kernel versions (>= 3.19). - use $(INSTALL) -D with a full destination path. - rewrap Config.in help text, lines were too long.] Signed-off-by: Joris Lijssens <joris.lijssens@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.11Gustavo Zacarias2015-12-223-29/+4
| | | | | | | Patch upstream so remove it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cantarell: bump to version 0.0.19Gustavo Zacarias2015-12-222-4/+4
| | | | | | | Also use CANTARELL_VERSION_MAJOR in SITE as reported by Baruch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* rsync: security bump to version 3.1.2Gustavo Zacarias2015-12-222-2/+2
| | | | | | | | | | | Fixes: Make sure that all transferred files use only path names from inside the transfer. This makes it impossible for a malicious sender to try to make the receiver use an unsafe destination path for a transferred file, such as a just-sent symlink. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openbox: new packageEzequiel García2015-12-224-0/+87
| | | | | | | | | | | | | | | | | | | | | Add support for the Openbox Windows Manager. [Thomas: - don't mention MMU in the Config.in comment. - wchar was forgotten in the Config.in comment. - the dependency of the comment on thread should be "depends on !BR2_TOOLCHAIN_HAS_THREADS" so that the comment is shown when thread support is *not* available. - add missing select of BR2_PACKAGE_XLIB_LIBXFT and BR2_PACKAGE_XLIB_LIBXRENDER which are needed for pango to have xft support, otherwise the build fails with "configure: error: Package requirements (pango >= 1.8.0 pangoxft >= 1.8.0) were not met:" - remove useless empty newline in the hash file - add missing dependency on host-pkgconf, which is needed since the configure.ac uses PKG_CHECK_MODULES.] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipmitool: Bump ipmitool to 1.8.15Stewart Smith2015-12-222-2/+2
| | | | | | | | New release fixes a number of bugs, including some needed for talking to modern AMI BMC firmware as shipped on some POWER8 systems. Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pysmb: new packageYegor Yefremov2015-12-214-0/+33
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-cherrypy: bump to 4.0.0Yegor Yefremov2015-12-212-4/+4
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pyftpdlib: bump to 1.5.0Yegor Yefremov2015-12-212-4/+6
| | | | | | | Change download location to pypi and add pypi MD5 checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-werkzeug: bump to 0.11.3Yegor Yefremov2015-12-212-4/+4
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-zope-interface: bump to 4.1.3Yegor Yefremov2015-12-212-3/+4
| | | | | | | Add pypi MD5 checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imagemagick: bump to version 6.9.2-10Jerzy Grzegorek2015-12-212-2/+2
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gst1-plugins-bad/Config.in: indentation cleanupJerzy Grzegorek2015-12-211-7/+7
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* picocom: bump to version 2.1Rodrigo Rebello2015-12-212-4/+2
| | | | | | | | Also remove no longer needed patch (merged upstream before the release of v2.1). Signed-off-by: Rodrigo Rebello <rprebello@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* trace-cmd: bump to version 2.6Sergio Prado2015-12-212-37/+1
| | | | | | | Also remove no longer needed patch (fixed upstream). Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* luvi: new packageJörg Krause2015-12-204-0/+93
| | | | | | | | | | Add package luvi version v2.3.5. luvi extends LuaJIT with asynchronous I/O and several optional modules to run Lua applications and build self-contained binaries. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gst1-plugins-bad: Add OpenAL dependencyAndré Hentschel2015-12-202-1/+17
| | | | | Signed-off-by: André Hentschel <nerv@dawncrow.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/v4l2grab: Update hash after latest version bumpBernd Kuhls2015-12-201-1/+1
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/3aa/3aa8ac30de88c50539afaf7cd5ef10eb375c96f5/ http://autobuild.buildroot.net/results/927/92792f6d7aa2f9b2b8d55315369164faa42c38af/ http://autobuild.buildroot.net/results/09a/09a1931d9c117b678cc6ab9bd34f23aa84238d48/ http://autobuild.buildroot.net/results/37d/37dee4ce618c511af8bdf7876e6038e907aba7a6/ http://autobuild.buildroot.net/results/48d/48d1052240c6041db7ac7b82fafd8c02998becfc/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ifupdown: bump to version 0.8.2Gustavo Zacarias2015-12-202-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* start-stop-daemon: bump to version 1.18.3Gustavo Zacarias2015-12-203-25/+14
| | | | | | | | Enable developer mode to skip the shared library check in configure and avoid further patching. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* debianutils: bump to version 4.5.1Gustavo Zacarias2015-12-202-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libmicrohttpd: bump to version 0.9.48Gustavo Zacarias2015-12-202-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gnupg: bump to version 1.4.20Gustavo Zacarias2015-12-202-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/wpa_supplicant: add config option to build wpa_client libraryJörg Krause2015-12-203-0/+72
| | | | | | | | | | | | | | | | Version 2.5 of wpa_supplicant introduces the config option CONFIG_BUILD_WPA_CLIENT_SO to enable building wpa_client as shared library. We need to add a patch from upstream to fix a runtime error with libwpa_client.so: Error relocating /usr/lib/libwpa_client.so: bin_clear_free: symbol not found [Thomas: renumber patch.] Cc: Martin Bark <martin@barkynet.com> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Reviewed-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/perl-db-file: Berkeley DB 1.85 compatibility API is not neededBernd Kuhls2015-12-201-2/+1
| | | | | | | | | | | | | | This package is also compatible with Berkeley DB v2 or higher: https://metacpan.org/source/PMQS/DB_File-1.835/Changes 1.50 DB_File can now build with either DB 1.x or 2.x, but not both at the same time. [Thomas: adjust Config.in help text accordingly.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/efl: rename libefl to eflRomain Naour2015-12-2012-127/+127
| | | | | | | | | | | | | This allow to keep backward compatibility with older defconfig files that used BR2_PACKAGE_EFL. Don't add Config.in.legacy entry for libefl since it's not part of any Buildroot release. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libefl: move to package directoryRomain Naour2015-12-208-35/+18
| | | | | | | | | | | | As discussed on the list move the last remaining package in package/efl subdirectory to package/ directory. - move the efl dependency to libefl. - Set LIBEFL_VERSION with the version number directly. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/elementary: rename libelementary to elementaryRomain Naour2015-12-206-17/+17
| | | | | | | | | | | | The upstream name is elementary so use it. Even if this package provide libelementary.so, it also provide elementary_codegen, elementary_run and elm_prefs_cc tools. Add a legacy entry. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libelementary: move to package directoryRomain Naour2015-12-205-3/+4
| | | | | | | | | | | | | | As discussed on the list the two remaining packages in package/efl subdirectory will be moved to package/ directory. - Add the efl dependency to libelementary. - Set LIBELEMENTARY_VERSION with the version number directly. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: bump version to 2.8.4Bernd Kuhls2015-12-202-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libdrm: Remove i386/x86_64 dependency from Nouveau driverBernd Kuhls2015-12-201-1/+0
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/nut: disable libltdl (and nut-scanner) for static-onlyYann E. MORIN2015-12-201-2/+5
| | | | | | | | | | | | | | | | nut-scanner needs libltdl, a wrapper around dlopen/dlsym. This does not really make sense on a static-only build. Disable use of libltdl in static-only builds; this disble nut-scanner. Fixes: http://autobuild.buildroot.org/results/d8e/d8e769709681b1965f36eb5c27f71f3a1f5adcf1/ http://autobuild.buildroot.org/results/6e4/6e403642069093389acbeeccd7030b76d4ab68be/ http://autobuild.buildroot.org/results/fa4/fa4c647ce58b91b863d8de5bf9d44b2060a1cf1c/ and so many others... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* directfb: remove cle266 and unichrome supportGustavo Zacarias2015-12-202-12/+0
| | | | | | | | | | | | | | | | | They're broken for the latest version and directfb upstream is gone. cle266 is an old chipset for AMD K7 (32 bit) athlons with integrated graphics - very odd hardware. unichrome is another VIA graphics standalone chip/chipset used for some odd video cards and VIA CPUs (x86-based: C7, Nano and so on). Add options to legacy as well. Fixes: http://autobuild.buildroot.net/results/ab9/ab9a6dd044b5f3e8e42629a2aaf598fd0e0357ed/ Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* directfb-examples: indentation cleanupJerzy Grzegorek2015-12-201-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: ADI Blackfin: support only one versionRomain Naour2015-12-203-10/+6
| | | | | | | | | | | | | | See the conclusion about external toolchains during the Buildroot meeting [1]: "In the future, we stick to a single external toolchain version. The Kconfig symbol should not encode the version (avoid legacy handling)" [1] http://elinux.org/index.php?title=Buildroot:DeveloperDaysELCE2015#Report Remove old ADI toolchain handling in glog, openpgm and zeromq. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: CodeSourcery SH: support only one versionRomain Naour2015-12-202-4/+2
| | | | | | | | | | | | See the conclusion about external toolchains during the Buildroot meeting [1]: "In the future, we stick to a single external toolchain version. The Kconfig symbol should not encode the version (avoid legacy handling)" [1] http://elinux.org/index.php?title=Buildroot:DeveloperDaysELCE2015#Report Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: CodeSourcery PowerPC: support only one versionRomain Naour2015-12-202-10/+0
| | | | | | | | | | | | | | See the conclusion about external toolchains during the Buildroot meeting [1]: "In the future, we stick to a single external toolchain version. The Kconfig symbol should not encode the version (avoid legacy handling)" [1] http://elinux.org/index.php?title=Buildroot:DeveloperDaysELCE2015#Report Remove old CS toolchain handling in pixman and liquid-dsp. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xutil_util-macros: move outside x11r7 scopeGustavo Zacarias2015-12-205-1/+1
| | | | | | | | | Move to baseline package/ It doesn't really require x11r7 infrastructure and is in fact needed by libepoxy which can be made x11r7-less. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/v4l2grab: update version to fix buildYann E. MORIN2015-12-201-1/+1
| | | | | | | | | | | | | | | | | v4l2grab uses clock_gettime which is provided by -lrt, so we must check and link with it. Also, silence autoreconf when outside a git tree. Fixes: http://autobuild.buildroot.org/results/9df/9df2c09963b97524621f8323b279b8a1672d4b6c/ http://autobuild.buildroot.org/results/448/4484bda010442033d0536a95f45370701c071f92/ http://autobuild.buildroot.org/results/b1c/b1ca0c984ec51518a4090039a86a1814582c3c2b/ ... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Volkov Viacheslav <sv99@inbox.ru> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* wine: Bump to version 1.8André Hentschel2015-12-205-68/+36
| | | | | | | | | | | Bumping to brand new stable version 1.8 Upstreamed patches are dropped, sane patch is rebased. Adding libpcap, pulseaudio and samba4 as soft dependencies. sfnt2fon moved to its own subfolder and needs to be built in host-wine. Signed-off-by: André Hentschel <nerv@dawncrow.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud