Hi, >>>>> On Tue, 28 Jun 2016 22:13:44 -0400 >>>>> Steve Wills <swi...@freebsd.org> said:
Kazuhiko> Is there still broken lang/ruby23[1]. Or can build in latest Kazuhiko> 11.0-* ? Kazuhiko> [1] http://permalink.gmane.org/gmane.os.freebsd.devel.pkg-fallout/294364 swills> Yes, I haven't looked at it yet, but if you want to take a look, I'd swills> welcome patches. Could you put the attached two patches into lang/ruby23/files and give it a try?
--- ccan/list/list.h.orig 2015-09-06 07:10:54 UTC +++ ccan/list/list.h @@ -57,7 +57,7 @@ struct list_head * Example: * static struct list_head my_list = LIST_HEAD_INIT(my_list); */ -#define LIST_HEAD_INIT(name) { { &name.n, &name.n } } +#define CCAN_LIST_HEAD_INIT(name) { { &name.n, &name.n } } /** * LIST_HEAD - define and initialize an empty list_head @@ -72,8 +72,8 @@ struct list_head * Example: * static LIST_HEAD(my_global_list); */ -#define LIST_HEAD(name) \ - struct list_head name = LIST_HEAD_INIT(name) +#define CCAN_LIST_HEAD(name) \ + struct list_head name = CCAN_LIST_HEAD_INIT(name) /** * list_head_init - initialize a list_head
--- thread_pthread.c.orig 2016-04-15 16:07:07 UTC +++ thread_pthread.c @@ -1154,7 +1154,7 @@ native_sleep(rb_thread_t *th, struct tim } #ifdef USE_UBF_LIST -static LIST_HEAD(ubf_list_head); +static CCAN_LIST_HEAD(ubf_list_head); /* The thread 'th' is registered to be trying unblock. */ static void
-- Hajimu UMEMOTO u...@mahoroba.org u...@freebsd.org http://www.mahoroba.org/~ume/
_______________________________________________ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"