summaryrefslogtreecommitdiff
path: root/x11/xorg-libs/version.mk
blob: 0ee5141cb8ff74b761f8e443c49842c30107a45e (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
42
43
44
# $NetBSD: version.mk,v 1.1 2005/06/01 18:03:33 jlam Exp $
#
# This Makefile fragment is included by Makefiles that need to access
# the X11_TYPE and version number of an X.org distribution.
#
# The following variables are provided by this file:
#
#    BUILTIN_X11_TYPE.xorg is the X11_TYPE of the X.org distribution
#	and is simply "xorg".
#
#    BUILTIN_X11_VERSION.xorg is the version number of the X.org
#	distribution detected on the system.
#

BUILTIN_X11_TYPE.xorg=	xorg

BUILTIN_FILES_VAR:=		CF_XORGVERSION CF_XORG
BUILTIN_FILES.CF_XORGVERSION=	${X11BASE}/lib/X11/config/xorgversion.def
BUILTIN_FILES.CF_XORG=		${X11BASE}/lib/X11/config/xorg.cf
.include "../../mk/buildlink3/find-files.mk"

.if !defined(BUILTIN_XORG_VERSION_FILE)
BUILTIN_XORG_VERSION_FILE=	__nonexistent__
.  if exists(${BUILTIN_X11_CONFIG_XORGVERSION_DEF})
BUILTIN_XORG_VERSION_FILE=	${BUILTIN_X11_CONFIG_XORGVERSION_DEF}
.  elif exists(${BUILTIN_X11_CONFIG_XORG_CF})
BUILTIN_XORG_VERSION_FILE=	${BUILTIN_X11_CONFIG_XORG_CF}
.  endif
.endif
MAKEVARS+=	BUILTIN_XORG_VERSION_FILE

.if !defined(BUILTIN_X11_VERSION.xorg) && \
    exists(${BUILTIN_XORG_VERSION_FILE})
BUILTIN_X11_VERSION.xorg!=						\
	${AWK} '/\#define[ 	]*XORG_VERSION_MAJOR/ { M = $$3 }	\
		/\#define[ 	]*XORG_VERSION_MINOR/ { m = "."$$3 }	\
		/\#define[ 	]*XORG_VERSION_PATCH/ { p = "."$$3 }	\
		/\#define[ 	]*XORG_VERSION_SNAP/ { s = "."$$3 }	\
		END { if (s == ".0") s = "";				\
		      if (p == ".0" && s == "") p = "";			\
		      printf "%s%s%s%s\n", M, m, p, s }'		\
		${BUILTIN_XORG_VERSION_FILE}
.endif
MAKEVARS+=	BUILTIN_X11_VERSION.xorg