mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-26 21:41:27 -04:00
24 lines
859 B
Makefile
24 lines
859 B
Makefile
# $NetBSD: obsolete.mk,v 1.29 2012/06/13 14:29:16 gdt Exp $
|
|
#
|
|
# This file holds make(1) logic to allow obsolete or deprecated variables
|
|
# still to be used. These may eventually disappear over time as the contents
|
|
# are, by definition, obsolete and deprecated.
|
|
|
|
.if defined(PRIV_CONF_DIR)
|
|
PKG_SYSCONFDIR.priv?= ${PRIV_CONF_DIR}
|
|
.endif
|
|
|
|
###
|
|
### Set PKG_LEGACY_OPTIONS based on to-be-deprecated global variables.
|
|
###
|
|
|
|
.if defined(KERBEROS)
|
|
. if ${KERBEROS} == "4" && !empty(PKG_SUPPORTED_OPTIONS:Mkerberos4)
|
|
PKG_LEGACY_OPTIONS+= kerberos4
|
|
PKG_OPTIONS_DEPRECATED_WARNINGS+="Deprecated variable KERBEROS used, use PKG_DEFAULT_OPTIONS+=kerberos4 instead."
|
|
. elif !empty(PKG_SUPPORTED_OPTIONS:Mkerberos)
|
|
PKG_LEGACY_OPTIONS+= kerberos
|
|
PKG_OPTIONS_DEPRECATED_WARNINGS+="Deprecated variable KERBEROS used, use PKG_DEFAULT_OPTIONS+=kerberos instead."
|
|
. endif
|
|
.endif
|