Lines 45-53
Link Here
|
45 |
RUBY_NO_BUILD_DEPENDS= yes |
45 |
RUBY_NO_BUILD_DEPENDS= yes |
46 |
RUBY_NO_RUN_DEPENDS= yes |
46 |
RUBY_NO_RUN_DEPENDS= yes |
47 |
|
47 |
|
48 |
NOT_FOR_ARCHS= ia64 |
|
|
49 |
NOT_FOR_ARCHS_REASON_ia64= does not build |
50 |
|
51 |
OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC |
48 |
OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC |
52 |
OPTIONS_DEFAULT= RDOC LIBEDIT |
49 |
OPTIONS_DEFAULT= RDOC LIBEDIT |
53 |
OPTIONS_SINGLE= EDIT |
50 |
OPTIONS_SINGLE= EDIT |
Lines 87-93
Link Here
|
87 |
.endif |
84 |
.endif |
88 |
|
85 |
|
89 |
.if ${OPSYS} == "FreeBSD" |
86 |
.if ${OPSYS} == "FreeBSD" |
90 |
.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == "amd64" || ${ARCH} == "i386") |
87 |
.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == amd64 || ${ARCH} == i386) |
91 |
CONFIGURE_ARGS+=--enable-dtrace |
88 |
CONFIGURE_ARGS+=--enable-dtrace |
92 |
.else |
89 |
.else |
93 |
CONFIGURE_ARGS+=--disable-dtrace |
90 |
CONFIGURE_ARGS+=--disable-dtrace |
Lines 95-109
Link Here
|
95 |
.endif |
92 |
.endif |
96 |
|
93 |
|
97 |
# keep in sync with all platforms where libunwind is available |
94 |
# keep in sync with all platforms where libunwind is available |
98 |
.if (${ARCH} == "amd64" || ${ARCH} == "i386") |
95 |
.if (${ARCH} == amd64 || ${ARCH} == i386) |
99 |
LIB_DEPENDS+= libunwind.so:devel/libunwind |
96 |
LIB_DEPENDS+= libunwind.so:devel/libunwind |
100 |
.endif |
97 |
.endif |
101 |
|
98 |
|
102 |
.if (${ARCH} == "powerpc64" || ${ARCH} == "powerpc") |
99 |
.if (${ARCH} == powerpc || ${ARCH} == powerpc64) |
103 |
USE_GCC= yes |
100 |
USE_GCC= yes |
104 |
.endif |
101 |
.endif |
105 |
|
102 |
|
106 |
.if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" |
103 |
.if ${ARCH} == armv6 || ${ARCH} == armv7 |
107 |
CONFIGURE_ARGS+=--with-setjmp-type=_setjmp |
104 |
CONFIGURE_ARGS+=--with-setjmp-type=_setjmp |
108 |
CONFIGURE_ENV+= ac_cv_func__setjmp=yes |
105 |
CONFIGURE_ENV+= ac_cv_func__setjmp=yes |
109 |
.endif |
106 |
.endif |
110 |
|
107 |
|