View | Details | Raw Unified | Return to bug 203156
Collapse All | Expand All

(-)lang/rubinius/Makefile (+1 lines)
Lines 18-23 Link Here
18
		${LOCALBASE}/bin/llvm-config35:${PORTSDIR}/devel/llvm35 \
18
		${LOCALBASE}/bin/llvm-config35:${PORTSDIR}/devel/llvm35 \
19
		${LOCALBASE}/bin/bison:${PORTSDIR}/devel/bison
19
		${LOCALBASE}/bin/bison:${PORTSDIR}/devel/bison
20
20
21
CFLAGS+=	-I${PREFIX}/include
21
HAS_CONFIGURE=	yes
22
HAS_CONFIGURE=	yes
22
CONFIGURE_ARGS=	-P "${PREFIX}" \
23
CONFIGURE_ARGS=	-P "${PREFIX}" \
23
		-I "${PREFIX}/include/rubinius" \
24
		-I "${PREFIX}/include/rubinius" \
(-)lang/rubinius/files/patch-vm_oop.hpp (+11 lines)
Line 0 Link Here
1
--- vm/oop.hpp.orig	2015-01-27 01:16:13.000000000 +0100
2
+++ vm/oop.hpp	2015-09-09 22:53:10.941823000 +0200
3
@@ -610,7 +610,7 @@ Object* const cUndef = reinterpret_cast<
4
     }
5
 
6
     void validate() const {
7
-      assert(this && (!reference_p() || (type_id() > InvalidType && type_id() < LastObjectType)));
8
+      assert(!reference_p() || (type_id() > InvalidType && type_id() < LastObjectType));
9
     }
10
 
11
     friend class TypeInfo;

Return to bug 203156