27f67406f3
ok matthieu@
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile.bsd-wrapper,v 1.61 2016/03/11 13:09:42 okan Exp $
|
|
|
|
.include <bsd.xconf.mk>
|
|
|
|
DIST= ${.CURDIR}
|
|
|
|
# Machines for which we don't build the Xorg Xserver
|
|
NO_XORG_MACHINES= alpha hppa64 landisk octeon
|
|
|
|
.for M in ${NO_XORG_MACHINES}
|
|
NO_XORG_${M} = --disable-xorg
|
|
.endfor
|
|
NO_XORG_OPTION=${NO_XORG_${MACHINE}}
|
|
|
|
.if ${XENOCARA_BUILD_GL:L} != "yes"
|
|
GLX_OPTION= --disable-glx
|
|
.else
|
|
GLX_OPTION= --enable-glamor
|
|
.endif
|
|
|
|
.if ${XENOCARA_BUILD_DRI:L} == "yes"
|
|
DRI_OPTION= --enable-dri --enable-dri2
|
|
.else
|
|
DRI_OPTION= --disable-dri --disable-dri2 --disable-libdrm
|
|
.endif
|
|
|
|
XKB_PATH= ${X11BASE}/share/X11/xkb
|
|
XKB_RULES= base
|
|
|
|
CONFIGURE_ARGS= --localstatedir=/var --sysconfdir=/etc/X11 \
|
|
--with-xkb-path=${XKB_PATH} \
|
|
--with-xkb-output=/var/db/xkb \
|
|
--with-default-xkb-rules=${XKB_RULES} \
|
|
--with-module-dir=${LIBDIR}/modules ${GLX_OPTION} \
|
|
--enable-install-setuid --enable-privsep \
|
|
--enable-xcsecurity \
|
|
--without-fop --without-xmlto --without-xsltproc \
|
|
--disable-dmx ${NO_XORG_OPTION} \
|
|
--disable-unit-tests \
|
|
${DRI_OPTION}
|
|
|
|
.include <bsd.xorg.mk>
|