diff options
-rw-r--r-- | lang/otcl/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/otcl/Makefile b/lang/otcl/Makefile index 898a6567f45d..a3553eb61561 100644 --- a/lang/otcl/Makefile +++ b/lang/otcl/Makefile @@ -19,7 +19,6 @@ LICENSE= MIT WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_TK= 82+ -USE_TK_NO_THREADS= yes USE_XORG= xext USE_AUTOTOOLS= autoconf @@ -37,6 +36,10 @@ PORTDOCS= ${DOCS:S/doc\///} CFLAGS+= -DHAVE_UNISTD_H CONFIGURE_ARGS+= --with-tcl-ver=${TCL_VER} --with-tk-ver=${TK_VER} +.if ${USE_TCL} > 85 +CFLAGS+= -DUSE_INTERP_ERRORLINE -DUSE_INTERP_RESULT +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ -e's|X11/Intrinsic.h|X11/Xlib.h|g' \ |