svn commit: r546151 - head/textproc/uim/files

MANTANI Nobutaka nobutaka at FreeBSD.org
Tue Aug 25 10:32:01 UTC 2020


Author: nobutaka
Date: Tue Aug 25 10:32:00 2020
New Revision: 546151
URL: https://svnweb.freebsd.org/changeset/ports/546151

Log:
  Fix build error with -fno-common (default of Clang 11 and GCC 10).

Added:
  head/textproc/uim/files/patch-sigscheme_libgcroots_include_private_gc_priv.h   (contents, props changed)

Added: head/textproc/uim/files/patch-sigscheme_libgcroots_include_private_gc_priv.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uim/files/patch-sigscheme_libgcroots_include_private_gc_priv.h	Tue Aug 25 10:32:00 2020	(r546151)
@@ -0,0 +1,11 @@
+--- sigscheme/libgcroots/include/private/gc_priv.h.orig	2020-08-25 09:13:47 UTC
++++ sigscheme/libgcroots/include/private/gc_priv.h
+@@ -1979,7 +1979,7 @@ void GC_err_puts(const char *s);
+   /* the signal mask.						*/
+ # define SETJMP(env) sigsetjmp(env, 1)
+ # define LONGJMP(env, val) siglongjmp(env, val)
+-# define JMP_BUF sigjmp_buf
++# define JMP_BUF extern sigjmp_buf
+ #else
+ # ifdef ECOS
+ #   define SETJMP(env)  hal_setjmp(env)


More information about the svn-ports-head mailing list