aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-01-29libxml++: fix LICENSEMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-01-29meta_oe_security_flags.inc: Disable PIE for luajitKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-01-29mpv: Add PACKAGECONFIG for vaapiKhem Raj
Now that we have libva its important to enable/disable vaapi explicitly Fixes WARNING: mpv-0.15.0-r0 do_package_qa: QA Issue: mpv rdepends on libva-x11, but it isn't a build dependency, missing libva in DEPENDS or PACKAGECONFIG? [build-deps] WARNING: mpv-0.15.0-r0 do_package_qa: QA Issue: mpv rdepends on libva, but it isn't a build dependency, missing libva in DEPENDS or PACKAGECONFIG? [build-deps] Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-01-29meta_oe_security_flags: disable PIE for libdbus-c++André Draszik
The short version - it ain't working. The long version: For shared libraries made from C++ sources, configure runs some code to determine how to link shared libraries (from libtool.m4) using g++. In particular, it calls g++ ${CFLAGS} -c conftest.c g++ ${CFLAGS} -nostdinc -shared -v conftest.o to then parse the gcc -v output. If CFLAGS contains -pie -fpie, g++ adds Scrt1.o to the objects being linked together to form the final output. Once Scrt1.o is pulled into a shared library, it becomes impossible to link this DSO against a final binary. I didn't investigate why, by I suspect because of -Wl,relro -Wl,now libtool takes note of Scrt1.o (and all other libraries added by gcc, but those don't matter here) and adds it everywhere a shared library is being created, see predep_objects= and postdep_objects= in the 'LIBTOOL TAG CONFIG: CXX' section. In other words, the the shared library created during the build can't be linked against. This includes some applications that are part of the libdbus-c++ source tree, but also any other external user. While I am not sure if the root of the issue is in - gcc (should it really add Scrt1.o despite -shared), or in - libtool (should it filter out -pie -fpie during the configure step), or even in - OE (should it really be adding -pie -fpie to everything, even shared libraries by default and unconditionally), we can make things work by using SECURITY_NO_PIE_CFLAGS instead. Signed-off-by: André Draszik <adraszik@tycoint.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-01-29libvdpau: Disable PIEKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-01-29nbench-byte: fix project URLNicolas Ferre
www.tux.org/~mayer/linux/ location can't be found anymore. It seems that the www.math.utah.edu website gives an alternative to reach nbench-byte tool: use this one to fix the issue. Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-12-03gpsd: fix multilib buildNicolas Dechesne
While testing arm 64/32 multi, the following issue was observed: WARNING: gpsd-3.14-r0 do_package: QA Issue: gpsd: Files/directories were installed but not shipped in any package: /usr/lib/libgpsd.so.22.0 /usr/lib/libgps.so.22 /usr/lib/libgpsd.so.22.0.0 /usr/lib/libgpsd.so.22 /usr/lib/libgps.so.22.0.0 /usr/lib/libgps.so /usr/lib/libgps.so.22.0 /usr/lib/libgpsd.so /usr/lib/pkgconfig /usr/lib/pkgconfig/libgpsd.pc /usr/lib/pkgconfig/libgps.pc Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. gpsd: 11 installed and not shipped files. [installed-vs-shipped] WARNING: gpsd-3.14-r0 do_package_qa: QA Issue: /usr/bin/cgps contained in package gps-utils requires libgps.so.22()(64bit), but no providers found in RDEPENDS_gps-utils? [file-rdeps] WARNING: gpsd-3.14-r0 do_package_qa: QA Issue: /usr/sbin/gpsdctl contained in package gpsd requires libgps.so.22()(64bit), but no providers found in RDEPENDS_gpsd? [file-rdeps] WARNING: gpsd-3.14-r0 do_package_qa: QA Issue: /usr/bin/gpsctl contained in package gpsd-gpsctl requires libgps.so.22()(64bit), but no providers found in RDEPENDS_gpsd-gpsctl? [file-rdeps] WARNING: gpsd-3.14-r0 do_package_qa: QA Issue: gpsd-dbg: found library in wrong location: /usr/lib/.debug/libgpsd.so.22.0.0 gpsd-dbg: found library in wrong location: /usr/lib/.debug/libgps.so.22.0.0 [libdir] gpsd SConstruct file defaults to using '/lib' suffix, which needs to be overriden in the recipe. Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 45837e6c567b1b9ff9d152a7e2a752488d313455) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-12-03exo: unbreak Thunar's detailed file viewAndreas Müller
see further details at [1] [1] https://bugzilla.xfce.org/show_bug.cgi?id=12916 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29modemmanager: Fix build with clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit a9ca41110b0dccfa897f0851b259fdb6e8763f00) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libmad: Fix build with clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit f708267ebdefaf122a791cb7671a01a8735e16ca) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29fribidi: Fix build with security flags turned onKhem Raj
Clang complains like below | ../../fribidi-0.19.7/charset/fribidi-char-sets-cap-rtl.c:148:7: error: expected expression | DBG ("warning: could not find a mapping for CapRTL to Unicode:"); Therefore quick fix is to remove FORTIFY_SOURCE from cmdline Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 1c8afeed179495a53e7b782b994e4a1f00f15536) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29flashrom: Remove redundant const qualifierKhem Raj
This is flagged by latest clang Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit eef06e7cbed31dec67692fee36ccffc9e1a8658e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29md5deep: Fix build with clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 856ac210ab223da1adb6e8a30298a10f1d05d61a) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29openldap: Fix Build error due to missing -fPICKhem Raj
Fixes errors e.g. relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol `stderr@@GLIBC_2.17' can not be us ed when making a shared object; recompile with -fPIC Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 5d22f066174e12799c11466dc37b6111a5864118) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libqmi: Fix build with clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit c5fd46f74a5b4f1af67b18493b9de31666e13dcf) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29android-tools: fix do_installKoen Kooi
The previous patch introduced 2 bugs that made packaging fail: 1) Always failing grep 2) Conditionally install systemd files Systemd.bbclass doesn't handle conditional installation and will throw an error. Tested with -native and regular cross builds. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 4cd27df21d21650c8cf5468be36f33d49e4587cf) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29rsnapshot: fix host path in rsnapshot.conf.defaultWenzong Fan
Fix host path for commands: mount, umount: .../tmp/sysroots/x86_64-linux/bin/mount -> /bin/mount .../tmp/sysroots/x86_64-linux/bin/umount -> /bin/umount Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit aea3dbd89ce89309cdda78eec8c283f9a621d193) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfwm4: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfwm4 depends on virtual/libx11 so it requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 671c597a8a21c251a0b87a4a28bfdd5a3e9ffd4f) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfdesktop: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfdesktop depends on gtk+ and libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit e0ead9073bf37c2b8183003c5785afc387079f93) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-settings: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-settings depends on virtual/libx11 so it requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 61b747ebd22008ab21d3d94e11af102a5ebb3c35) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-session: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-session depends on virtual/libx11 so it requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 464e4d4033d093ee4b2feb4d512693b0526dd41c) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-power-manager: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-power-manager depends on virtual/libx11 so it requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 3d15aede4bbf8fa0850a469056ba08ebe8647d1e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-panel: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-panel depends on virtual/libx11 so it requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit f625e13f87e30fb026219b47eaf1ff5218232b6f) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-appfinder: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-appfinder depends on gtk+ and libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 036ce4827deeb17766f88d06959cc7d9960406d7) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29thunar-volman: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
thunar-volman depends on gtk+ and libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit b1f1aeac93f9dad118df2a8f413ddfea4b1f92fd) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29thunar: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
thunar depends on gtk+, libsm and xfce4-panel which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 3fe63ec698a83237fbe826f78f286c44cf2846b9) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libxfce4ui: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
libxfce4ui depends on virtual/libx11 so requires x11 distro feature Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 567a718393df7d8388b5d2705e7968966521f684) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29gtk-xfce-engine: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
gtk-xfce-engine depends on gtk+ which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit d922ce3cde173424992f58da1ad62aa1d93b9f9f) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29garcon: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
garcon depends on libxfce4ui which requires x11 distro feature Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit c07deeb58d587515a1bb77f2d74cb7cc5a2c8ffb) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29exo: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
exo depends on virtual/libx11 and gtk+ so it requires x11 distro feature, but not for native package. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 004dab1b3d482b6d87537b32b3482bc4202223d3) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce-app.bbclass: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
All xfce apps depend on gtk+ or xfce4-panel or libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit db0e4783e2af6599c9c6a0973bc628844dffb5d8) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce-panel-plugin.bbclass: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
The bbclass depends on xfce4-panel and libxfce4ui which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 723e9b71a4e9d43a6b2623d8298d7f452d222ed3) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29thunar-plugin.bbclass: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
thunar depends on gtk+, libsm and xfce4-panel which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 20b398d8780214e5f063287909666f9a79e78768) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29xfce4-pulseaudio-plugin: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
xfce4-pulseaudio-plugin depends on pavucontrol which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit e4ff7d0ac46627c6bedb8bffab25c700490757ca) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29packagegroup-xfce-base: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
Most packages in this packagegroup require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit e0dc483313ae4ad6c8267ff957c72b2ff2df692c) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libxklavier: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
libxklavier depends on gtk+ and libxi which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 9a3c5c2b2e3acc203cdd93e1b658cedaa0bc9095) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libwnck: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
libwnck depends on gtk+ which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 28d767851df6da0b741c33df0e0ed259f680eb20) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29gtksourceview2: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
gtksourceview2 depends on gtk+ which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 0b365d7248935f04831435b2ee9e24cf025c1881) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29gnome-disk-utility: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
gnome-disk-utility depends on virtual/libx11. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit fa62ed89902877ce8b39733e3afabbbbf5e479a3) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29evince: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
evince depends on gtk+3 and gnome-desktop3 which require x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 2d8180ecf5f78fdef11cfea99a7e568a7f69979b) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29dconf: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
dconf depends on gtk+3 which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 6afe63346b36d4ac1fb9b8b68e6d88a4f286a1f6) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libunique: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
libunique depends on gtk+ which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit ba879d436bb19c07cee6021b7566bcb5faadffac) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29pavucontrol: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
pavucontrol depends on gtkmm which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 426734113dc78acd4f21f57746e58430444ae008) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29gtkmm: add x11 to REQUIRED_DISTRO_FEATURESJackie Huang
gtkmm depends on gtk+ which requires x11 distro feature. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 8a9071347373cf68215124ea119e13f5936571b7) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29opencv: checking existence of /usr/libWenzong Fan
Remove install errors: mv: cannot stat '.../tmp/work/mips64-wrs-linux/opencv/3.1+gitAUTOINC +92387b1ef8-r0/image/usr/lib/*': No such file or directory Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit cefba87ff0a5f12cdb377038d67ab8550d500e82) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29libeigen: set tarball name as ${BP}.tar.bz2Wenzong Fan
Rename tarball name: 3.2.8.tar.bz2 -> libeigen-3.2.8.tar.bz2 Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit ba0717b0cf4fd986104a07b131faf6986222420b) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29opencv: fix QA issueWenzong Fan
Replace '/lib' with '${baselib}' to fix QA issue: ERROR: do_package_qa: QA Issue: non -staticdev package contains \ static .a library: opencv-apps path \ '.../opencv-apps/usr/share/OpenCV/3rdparty/lib64/libippicv.a' \ [staticdev] Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit a36efdd02fe4f0702c7b412b1737ef8218089974) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29openjpeg: rename the download fileJackie Huang
Rename the download file to avoid collisions in DL_DIR. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit d0fa502a22424bf057377d15776fb155c1a41b3b) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29apache2: include .load files in modules.dJunxian.Xiao
According to other Linux distributes like Ubuntu, the modules are usually included by 'LoadModule' command in *.load files in mods-enable directory, as *.conf files in this directory are usually used for special configurations for each module. Include *.load in apache2 top conf file to be compatible with customer's normal usage habits. Signed-off-by: Junxian.Xiao <Junxian.Xiao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit b2409021dd8a3cb7eac8c8ff21d99cbfca6c07c2) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2016-11-29asio: fix a musl compilation warningAndré Draszik
This is the same patch as applied to boost's copy of asio in openembedded-core, with slightly massaged paths Signed-off-by: André Draszik <adraszik@tycoint.com> Reviewed-by: Sylvain Lemieux <slemieux@tycoint.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 902a38b9891f5b3358ce5c48ee6b99bddb39d29c) Signed-off-by: Armin Kuster <akuster808@gmail.com>