View | Details | Raw Unified | Return to bug 145586
Collapse All | Expand All

(-)Makefile (-1 / +5 lines)
Lines 111-126 Link Here
111
.endif
111
.endif
112
112
113
# sse hardware vector support
113
# sse hardware vector support
114
.if (defined(MACHINE_CPU) && ${MACHINE_CPU:Msse} == "sse")
114
.if (defined(MACHINE_CPU) && ${MACHINE_CPU:Msse} == "sse")
115
WITH_BUILTIN_VECTOR=	yes
115
WITH_BUILTIN_VECTOR=	yes
116
.elif (defined(MACHINE_CPU) && ${MACHINE_CPU:Mamd64} == "amd64")
117
WITH_BUILTIN_VECTOR=	yes
116
.else
118
.else
117
CONFIGURE_ARGS+=	--disable-sse
119
CONFIGURE_ARGS+=	--disable-sse
118
.endif
120
.endif
119
121
120
# mmx support
122
# mmx support
121
.if ${MACHINE_CPU:Mmmx} == ""
123
.if (defined(MACHINE_CPU) && ${MACHINE_CPU:Mamd64} == "amd64")
124
#WITH_BUILTIN_VECTOR=	yes
125
.elif ${MACHINE_CPU:Mmmx} == ""
122
CONFIGURE_ARGS+=	--disable-mmx
126
CONFIGURE_ARGS+=	--disable-mmx
123
WITHOUT_BUILTIN_VECTOR=	yes
127
WITHOUT_BUILTIN_VECTOR=	yes
124
.endif
128
.endif
125
129
126
# builtin vector, requires mmx
130
# builtin vector, requires mmx

Return to bug 145586