graphics/dspdfviewer: Remove OSVERSION conditionals

Minimum supported OSVERSION is 120400 by the port infrastructure so no
need for additional conditions.

Approved by:	portmgr (blanket)
This commit is contained in:
Muhammad Moinur Rahman 2023-09-29 21:34:42 +02:00
parent 6381061b9b
commit 0b4782163a

View file

@ -51,7 +51,7 @@ CFLAGS+= -Wno-error=extra-semi-stmt
.endif
# Fixes build failure for Clang 11.0.0
.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1300111 || ${OSVERSION} >= 1204000) && ${CHOSEN_COMPILER_TYPE} == clang
.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == clang
CFLAGS+= -Wno-error=suggest-destructor-override
CFLAGS+= -Wno-error=suggest-override
.endif