Lines 33-44
post-configure:
Link Here
|
33 |
${ECHO_CMD} "fenv.h" >> ${WRKSRC}/config/system-headers |
33 |
${ECHO_CMD} "fenv.h" >> ${WRKSRC}/config/system-headers |
34 |
${ECHO_CMD} "pthread_np.h" >> ${WRKSRC}/config/system-headers |
34 |
${ECHO_CMD} "pthread_np.h" >> ${WRKSRC}/config/system-headers |
35 |
|
35 |
|
36 |
OPTIONS_DEFINE= DEBUG GCZEAL JEMALLOC METHODJIT OPTIMIZE READLINE \ |
36 |
OPTIONS_DEFINE= DEBUG DTRACE GCZEAL JEMALLOC METHODJIT OPTIMIZE READLINE \ |
37 |
THREADSAFE TRACEJIT UTF8 \ |
37 |
THREADSAFE TRACEJIT UTF8 \ |
38 |
|
38 |
|
39 |
OPTIONS_DEFAULT= METHODJIT OPTIMIZE READLINE THREADSAFE TRACEJIT |
39 |
OPTIONS_DEFAULT= METHODJIT OPTIMIZE READLINE THREADSAFE TRACEJIT |
|
|
40 |
OPTIONS_SUB= yes |
40 |
|
41 |
|
41 |
DEBUG_DESC= Enable Debug build |
42 |
DEBUG_DESC= Enable Debug build |
|
|
43 |
DTRACE_DESC= Build with DTrace probes # move to bsd.options.desc.mk |
42 |
GCZEAL_DESC= Enable Zealous garbage collecting |
44 |
GCZEAL_DESC= Enable Zealous garbage collecting |
43 |
JEMALLOC_DESC= Use jemalloc as memory allocator |
45 |
JEMALLOC_DESC= Use jemalloc as memory allocator |
44 |
METHODJIT_DESC= Enable method JIT support |
46 |
METHODJIT_DESC= Enable method JIT support |
Lines 50-55
UTF8_DESC= Treat strings as UTF8 instead of ISO-8
Link Here
|
50 |
|
52 |
|
51 |
DEBUG_CONFIGURE_ENABLE= debug |
53 |
DEBUG_CONFIGURE_ENABLE= debug |
52 |
DEBUG_CONFIGURE_ON= --enable-debug-sumbols |
54 |
DEBUG_CONFIGURE_ON= --enable-debug-sumbols |
|
|
55 |
DTRACE_CONFIGURE_ENABLE= dtrace profiling |
56 |
DTRACE_MAKE_ENV_OFF= DIST_INSTALL=1 |
57 |
DTRACE_LIBS= -lelf |
53 |
GCZEAL_CONFIGURE_ENABLE= gczeal |
58 |
GCZEAL_CONFIGURE_ENABLE= gczeal |
54 |
JEMALLOC_CONFIGURE_ENABLE= jemalloc |
59 |
JEMALLOC_CONFIGURE_ENABLE= jemalloc |
55 |
METHODJIT_CONFIGURE_ENABLE= methodjit |
60 |
METHODJIT_CONFIGURE_ENABLE= methodjit |
Lines 106-111
PLIST_SUB+= SPARC=""
Link Here
|
106 |
PLIST_SUB+= SPARC="@comment " |
111 |
PLIST_SUB+= SPARC="@comment " |
107 |
.endif |
112 |
.endif |
108 |
|
113 |
|
|
|
114 |
.if ${PORT_OPTIONS:MDTRACE} |
115 |
. if ${OSVERSION} < 1000510 |
116 |
BROKEN= dtrace -G crashes with C++ object files |
117 |
. endif |
118 |
STRIP_CMD= ${TRUE} |
119 |
.endif |
120 |
|
109 |
pre-configure: |
121 |
pre-configure: |
110 |
(cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) |
122 |
(cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) |
111 |
|
123 |
|