aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2010-06-13 19:07:30 +0000
committerPav Lucistnik <pav@FreeBSD.org>2010-06-13 19:07:30 +0000
commitbae0de7d86bdb3ea2b31468c232566a2f536e2af (patch)
tree898c0e4b3fb7939103acb820be4bcde17f5c682d
parent4a5fedb38e71212ae060488fa1e369a477220853 (diff)
downloadports-bae0de7d86bdb3ea2b31468c232566a2f536e2af.tar.gz
ports-bae0de7d86bdb3ea2b31468c232566a2f536e2af.zip
- Disable MMX autodetection on pointyhat to achieve predictable dependency list
Notes
Notes: svn path=/head/; revision=256486
-rw-r--r--emulators/xsystem35/Makefile2
-rw-r--r--multimedia/mpeg4ip/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/emulators/xsystem35/Makefile b/emulators/xsystem35/Makefile
index a0a50fff6255..bb7f02d3900a 100644
--- a/emulators/xsystem35/Makefile
+++ b/emulators/xsystem35/Makefile
@@ -54,7 +54,7 @@ CONFIGURE_ARGS+= --enable-audio=oss --with-default-output=oss
CONFIGURE_ARGS+= --disable-sdl
#.endif
-.if ${MACHINE_CPU:Mmmx}
+.if ${MACHINE_CPU:Mmmx} && !defined(PACKAGE_BUILDING)
CONFIGURE_ARGS+= --enable-mmx
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
.else
diff --git a/multimedia/mpeg4ip/Makefile b/multimedia/mpeg4ip/Makefile
index 1e4d44a9dee1..cc10afc61460 100644
--- a/multimedia/mpeg4ip/Makefile
+++ b/multimedia/mpeg4ip/Makefile
@@ -210,7 +210,7 @@ post-install:
.endfor
.endif
-.if (defined(MACHINE_CPU) && ${MACHINE_CPU:Mmmx} == "mmx")
+.if (defined(MACHINE_CPU) && ${MACHINE_CPU:Mmmx} == "mmx") && !defined(PACKAGE_BUILDING)
WITH_MMX=yes
.else
WITHOUT_MMX=yes