diff options
author | crees <crees@FreeBSD.org> | 2015-08-23 15:45:49 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2015-08-23 15:45:49 +0800 |
commit | d10914fdd6b2a0931961008a60412acf38cc7099 (patch) | |
tree | 7e484a2fce2239369f7055ec361c69989d178bb1 | |
parent | b4dbe7df300dd1aab4120b33c58165b5ee904057 (diff) | |
download | freebsd-ports-gnome-d10914fdd6b2a0931961008a60412acf38cc7099.tar.gz freebsd-ports-gnome-d10914fdd6b2a0931961008a60412acf38cc7099.tar.zst freebsd-ports-gnome-d10914fdd6b2a0931961008a60412acf38cc7099.zip |
Enable SSE by default where possible.
PR: ports/202582
Submitted by: jbeich
-rw-r--r-- | audio/soundtouch/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index 0fdef8596aa8..1354467ab311 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -24,6 +24,8 @@ PATHFIX_MAKEFILEIN= Makefile.am OPTIONS_DEFINE= INTEGER_SAMPLES DOCS OPTIONS_DEFINE_amd64= SSE OPTIONS_DEFINE_i386= SSE +OPTIONS_DEFAULT_amd64= SSE +OPTIONS_DEFAULT_i386= ${MACHINE_CPU:tu:MSSE} INTEGER_SAMPLES_DESC= Use integer sample format INTEGER_SAMPLES_CONFIGURE_ENABLE= integer-samples |