pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/wasi-libc wasi-libc: Disable SSP explicitly and d...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e64b82ef206c
branches:  trunk
changeset: 771688:e64b82ef206c
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Dec 22 16:09:45 2021 +0000

description:
wasi-libc: Disable SSP explicitly and disable stack check too

Fix build when PKGSRC_USE_SSP=all and PKGSRC_USE_STACK_CHECK=yes
are defined. Reported by wiz@.

diffstat:

 lang/wasi-libc/Makefile |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 46e03ae6d29a -r e64b82ef206c lang/wasi-libc/Makefile
--- a/lang/wasi-libc/Makefile   Wed Dec 22 16:07:37 2021 +0000
+++ b/lang/wasi-libc/Makefile   Wed Dec 22 16:09:45 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2021/12/22 12:47:20 tnn Exp $
+# $NetBSD: Makefile,v 1.3 2021/12/22 16:09:45 ryoon Exp $
 
 GITHUB_PROJECT=        wasi-libc
 GITHUB_TAG=    ad5133410f66b93a2381db5b542aad5e0964db96
@@ -13,8 +13,9 @@
 COMMENT=       libc for WebAssembly programs built on top of WASI
 LICENSE=       mit AND apache-2.0 # apache-2.0-with-LLVM-exception
 
-# Do not fail tests
-PKGSRC_USE_SSP=                no
+# Do not fail tests and compile time error (undefined symbols) in www/firefox.
+SSP_SUPPORTED=         no
+PKGSRC_USE_STACK_CHECK=        no
 
 .include "../../mk/bsd.prefs.mk"
 .if ${OPSYS} == "NetBSD"



Home | Main Index | Thread Index | Old Index