diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2011-09-07 14:36:13 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2011-09-07 14:36:13 +0000 |
commit | 1deea9d0fd8e93de1a1a5e335a5da46eee39cc18 (patch) | |
tree | 5cb8b8749b253646c20f6b05dbfbe50ec90662ef /audio | |
parent | cd9a1754219f24c4043e58d2b4fd4ff0131c3cda (diff) | |
download | ports-1deea9d0fd8e93de1a1a5e335a5da46eee39cc18.tar.gz ports-1deea9d0fd8e93de1a1a5e335a5da46eee39cc18.zip |
- Unbreak
- Use sysctl to find out whether SSE is supported
Notes
Notes:
svn path=/head/; revision=281381
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 " |