Add alpha to the 'need --disable-spinlocks' boat

http://build-failures.rhaalovely.net/alpha/2016-05-26/databases/postgresql.log

error: #error PostgreSQL does not have native spinlock support on this
platform. To continue the compilation, rerun configure using
--disable-spinlocks. However, performance will be poor. Please report
this to pgsql-bugs@postgresql.org.
This commit is contained in:
landry 2016-06-03 07:28:07 +00:00
parent 71f79a2f80
commit 2e44ee3f41

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.214 2016/05/13 17:15:55 pea Exp $
# $OpenBSD: Makefile,v 1.215 2016/06/03 07:28:07 landry Exp $
COMMENT-main= PostgreSQL RDBMS (client)
COMMENT-server= PostgreSQL RDBMS (server)
@ -70,11 +70,11 @@ CONFIGURE_ARGS= --disable-rpath --with-openssl=/usr \
--with-libxml \
--disable-thread-safety
# There is no spinlock support for hppa yet. Until we have access to
# There is no spinlock support for hppa and alpha yet. Until we have access to
# a system to get this working, disable them for now. There is
# (apparently) a serious performance hit doing this.
.if ${MACHINE_ARCH} == "hppa"
.if ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "alpha"
CONFIGURE_ARGS+=--disable-spinlocks
.endif