pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/wasi-libc



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Wed Dec 22 16:09:45 UTC 2021

Modified Files:
        pkgsrc/lang/wasi-libc: Makefile

Log Message:
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@.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/wasi-libc/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/wasi-libc/Makefile
diff -u pkgsrc/lang/wasi-libc/Makefile:1.2 pkgsrc/lang/wasi-libc/Makefile:1.3
--- pkgsrc/lang/wasi-libc/Makefile:1.2  Wed Dec 22 12:47:20 2021
+++ pkgsrc/lang/wasi-libc/Makefile      Wed Dec 22 16:09:45 2021
@@ -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 @@ HOMEPAGE=     https://github.com/WebAssembly
 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