summaryrefslogtreecommitdiffstats
path: root/rules/pre/xorg-dirs.make
blob: 9873eed97c22c5333c92160c1afc61bbca3bbe21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*-makefile-*-

# these are the defaults path definitions for xorg stuff
XORG_PREFIX  := /usr
XORG_LIBDIR  := $(XORG_PREFIX)/lib
XORG_DATADIR := $(XORG_PREFIX)/share
XORG_FONTDIR := $(XORG_PREFIX)/share/fonts/X11
XORG_BINDIR  := /usr/bin

XORG_OPTIONS_TRANS	= --disable-local-transport
ifdef PTXCONF_XORG_OPTIONS_TRANS_UNIX
XORG_OPTIONS_TRANS	+= --enable-unix-transport
else
XORG_OPTIONS_TRANS	+= --disable-unix-transport
endif

ifdef PTXCONF_XORG_OPTIONS_TRANS_TCP
XORG_OPTIONS_TRANS	+= --enable-tcp-transport
else
XORG_OPTIONS_TRANS	+= --disable-tcp-transport
endif

XORG_OPTIONS_TRANS	+= $(GLOBAL_IPV6_OPTION)

XORG_OPTIONS_DOCS	:= \
	--without-xmlto \
	--without-fop \
	--without-xsltproc

# vim: syntax=make