diff options
author | Denys Dmytriyenko <denys@ti.com> | 2015-08-25 10:38:13 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-31 20:49:35 +0200 |
commit | 069e4d7067e21227ed7e5b7060f43db69bd9339d (patch) | |
tree | cacd8db4bdf21783326d68e3d83fee944b96964b | |
parent | 06e1f5b92e4126dda4f549f9ad78455a223d9af2 (diff) | |
download | meta-qt5-069e4d7067e21227ed7e5b7060f43db69bd9339d.tar.gz |
qtbase: update patch that increases configured path length for nativesdk
With 5.5, the array of paths got split into at least 3 separate variables,
but only one of them was increased. Similarly, increase the other 2.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase/0006-configure-bump-path-length-from-256-to-512-character.patch | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/recipes-qt/qt5/qtbase/0006-configure-bump-path-length-from-256-to-512-character.patch b/recipes-qt/qt5/qtbase/0006-configure-bump-path-length-from-256-to-512-character.patch index 91b13534..8f95480c 100644 --- a/recipes-qt/qt5/qtbase/0006-configure-bump-path-length-from-256-to-512-character.patch +++ b/recipes-qt/qt5/qtbase/0006-configure-bump-path-length-from-256-to-512-character.patch | |||
@@ -1,29 +1,36 @@ | |||
1 | From fc3819b1f69278e9d66095d1faf33ae0e5a70eb6 Mon Sep 17 00:00:00 2001 | 1 | From fe6405c5a628c168e42138ac82ba70bb8c909d0b Mon Sep 17 00:00:00 2001 |
2 | From: Denys Dmytriyenko <denys@ti.com> | 2 | From: Denys Dmytriyenko <denys@ti.com> |
3 | Date: Mon, 11 Nov 2013 20:27:30 -0500 | 3 | Date: Tue, 25 Aug 2015 10:05:15 -0400 |
4 | Subject: [PATCH 06/10] configure: bump path length from 256 to 512 characters | 4 | Subject: [PATCH] configure: bump path length from 256 to 512 characters |
5 | 5 | ||
6 | Increase the path length that gets hardcoded into generated config.cpp file | 6 | Increase the path length that gets hardcoded into generated config.cpp file |
7 | from 256 to 512 characters, as nativesdk path can be quite long. | 7 | from 256 to 512 characters, as nativesdk path can be quite long. |
8 | 8 | ||
9 | Also update length of EXT_PREFIX and HOST_PREFIX now. | ||
10 | |||
9 | Signed-off-by: Denys Dmytriyenko <denys@ti.com> | 11 | Signed-off-by: Denys Dmytriyenko <denys@ti.com> |
10 | --- | 12 | --- |
11 | configure | 2 +- | 13 | configure | 6 +++--- |
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | 14 | 1 file changed, 3 insertions(+), 3 deletions(-) |
13 | 15 | ||
14 | diff --git a/configure b/configure | 16 | diff --git a/configure b/configure |
15 | index 548dd0d..b8f1fb9 100755 | 17 | index 22867a7..fe18487 100755 |
16 | --- a/configure | 18 | --- a/configure |
17 | +++ b/configure | 19 | +++ b/configure |
18 | @@ -3850,7 +3850,7 @@ static const char qt_configure_licensed_products_str [256 + 12] = "qt_lcnsprod=$ | 20 | @@ -3851,10 +3851,10 @@ static const char qt_configure_licensed_products_str [256 + 12] = "qt_lcnsprod=$ |
19 | static const char qt_configure_installation [12+11] = "qt_instdate=2012-12-20"; | 21 | static const char qt_configure_installation [12+11] = "qt_instdate=2012-12-20"; |
20 | 22 | ||
21 | /* Installation Info */ | 23 | /* Installation Info */ |
22 | -static const char qt_configure_prefix_path_str [256 + 12] = "qt_prfxpath=$QT_INSTALL_PREFIX"; | 24 | -static const char qt_configure_prefix_path_str [256 + 12] = "qt_prfxpath=$QT_INSTALL_PREFIX"; |
23 | +static const char qt_configure_prefix_path_str [512 + 12] = "qt_prfxpath=$QT_INSTALL_PREFIX"; | 25 | +static const char qt_configure_prefix_path_str [512 + 12] = "qt_prfxpath=$QT_INSTALL_PREFIX"; |
24 | #ifdef QT_BUILD_QMAKE | 26 | #ifdef QT_BUILD_QMAKE |
25 | static const char qt_configure_ext_prefix_path_str [256 + 12] = "qt_epfxpath=$QT_EXT_PREFIX"; | 27 | -static const char qt_configure_ext_prefix_path_str [256 + 12] = "qt_epfxpath=$QT_EXT_PREFIX"; |
26 | static const char qt_configure_host_prefix_path_str [256 + 12] = "qt_hpfxpath=$QT_HOST_PREFIX"; | 28 | -static const char qt_configure_host_prefix_path_str [256 + 12] = "qt_hpfxpath=$QT_HOST_PREFIX"; |
29 | +static const char qt_configure_ext_prefix_path_str [512 + 12] = "qt_epfxpath=$QT_EXT_PREFIX"; | ||
30 | +static const char qt_configure_host_prefix_path_str [512 + 12] = "qt_hpfxpath=$QT_HOST_PREFIX"; | ||
31 | #endif | ||
32 | |||
33 | static const short qt_configure_str_offsets[] = { | ||
27 | -- | 34 | -- |
28 | 2.5.0 | 35 | 2.2.0 |
29 | 36 | ||