Sun Feb 14 15:27:51 2021 UTC ()
devel/ruby-eventmachine: fix build problem with Ruby 3.0

Change USE_LANGUAGES to contain c++11 instead of c++03 since
std::nullptr_t requires c++11.


(taca)
diff -r1.26 -r1.27 pkgsrc/devel/ruby-eventmachine/Makefile

cvs diff -r1.26 -r1.27 pkgsrc/devel/ruby-eventmachine/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/ruby-eventmachine/Makefile 2020/01/18 21:49:15 1.26
+++ pkgsrc/devel/ruby-eventmachine/Makefile 2021/02/14 15:27:51 1.27
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.26 2020/01/18 21:49:15 jperkin Exp $ 1# $NetBSD: Makefile,v 1.27 2021/02/14 15:27:51 taca Exp $
2 2
3DISTNAME= eventmachine-1.2.7 3DISTNAME= eventmachine-1.2.7
4PKGREVISION= 1 4PKGREVISION= 1
5CATEGORIES= devel 5CATEGORIES= devel
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= http://rubyeventmachine.com/ 8HOMEPAGE= http://rubyeventmachine.com/
9COMMENT= Ruby event-driven I/O using the Reactor pattern 9COMMENT= Ruby event-driven I/O using the Reactor pattern
10LICENSE= ruby-license 10LICENSE= ruby-license
11 11
12USE_LANGUAGES= c c++03 12USE_LANGUAGES= c c++11
13 13
14.include "../../lang/ruby/gem.mk" 14.include "../../lang/ruby/gem.mk"
15.include "../../security/openssl/buildlink3.mk" 15.include "../../security/openssl/buildlink3.mk"
16.include "../../mk/bsd.pkg.mk" 16.include "../../mk/bsd.pkg.mk"