blob: 252f1ed8177840214f6c6e11fb78d3dbbd79ee36 (
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
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: builtin.mk,v 1.3 2004/03/15 17:30:18 recht Exp $
.if !defined(XF86_VERSION)
_X11_CONFIG_VERSION_DEF= ${X11BASE}/lib/X11/config/version.def
_XF86_VERSION= 3.3
. if !exists(${_X11_CONFIG_VERSION_DEF})
_XF86_VERSION= 0
. else
_XF86_MAJOR!= \
${AWK} '/\#define[ ]*XF86_VERSION_MAJOR/ { print $$3 }' \
${_X11_CONFIG_VERSION_DEF}
_XF86_MINOR!= \
${AWK} '/\#define[ ]*XF86_VERSION_MINOR/ { print $$3 }' \
${_X11_CONFIG_VERSION_DEF}
_XF86_PATCH!= \
${AWK} '/\#define[ ]*XF86_VERSION_PATCH/ { print $$3 }' \
${_X11_CONFIG_VERSION_DEF}
_XF86_SNAP!= \
${AWK} '/\#define[ ]*XF86_VERSION_SNAP/ { print $$3 }' \
${_X11_CONFIG_VERSION_DEF}
_XF86_TEENY= ${_XF86_PATCH}.${_XF86_SNAP}
. if !empty(_XF86_TEENY:M0.0)
_XF86_VERSION= ${_XF86_MAJOR}.${_XF86_MINOR}
. else
_XF86_VERSION= ${_XF86_MAJOR}.${_XF86_MINOR}.${_XF86_TEENY}
XF86_VERSION= ${_XF86_VERSION}
. endif
. endif
MAKEFLAGS+= XF86_VERSION=${XF86_VERSION}
.endif
USE_BUILTIN.x11-links?= no
# Xrandr won't build without the X Extension library which is only present
# in XFree86>=4.3; ignore it when checking dependencies or buildlinking.
#
.if !exists(${X11BASE}/include/X11/extensions/extutil.h)
IGNORE_PKG.Xrandr= yes
IGNORE_PKG.randrext= yes
.endif
|