View | Details | Raw Unified | Return to bug 116891
Collapse All | Expand All

(-)bsd.wx.mk (-4 / +2 lines)
Lines 204-210 Link Here
204
# Check if the user/port wants Unicode.
204
# Check if the user/port wants Unicode.
205
#
205
#
206
206
207
.if ${OSVERSION} >= 500000 && (!defined(WITHOUT_UNICODE) && \
207
.if (!defined(WITHOUT_UNICODE) && \
208
    (defined(WITH_UNICODE) || defined(WANT_UNICODE)))
208
    (defined(WITH_UNICODE) || defined(WANT_UNICODE)))
209
_WX_UC_AVAILABLE=			yes
209
_WX_UC_AVAILABLE=			yes
210
.else
210
.else
Lines 441-449 Link Here
441
# Requested by the port (mandatory).
441
# Requested by the port (mandatory).
442
442
443
.if defined(WX_UNICODE)
443
.if defined(WX_UNICODE)
444
.	if ${OSVERSION} < 500000
444
.	if empty(_WX_VER_UC)
445
IGNORE?=				requires FreeBSD versions >= 5.X (because of Unicode)
446
.	elif empty(_WX_VER_UC)
447
IGNORE?=				selected a wxWidgets version which does not support Unicode: ${_WX_VER_MERGED}
445
IGNORE?=				selected a wxWidgets version which does not support Unicode: ${_WX_VER_MERGED}
448
.	endif
446
.	endif
449
.endif
447
.endif

Return to bug 116891