aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Uses
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2015-03-16 16:11:58 +0800
committermarino <marino@FreeBSD.org>2015-03-16 16:11:58 +0800
commit35e14a2b119971c8592d3475b51c89a039c554e7 (patch)
tree930c0aaab8c8a6127d62c1db9eb638179618ade7 /Mk/Uses
parent8744c2f36a9c461545fa263a8ca009ff0079e78e (diff)
downloadfreebsd-ports-gnome-35e14a2b119971c8592d3475b51c89a039c554e7.tar.gz
freebsd-ports-gnome-35e14a2b119971c8592d3475b51c89a039c554e7.tar.zst
freebsd-ports-gnome-35e14a2b119971c8592d3475b51c89a039c554e7.zip
Mk/Uses/ada.mk: Add argument "49"
To be complete, ada.mk needs to support having ADA_DEFAULT=5 and the port explicitly requesting lang/gcc-aux. There is no identified use case for this yet, but not supporting it is a hole.
Diffstat (limited to 'Mk/Uses')
-rw-r--r--Mk/Uses/ada.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mk/Uses/ada.mk b/Mk/Uses/ada.mk
index fcbbb47791df..0fe47d496286 100644
--- a/Mk/Uses/ada.mk
+++ b/Mk/Uses/ada.mk
@@ -6,7 +6,7 @@
#
# Feature: ada
# Usage: USES=ada
-# Valid ARGS: 47, 5
+# Valid ARGS: 47, 49, 5
#
# MAINTAINER: marino@FreeBSD.org
@@ -17,6 +17,8 @@ CC= ada
. if ${ada_ARGS:M47}
ADAXX= gcc47
+. elif ${ada_ARGS:M49}
+ADAXX= gcc
. elif ${ada_ARGS:M5}
ADAXX= gcc5
. else