summaryrefslogtreecommitdiff
path: root/pkgtools/x11-links/version.mk
blob: eb8f58e195391a9b7363793ef610942c47190136 (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
# $NetBSD: version.mk,v 1.3 2007/08/18 00:20:56 joerg Exp $
#
# This Makefile fragment is included by Makefiles that need to access
# the X11_TYPE and version number of a native X11 distribution.
#
# The following variables are provided by this file:
#
#    BUILTIN_X11_TYPE.native is the X11_TYPE of the native X11
#	distribution detected on the system.
#
#    BUILTIN_X11_VERSION.native is the version number, where applicable,
#	of the native X11 distribution detected on the system.
#

.if !defined(BUILTIN_X11_VERSION.native)
.  include "xfree-version.mk"

.  if defined(BUILTIN_X11_VERSION.xorg)
BUILTIN_X11_TYPE.native=	${BUILTIN_X11_TYPE.xorg}
BUILTIN_X11_VERSION.native=	${BUILTIN_X11_VERSION.xorg}
.  elif defined(BUILTIN_X11_VERSION.XFree86)
BUILTIN_X11_TYPE.native=	${BUILTIN_X11_TYPE.XFree86}
BUILTIN_X11_VERSION.native=	${BUILTIN_X11_VERSION.XFree86}
.  elif !empty(X11BASE:M*openwin)
BUILTIN_X11_TYPE.native=	openwin
.  elif ${OPSYS} == "IRIX"
BUILTIN_X11_TYPE.native=	xsgi
.  elif ${OPSYS} == "OSF1"
BUILTIN_X11_TYPE.native=	xdec
.  else
BUILTIN_X11_TYPE.native=	unknown
.  endif
.endif
MAKEVARS+=	BUILTIN_X11_VERSION.native