diff options
author | gahr <gahr@FreeBSD.org> | 2013-09-19 17:49:52 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-09-19 17:49:52 +0800 |
commit | 75e5cf4138fe825c23d7e00c325295e4e7974119 (patch) | |
tree | c4559c1a0e4f6c9d0100ce186a8e4e8dc55266df /Mk/bsd.wx.mk | |
parent | 6f047d4a45935ad7d2d706682d96ffe3ee7fe73c (diff) | |
download | freebsd-ports-graphics-75e5cf4138fe825c23d7e00c325295e4e7974119.tar.gz freebsd-ports-graphics-75e5cf4138fe825c23d7e00c325295e4e7974119.tar.zst freebsd-ports-graphics-75e5cf4138fe825c23d7e00c325295e4e7974119.zip |
- Implement USES+=tcl and USES+=tk
- Use bsd.default-versions.mk to specify the default Tcl/Tk version (8.6)
- Add warnings about the now deprecated use of USE_TCL, USE_TK, ...
Notes:
* USES+=tcl and USES+=tk take the following optional arguments
- either a version in the form of XY or XY+, or 'wrapper' to depend on
lang/tcl-wrapper or x11-toolkits/tk-wrapper
- either 'build' (bring in build depend) or 'run' (bring in run depend)
* it is an error to specify both 'tcl' and 'tk' in USES.
* The functionality currently implemented via INVALID_TCL_VER and
INVALID_TK_VER is not yet available.
Approved by: bapt (portmgr)
Diffstat (limited to 'Mk/bsd.wx.mk')
-rw-r--r-- | Mk/bsd.wx.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.wx.mk b/Mk/bsd.wx.mk index 738dd354872..ac72b4bc428 100644 --- a/Mk/bsd.wx.mk +++ b/Mk/bsd.wx.mk @@ -241,7 +241,7 @@ _WX_WANT_UNICODE= yes # These variables are reprocessed later so they won't affect other parts. -. if defined(WX_UNICODE) || defined(_WX_WANT_UNICODE) +. if defined(WX_UNICODE) || defined(_WX_WANT_UNICODE) || ${_WANT_WX} == "2.9" _WX_VER_FINAL= ${_WX_VERS_UC_ALL} _WX_UC= u _WX_UCL= -unicode |