9174b01172
Tweak build to use libpthread-stubs for TLS emulation instead of forcing every application using pixman to use -pthread. Tested by jasper@ and landry@ on a bulk ports build.
21 lines
440 B
Makefile
21 lines
440 B
Makefile
# $OpenBSD: Makefile.bsd-wrapper,v 1.12 2010/10/03 18:30:04 matthieu Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SHARED_LIBS= pixman-1 18.4
|
|
|
|
.if ${MACHINE} == amd64 && !${COMPILER_VERSION:L:Mgcc4*}
|
|
CONFIGURE_ARGS += --disable-sse2
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == arm
|
|
CONFIGURE_ARGS += --disable-arm-simd --disable-arm-neon
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == m68k
|
|
CFLAGS += -fno-regmove
|
|
CONFIGURE_ARGS += --cache-file=/dev/null
|
|
.endif
|
|
|
|
.include <bsd.xorg.mk>
|