diff options
Diffstat (limited to 'devel/tclreadline/Makefile')
-rw-r--r-- | devel/tclreadline/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/tclreadline/Makefile b/devel/tclreadline/Makefile index 0181694e9ee4..6b150e3c1d06 100644 --- a/devel/tclreadline/Makefile +++ b/devel/tclreadline/Makefile @@ -18,21 +18,21 @@ MANN= tclreadline.n .include <bsd.port.pre.mk> -.if (!defined(USE_TCL80) && !defined(USE_TCL82)) +.if (!defined(WITH_TCL80) && !defined(WITH_TCL82)) .if exists(${PREFIX}/bin/tclsh8.0) -USE_TCL80= YES +WITH_TCL80= yes .else -USE_TCL82= YES +WITH_TCL82= yes .endif .endif -.if defined(USE_TCL80) +.if defined(WITH_TCL80) LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80 CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.0 --with-tcl-includes=${PREFIX}/include/tcl8.0 TCLVERMSG= "Building for Tcl 8.0" .endif -.if defined(USE_TCL82) +.if defined(WITH_TCL82) LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.2 --with-tcl-includes=${PREFIX}/include/tcl8.2 TCLVERMSG= "Building for Tcl 8.2" @@ -40,7 +40,7 @@ TCLVERMSG= "Building for Tcl 8.2" pre-fetch: @${ECHO} ${TCLVERMSG} - @${ECHO} "Define USE_TCL80, or USE_TCL82" + @${ECHO} "Define WITH_TCL80, or WITH_TCL82" @${ECHO} "To compile against a different version of TCL" .include <bsd.port.post.mk> |