diff options
author | gahr <gahr@FreeBSD.org> | 2011-09-07 22:36:13 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2011-09-07 22:36:13 +0800 |
commit | 39166d838087f91e631516a1ddd9f3ac27a981c4 (patch) | |
tree | 50409d75c59aa2371d059b36363e975417e56527 /audio | |
parent | c792deb691282a1aef9bc08af39552bf70696eab (diff) | |
download | freebsd-ports-gnome-39166d838087f91e631516a1ddd9f3ac27a981c4.tar.gz freebsd-ports-gnome-39166d838087f91e631516a1ddd9f3ac27a981c4.tar.zst freebsd-ports-gnome-39166d838087f91e631516a1ddd9f3ac27a981c4.zip |
- Unbreak
- Use sysctl to find out whether SSE is supported
Diffstat (limited to 'audio')
-rw-r--r-- | audio/beast/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/audio/beast/Makefile b/audio/beast/Makefile index 8251a4d8d482..182051b1522d 100644 --- a/audio/beast/Makefile +++ b/audio/beast/Makefile @@ -19,8 +19,6 @@ LIB_DEPENDS= vorbisfile:${PORTSDIR}/audio/libvorbis \ guile:${PORTSDIR}/lang/guile \ asound.2:${PORTSDIR}/audio/alsa-lib -BROKEN= does not deinstall - USE_XORG= x11 USE_GMAKE= yes USE_GNOME= gnomehack intlhack libgnomecanvas @@ -36,7 +34,8 @@ MAKE_JOBS_UNSAFE= yes .include <bsd.port.pre.mk> -.if ${MACHINE_CPU:Msse} +HAS_SSE!= ${SYSCTL} -n hw.instruction_sse +.if ${HAS_SSE} == 1 PLIST_SUB+= SSE="" .else PLIST_SUB+= SSE="@comment " |