diff options
author | alepulver <alepulver@FreeBSD.org> | 2007-10-19 10:21:14 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2007-10-19 10:21:14 +0800 |
commit | c56884dff15e9bedf7f56a42f3041afd631fbaf4 (patch) | |
tree | 245deeb48981a7048df09db2c7d8e3c1fe67a984 /Mk/bsd.wx.mk | |
parent | 4a08447cf89fa0bbbd04b7295bb5e3462c17a93c (diff) | |
download | freebsd-ports-gnome-c56884dff15e9bedf7f56a42f3041afd631fbaf4.tar.gz freebsd-ports-gnome-c56884dff15e9bedf7f56a42f3041afd631fbaf4.tar.zst freebsd-ports-gnome-c56884dff15e9bedf7f56a42f3041afd631fbaf4.zip |
- Remove Unicode checks for FreeBSD < 5.x (unsupported).
PR: ports/116891
Submitted by: edwin
Diffstat (limited to 'Mk/bsd.wx.mk')
-rw-r--r-- | Mk/bsd.wx.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Mk/bsd.wx.mk b/Mk/bsd.wx.mk index c88e3cda359c..c2d799c8e63d 100644 --- a/Mk/bsd.wx.mk +++ b/Mk/bsd.wx.mk @@ -204,7 +204,7 @@ _WX_DEPTYPE_${comp}_${ver}= lib # Check if the user/port wants Unicode. # -.if ${OSVERSION} >= 500000 && (!defined(WITHOUT_UNICODE) && \ +.if (!defined(WITHOUT_UNICODE) && \ (defined(WITH_UNICODE) || defined(WANT_UNICODE))) _WX_UC_AVAILABLE= yes .else @@ -441,9 +441,7 @@ WX_UNICODE= yes # Requested by the port (mandatory). .if defined(WX_UNICODE) -. if ${OSVERSION} < 500000 -IGNORE?= requires FreeBSD versions >= 5.X (because of Unicode) -. elif empty(_WX_VER_UC) +. if empty(_WX_VER_UC) IGNORE?= selected a wxWidgets version which does not support Unicode: ${_WX_VER_MERGED} . endif .endif |