xenocara/xserver/Makefile.bsd-wrapper
kettenis 389048d736 Enable file descriptor passing code.
ok deraadt@, matthieu@
2015-02-09 09:55:52 +00:00

55 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile.bsd-wrapper,v 1.53 2015/02/09 09:55:52 kettenis Exp $
.include <bsd.xconf.mk>
DIST= ${.CURDIR}
# Machines for which we don't build the Xorg Xserver
NO_XORG_MACHINES= alpha aviion hppa64 landisk \
octeon solbourne vax
NO_XF86UTIL_MACHINES= landisk luna88k mac68k octeon sgi sparc vax
.for M in ${NO_XORG_MACHINES}
NO_XORG_${M} = --disable-xorg
.endfor
NO_XORG_OPTION=${NO_XORG_${MACHINE}}
.for M in ${NO_XF86UTIL_MACHINES}
NO_XF86_UTIL_${M} = --disable-xfree86-utils
.endfor
NO_XF86_UTIL_OPTION=${NO_XF86_UTIL_${MACHINE}}
.if ${XENOCARA_BUILD_GL:L} != "yes"
GLX_OPTION= --disable-glx
.endif
.if ${XENOCARA_BUILD_DRI:L} == "yes"
DRI_OPTION= --enable-dri --enable-dri2
.else
DRI_OPTION= --disable-dri --disable-dri2
.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} ${NO_XF86_UTIL_OPTION} \
--disable-unit-tests \
${DRI_OPTION}
includes:
@echo "Removing obsolete files"
-rm -f ${DESTDIR}${X11BASE}/include/xorg/xaa.h \
${DESTDIR}${X11BASE}/include/xorg/xaalocal.h \
${DESTDIR}${X11BASE}/include/xorg/mibstore.h
.include <bsd.xorg.mk>