mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
atomic_reference.c:108:53: error: incompatible integer to pointer conversion passing 'VALUE' (aka 'unsigned long') to parameter of type 'void *' [-Wint-conversion] if (__sync_bool_compare_and_swap(&DATA_PTR(self), expect_value, new_value)) { ^~~~~~~~~~~~ atomic_reference.c:108:67: error: incompatible integer to pointer conversion passing 'VALUE' (aka 'unsigned long') to parameter of type 'void *' [-Wint-conversion] if (__sync_bool_compare_and_swap(&DATA_PTR(self), expect_value, new_value)) { ^~~~~~~~~ 2 errors generated.
17 lines
426 B
Makefile
17 lines
426 B
Makefile
PORTNAME= concurrent-ruby-ext
|
|
PORTVERSION= 1.2.2
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= C extensions to optimize the concurrent-ruby
|
|
WWW= https://github.com/ruby-concurrency/concurrent-ruby
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= rubygem-concurrent-ruby>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-concurrent-ruby
|
|
|
|
USES= gem
|
|
|
|
.include <bsd.port.mk>
|