pkgsrc/pkgtools/x11-links/version.mk
rillig c77d3c5335 pkgtools/*: Realign variables in Makefiles
Mainly done by pkglint, manually reviewed and improved in some few cases.
2018-01-27 19:07:46 +00:00

35 lines
1.2 KiB
Makefile

# $NetBSD: version.mk,v 1.6 2018/01/27 19:07:48 rillig 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