diff options
author | marino <marino@FreeBSD.org> | 2014-04-15 04:25:41 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-04-15 04:25:41 +0800 |
commit | 2e53ab5c60754d22f3aa5f739b91d918c371bed3 (patch) | |
tree | 55511982abc3147e8fc49664f711fbf32c549581 | |
parent | d6867d1dac5cc40df937a750bdbe49e1c1e88d5d (diff) | |
download | freebsd-ports-graphics-2e53ab5c60754d22f3aa5f739b91d918c371bed3.tar.gz freebsd-ports-graphics-2e53ab5c60754d22f3aa5f739b91d918c371bed3.tar.zst freebsd-ports-graphics-2e53ab5c60754d22f3aa5f739b91d918c371bed3.zip |
audio/shoutcast: Fix DragonFly breakage due to OSVERSION use
-rw-r--r-- | audio/shoutcast/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/shoutcast/Makefile b/audio/shoutcast/Makefile index 93c0df173d9..d39295548fa 100644 --- a/audio/shoutcast/Makefile +++ b/audio/shoutcast/Makefile @@ -49,7 +49,7 @@ GROUPS= ${SHOUTCASTGROUP} .include <bsd.port.options.mk> -.if ${OSVERSION} >= 1000010 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000010 .if ${ARCH} == "i386" RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:${PORTSDIR}/misc/compat9x .else |