The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / qt5 / qt5webkit-examples / 0001-build.patch
1 This patch improves the qt5webkit examples build for 2 aspects:
2
3 # Allows to build even if qt5base examples are not enabled
4 # Builds xmlpatterns example only if the qt5xmlpattern package has been built
5
6 Signed-off-by: Massimo Callegari <massimocallegari@yahoo.it>
7
8 Index: b/examples/webkitwidgets/webkitwidgets.pro
9 ===================================================================
10 --- /dev/null
11 +++ b/examples/webkitwidgets/webkitwidgets.pro
12 @@ -8,5 +8,6 @@
13              framecapture \
14              browser \
15              embedded \
16 -            scroller \
17 -            xmlpatterns
18 +            scroller
19 +
20 +qtHaveModule(xmlpatterns): SUBDIRS += xmlpatterns
21 Index: b/qtwebkit-examples.pro
22 ===================================================================
23 --- /dev/null
24 +++ b/qtwebkit-examples.pro
25 @@ -3,3 +3,4 @@
26  load(qt_parts)
27  
28  SUBDIRS += doc
29 +SUBDIRS += examples
30