2dc64e37e0
/usr/xenocara/lib/pixman/pixman/pixman-access.c: In function `store_scanline_a8r8g8b8': /usr/xenocara/lib/pixman/pixman/pixman-access.c:477: error: unrecognizable insn: (insn 3059 3058 3060 0x0 (unspec_volatile [ (label_ref 1558) (const_int 0 [0x0]) ] 4) -1 (nil) (nil)) /usr/xenocara/lib/pixman/pixman/pixman-access.c:477: internal compiler error: in insn_default_length, at insn-attrtab.c:717
20 lines
472 B
Makefile
20 lines
472 B
Makefile
# $OpenBSD: bsd.xconf.mk,v 1.21 2012/03/08 07:29:29 matthieu Exp $
|
|
|
|
# Shared libs?
|
|
.if ${MACHINE_ARCH} == "m88k" || ${MACHINE} == "vax"
|
|
XENOCARA_HAVE_SHARED_LIBS?=no
|
|
.else
|
|
XENOCARA_HAVE_SHARED_LIBS?=yes
|
|
.endif
|
|
|
|
# Build GL libs and apps?
|
|
XENOCARA_BUILD_GL?=${XENOCARA_HAVE_SHARED_LIBS:L}
|
|
XENOCARA_BUILD_DRI?=${XENOCARA_HAVE_SHARED_LIBS:L}
|
|
|
|
# Build pixman?
|
|
.if ${MACHINE} == "vax" || ${MACHINE} == "landisk"
|
|
XENOCARA_BUILD_PIXMAN?=no
|
|
.else
|
|
XENOCARA_BUILD_PIXMAN?=yes
|
|
.endif
|