mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
36 lines
766 B
Makefile
36 lines
766 B
Makefile
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
#
|
|
# Provide default versions for ports with multiple versions selectable
|
|
# by the user.
|
|
#
|
|
# Users who want to override these defaults can easily do so by defining
|
|
# DEFAULT_VERSIONS in their make.conf as follows:
|
|
#
|
|
# DEFAULT_VERSIONS= perl5=5.18 ruby=2.0
|
|
|
|
.if !defined(_INCLUDE_BSD_DEFAULT_VERSIONS_MK)
|
|
_INCLUDE_BSD_DEFAULT_VERSIONS_MK= yes
|
|
|
|
.for lang in ${DEFAULT_VERSIONS}
|
|
_l= ${lang:C/=.*//g}
|
|
${_l:tu}_DEFAULT= ${lang:C/.*=//g}
|
|
.endfor
|
|
|
|
APACHE_DEFAULT?= 2.2
|
|
FPC_DEFAULT?= 2.6.4
|
|
GCC_DEFAULT?= 4.7
|
|
LUA_DEFAULT?= 5.2
|
|
MYSQL_DEFAULT?= 5.5
|
|
PERL5_DEFAULT?= 5.16
|
|
PGSQL_DEFAULT?= 9.0
|
|
PHP_DEFAULT?= 5.4
|
|
PYTHON_DEFAULT?= 2.7
|
|
PYTHON2_DEFAULT?= 2.7
|
|
PYTHON3_DEFAULT?= 3.3
|
|
RUBY_DEFAULT?= 1.9
|
|
TCLTK_DEFAULT?= 8.6
|
|
|
|
.endif
|