diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2011-04-14 06:24:14 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2011-04-14 06:24:14 +0000 |
commit | 347b923f3497e95d6b024a9dca3cb2cf6d918549 (patch) | |
tree | c3b027aa7f8d335cf3583a7b4a70b278bcd9c165 /multimedia/audacious | |
parent | e7211b642668ca9174ff6314d9f94772b99ca4af (diff) | |
download | ports-347b923f3497e95d6b024a9dca3cb2cf6d918549.tar.gz ports-347b923f3497e95d6b024a9dca3cb2cf6d918549.zip |
Notes
Diffstat (limited to 'multimedia/audacious')
-rw-r--r-- | multimedia/audacious/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index 9b9aad6b40a8..42bac367b73b 100644 --- a/multimedia/audacious/Makefile +++ b/multimedia/audacious/Makefile @@ -36,7 +36,8 @@ OPTIONS= CHARSET "Build with automatic charset detection" off \ DBUS "Build with dbus support" on \ GNOME "Build with gconf support" off \ NLS "Native Language Support" on \ - EXECINFO "Build with libexecinfo support" on + EXECINFO "Build with libexecinfo support" on \ + SSE2 "Build with SSE2 instruction set" on .include <bsd.port.pre.mk> @@ -71,6 +72,10 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif +.if defined(WITHOUT_SSE2) +CONFIGURE_ARGS+=--disable-sse2 +.endif + post-patch: @${REINPLACE_CMD} 's|$${libdir}/pkgconfig|$${prefix}/libdata/pkgconfig|g' \ ${WRKSRC}/Makefile |