diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2022-08-17 19:12:55 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2022-08-17 19:14:52 +0000 |
commit | fc3fe5b9986b630e9d46f132c6dea611f547f97c (patch) | |
tree | 981994a2d588e58c4c97ef2d64686c79a89dfc70 | |
parent | 99ca3e78bc689655559aac7592029c24e370dc2a (diff) | |
download | ports-fc3fe5b9986b630e9d46f132c6dea611f547f97c.tar.gz ports-fc3fe5b9986b630e9d46f132c6dea611f547f97c.zip |
x11/tilix: disable SSP unsupported by lang/ldc
meson.build:1:0: ERROR: Unable to detect linker for compiler `ldc2 -L=--version /tmp/tmpo84ihqx4.d -fstack-protector-strong`
stdout:
stderr: ldc2: Unknown command line argument '-fstack-protector-strong'. Try: 'ldc2 --help'
ldc2: Did you mean '--stack-symbol-ordering'?
PR: 264776
Reported by: antoine (via exp-run)
Regressed by: https://github.com/mesonbuild/meson/commit/235c78682e82
-rw-r--r-- | x11/tilix/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/x11/tilix/Makefile b/x11/tilix/Makefile index a8679d530d2c..3f78b9580840 100644 --- a/x11/tilix/Makefile +++ b/x11/tilix/Makefile @@ -21,6 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= gnunn1 USE_GNOME= cairo gdkpixbuf2 librsvg2 vte3 USE_XORG= x11 +SSP_UNSAFE= yes GLIB_SCHEMAS= com.gexperts.Tilix.gschema.xml SHEBANG_FILES= data/scripts/tilix_int.sh |