1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Fix build on alpha ARCH machines that do not support MVI code. Check

PR for more information

PR:		48506
Submitted by:	naddy
This commit is contained in:
Mario Sergio Fujikawa Ferreira 2003-09-08 00:54:07 +00:00
parent a11a549da5
commit 02c49bd1c9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88714

View File

@ -46,6 +46,12 @@ CONFIGURE_ARGS+= --disable-sdl
CONFIGURE_ARGS+= --disable-warnings
.endif
# We must be able to build EV6 code; actual CPU-type optimizations
# are chosen at runtime.
.if ${MACHINE_ARCH:L} == "alpha"
CFLAGS:= ${CFLAGS:N-mcpu=*}
.endif
pre-everything::
@${ECHO_MSG} "====>"
.ifndef(WITH_SDL)