blob: 2bd134140edd934b7440aeb85a8c69ff9b04d0e2 (
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
|
# $NetBSD: version.mk,v 1.5 2011/01/30 17:26:32 wiz 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 "xorg-version.mk"
. 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 BUILTIN_X11_TYPE.native
|