diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2021-01-18 08:34:43 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2021-01-18 08:34:43 +0000 |
commit | e2517bdb0319352477ec0937c3ec8555d60c0ea0 (patch) | |
tree | 476a20568ea221d818bddaa7bc5d248170a243a3 /x11-toolkits/swt/files/patch-build.sh | |
parent | Document CVE-2020-25074 and CVE-2020-15275 for www/moinmoin (diff) |
x11-toolkits/swt:
- Remove excessive patching, which also broke loading of swt libraries.
- Add temporary patch to fix crash, when swt tries to load *.css files which
are not shipped with the tarball.
Reported by: Robin Dapp via email
Notes
Notes:
svn path=/head/; revision=561902
Diffstat (limited to 'x11-toolkits/swt/files/patch-build.sh')
-rw-r--r-- | x11-toolkits/swt/files/patch-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/swt/files/patch-build.sh b/x11-toolkits/swt/files/patch-build.sh index c3903c2515ff..9536139667d3 100644 --- a/x11-toolkits/swt/files/patch-build.sh +++ b/x11-toolkits/swt/files/patch-build.sh @@ -67,7 +67,7 @@ # For 64-bit CPUs, we have a switch -if [ ${MODEL} = 'x86_64' -o ${MODEL} = 'ia64' -o ${MODEL} = 's390x' -o ${MODEL} = 'ppc64le' -o ${MODEL} = 'aarch64' ]; then -+if [ ${MODEL} = 'x86_64' -o ${MODEL} = 'ia64' -o ${MODEL} = 's390x' -o ${MODEL} = 'powerpc64' -o ${MODEL} = 'powerpc64le' -o ${MODEL} = 'ppc64le' -o ${MODEL} = 'aarch64' ]; then ++if [ ${MODEL} = 'x86_64' -o ${MODEL} = 'amd64' -o ${MODEL} = 's390x' -o ${MODEL} = 'powerpc64' -o ${MODEL} = 'powerpc64le' -o ${MODEL} = 'ppc64le' -o ${MODEL} = 'aarch64' ]; then SWT_PTR_CFLAGS=-DJNI64 if [ -d /lib64 ]; then - XLIB64=-L/usr/X11R6/lib64 |