diff options
-rw-r--r-- | meta/recipes-support/nss/nss.inc | 1 | ||||
-rw-r--r-- | meta/recipes-support/nss/nss/nss-fix-nsinstall-build.patch | 35 | ||||
-rw-r--r-- | meta/recipes-support/nss/nss_3.17.2.bb | 8 | ||||
-rw-r--r-- | meta/recipes-support/nss/nss_3.17.3.bb | 7 |
4 files changed, 43 insertions, 8 deletions
diff --git a/meta/recipes-support/nss/nss.inc b/meta/recipes-support/nss/nss.inc index e5e30961cc..6330f4e0a1 100644 --- a/meta/recipes-support/nss/nss.inc +++ b/meta/recipes-support/nss/nss.inc | |||
@@ -16,6 +16,7 @@ SRC_URI = "\ | |||
16 | file://nss-fix-support-cross-compiling.patch \ | 16 | file://nss-fix-support-cross-compiling.patch \ |
17 | file://nss-no-rpath-for-cross-compiling.patch \ | 17 | file://nss-no-rpath-for-cross-compiling.patch \ |
18 | file://nss-fix-incorrect-shebang-of-perl.patch \ | 18 | file://nss-fix-incorrect-shebang-of-perl.patch \ |
19 | file://nss-fix-nsinstall-build.patch \ | ||
19 | " | 20 | " |
20 | SRC_URI_append = "\ | 21 | SRC_URI_append = "\ |
21 | file://nss.pc.in \ | 22 | file://nss.pc.in \ |
diff --git a/meta/recipes-support/nss/nss/nss-fix-nsinstall-build.patch b/meta/recipes-support/nss/nss/nss-fix-nsinstall-build.patch new file mode 100644 index 0000000000..866de07ea8 --- /dev/null +++ b/meta/recipes-support/nss/nss/nss-fix-nsinstall-build.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | Fix nss multilib build on openSUSE 11.x 32bit | ||
2 | |||
3 | While building lib64-nss on openSUSE 11.x 32bit, the nsinstall will | ||
4 | fail with error: | ||
5 | |||
6 | * nsinstall.c:1:0: sorry, unimplemented: 64-bit mode not compiled | ||
7 | |||
8 | It caused by the '-m64' option which passed to host gcc. | ||
9 | |||
10 | The nsinstall was built first while nss starting to build, it only runs | ||
11 | on host to install built files, it doesn't need any cross-compling or | ||
12 | multilib build options. Just clean the ARCHFLAG and LDFLAGS to fix this | ||
13 | error. | ||
14 | |||
15 | Upstream-Status: Pending | ||
16 | |||
17 | Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> | ||
18 | =================================================== | ||
19 | diff --git a/nss/coreconf/nsinstall/Makefile b/nss/coreconf/nsinstall/Makefile | ||
20 | index 1850bcb..5aee84f 100644 | ||
21 | --- a/nss/coreconf/nsinstall/Makefile | ||
22 | +++ b/nss/coreconf/nsinstall/Makefile | ||
23 | @@ -18,6 +18,12 @@ INTERNAL_TOOLS = 1 | ||
24 | |||
25 | include $(DEPTH)/coreconf/config.mk | ||
26 | |||
27 | +# nsinstall is unfit for cross-compiling/multilib-build since it was | ||
28 | +# always run on local host to install built files. This change intends | ||
29 | +# to clean the '-m64' from ARCHFLAG and LDFLAGS. | ||
30 | +ARCHFLAG = | ||
31 | +LDFLAGS = | ||
32 | + | ||
33 | ifeq (,$(filter-out OS2 WIN%,$(OS_TARGET))) | ||
34 | PROGRAM = | ||
35 | else | ||
diff --git a/meta/recipes-support/nss/nss_3.17.2.bb b/meta/recipes-support/nss/nss_3.17.2.bb deleted file mode 100644 index 039406f9f5..0000000000 --- a/meta/recipes-support/nss/nss_3.17.2.bb +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | require nss.inc | ||
2 | |||
3 | SRC_URI += "\ | ||
4 | http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_17_2_RTM/src/${BPN}-${PV}.tar.gz \ | ||
5 | " | ||
6 | |||
7 | SRC_URI[md5sum] = "d3edb6f6c3688b2fde67ec9c9a8c1214" | ||
8 | SRC_URI[sha256sum] = "134929e44e44b968a4883f4ee513a71ae45d55b486cee41ee8e26c3cc84dab8b" | ||
diff --git a/meta/recipes-support/nss/nss_3.17.3.bb b/meta/recipes-support/nss/nss_3.17.3.bb new file mode 100644 index 0000000000..e7d0780fb8 --- /dev/null +++ b/meta/recipes-support/nss/nss_3.17.3.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require nss.inc | ||
2 | |||
3 | SRC_URI += "\ | ||
4 | http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_17_3_RTM/src/${BP}.tar.gz \ | ||
5 | " | ||
6 | SRC_URI[md5sum] = "fba7489e1b26f2a0bfe5527430fd61e1" | ||
7 | SRC_URI[sha256sum] = "f4d5e9035a2f84f25f35c283de3b0ff60d72e918748de25eaf017ed201fa21d5" | ||