aboutsummaryrefslogtreecommitdiff
path: root/Mk/Uses/alias.mk
blob: e0ddb93166fc0eaa5207341eefdb4aba63de81a1 (plain) (blame)
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
# $FreeBSD$
#
# Add __FreeBSD__ definition to CFLAGS
# Used by DPorts when masquerading as FreeBSD allows port to build without
# additional patches
#
# Feature:      alias
# Usage:        USES=alias or USES=alias:ARGS
# Valid ARGS:   9 (default), 10, 11
#
# MAINTAINER:	ports@FreeBSD.org

.if !defined(_INCLUDE_USES_ALIAS_MK)
_INCLUDE_USES_ALIAS_MK=    yes

.if ${OPSYS} != FreeBSD

.if empty(alias_ARGS)
CFLAGS+=	-D__FreeBSD__=9
.else
.  if ${alias_ARGS} == 9 || ${alias_ARGS} == 10 || ${alias_ARGS} == 11
CFLAGS+=	-D__FreeBSD__=${alias_ARGS}
.  else
IGNORE=	invalid MAJOR RELEASE argument (${alias_ARGS}) for USES=alias
.  endif
.endif

.endif # OPSYS != FreeBSD

.endif