Fri May 15 10:10:04 2020 UTC ()
mk/defaults: Switch PKG_DEVELOPER on by default.

Bulk builds with PKG_DEVELOPER set have been the status quo for a while.

Every package in pkgsrc has to be expected to build with this.


(nia)
diff -r1.308 -r1.309 pkgsrc/mk/defaults/mk.conf

cvs diff -r1.308 -r1.309 pkgsrc/mk/defaults/mk.conf (expand / switch to unified diff)

--- pkgsrc/mk/defaults/mk.conf 2020/03/27 20:57:34 1.308
+++ pkgsrc/mk/defaults/mk.conf 2020/05/15 10:10:04 1.309
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: mk.conf,v 1.308 2020/03/27 20:57:34 joerg Exp $ 1# $NetBSD: mk.conf,v 1.309 2020/05/15 10:10:04 nia Exp $
2# 2#
3 3
4# This file provides default values for variables that may be overridden 4# This file provides default values for variables that may be overridden
5# in the MAKECONF file, which is /etc/mk.conf by default. 5# in the MAKECONF file, which is /etc/mk.conf by default.
6# 6#
7# Note: This file is included after the MAKECONF file, so you cannot query 7# Note: This file is included after the MAKECONF file, so you cannot query
8# these default values in the MAKECONF using the ".if" and ".for" 8# these default values in the MAKECONF using the ".if" and ".for"
9# preprocessing directives. 9# preprocessing directives.
10 10
11# ************************************************************************ 11# ************************************************************************
12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS. 12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS.
13# ************************************************************************ 13# ************************************************************************
14 14
@@ -163,34 +163,33 @@ PKGSRC_SLEEPSECS?= 5 @@ -163,34 +163,33 @@ PKGSRC_SLEEPSECS?= 5
163# 163#
164# If you change it, be sure that _all_ the installed libraries and 164# If you change it, be sure that _all_ the installed libraries and
165# programs have the same API and use consistent compiler options. It is 165# programs have the same API and use consistent compiler options. It is
166# recommended that this variable be only changed directly after 166# recommended that this variable be only changed directly after
167# bootstrapping pkgsrc. 167# bootstrapping pkgsrc.
168# 168#
169# Possible values: 169# Possible values:
170# * 64 (64 bit ABI; both IRIX or Solaris) 170# * 64 (64 bit ABI; both IRIX or Solaris)
171# * 32 (SGI's N32 ABI; only IRIX) 171# * 32 (SGI's N32 ABI; only IRIX)
172# * undefined (SGI's old o32 ABI; only IRIX) 172# * undefined (SGI's old o32 ABI; only IRIX)
173# 173#
174# Default: undefined, but see above. 174# Default: undefined, but see above.
175 175
176#PKG_DEVELOPER= yes 176PKG_DEVELOPER?= yes
177# 
178# If defined and not "no" it enables some sanity checks to raise the quality 177# If defined and not "no" it enables some sanity checks to raise the quality
179# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for 178# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for
180# details and further configuration options. 179# details and further configuration options.
181# 180#
182# Possible: defined, not defined, no 181# Possible: defined, not defined, no
183# Default: not defined 182# Default: yes
184 183
185USE_ABI_DEPENDS?= yes 184USE_ABI_DEPENDS?= yes
186# Honor package prerequisite ABI recommendations. If this is set 185# Honor package prerequisite ABI recommendations. If this is set
187# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS. 186# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS.
188# If set to "no", a warning will be printed if recommendations 187# If set to "no", a warning will be printed if recommendations
189# are possibly ignored. 188# are possibly ignored.
190# 189#
191# WARNING: This should only be changed if you know what you're doing. 190# WARNING: This should only be changed if you know what you're doing.
192# Please read pkgsrc/doc/pkgsrc.txt for details. 191# Please read pkgsrc/doc/pkgsrc.txt for details.
193# 192#
194# Possible: yes, no 193# Possible: yes, no
195# Default: yes 194# Default: yes
196 195