diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-04-03 19:26:48 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-04-03 19:26:48 +0800 |
commit | 0438143249634ab5028e53cb468d99a894c62995 (patch) | |
tree | 204c01c7973e83331fc29d8b09e59b3e9f219bd6 /comms | |
parent | 68f48ea6c2e03359333e7b211625e51e06aa2026 (diff) | |
download | freebsd-ports-gnome-0438143249634ab5028e53cb468d99a894c62995.tar.gz freebsd-ports-gnome-0438143249634ab5028e53cb468d99a894c62995.tar.zst freebsd-ports-gnome-0438143249634ab5028e53cb468d99a894c62995.zip |
Remove OSVERSION checks that do not make sense any more.
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).
Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.
Differential Revision: https://reviews.freebsd.org/D2209
Diffstat (limited to 'comms')
-rw-r--r-- | comms/linrad/Makefile | 2 | ||||
-rw-r--r-- | comms/usrp/Makefile | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/comms/linrad/Makefile b/comms/linrad/Makefile index eddacc43abfc..7607cb28c5fa 100644 --- a/comms/linrad/Makefile +++ b/comms/linrad/Makefile @@ -55,10 +55,8 @@ post-patch: ${WRKSRC}/libfind1.c # NOTE: The code that actually does anything in users.c is currently # #ifdef'd out because it's just a non-working example -.if ${OSVERSION} >= 800000 @${REINPLACE_CMD} -e "s|ttyd|ttyu|" \ ${WRKSRC}/lxsys.c -.endif do-install: ${MKDIR} ${STAGEDIR}${DATADIR} diff --git a/comms/usrp/Makefile b/comms/usrp/Makefile index 2e34105cbf76..2ff190041aa4 100644 --- a/comms/usrp/Makefile +++ b/comms/usrp/Makefile @@ -36,10 +36,6 @@ USRP2_DESC= Build Ettus USRP2 firmware .include <bsd.port.pre.mk> -.if ${OSVERSION} < 800000 -IGNORE= needs libusb 1.0 -.endif - .if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen CMAKE_ARGS+= -DENABLE_DOXYGEN:STRING="ON" |