Changeset View
Changeset View
Standalone View
Standalone View
head/Mk/bsd.sanity.mk
Show First 20 Lines • Show All 162 Lines • ▼ Show 20 Lines | |||||
.endif | .endif | ||||
.for _type in EXAMPLES DOCS | .for _type in EXAMPLES DOCS | ||||
. if defined(PORT${_type}) && empty(_REALLY_ALL_POSSIBLE_OPTIONS:M${_type}) | . if defined(PORT${_type}) && empty(_REALLY_ALL_POSSIBLE_OPTIONS:M${_type}) | ||||
DEV_ERROR+= "PORT${_type} does not do anything unless the ${_type} option is present." | DEV_ERROR+= "PORT${_type} does not do anything unless the ${_type} option is present." | ||||
. endif | . endif | ||||
.endfor | .endfor | ||||
_BROKEN_OPTIONS_HELPERS= | |||||
.for opt in ${_REALLY_ALL_POSSIBLE_OPTIONS} | |||||
. for helper in ${_ALL_OPTIONS_HELPERS} | |||||
. if defined(${opt}_${helper}) && empty(_OPTIONS_HELPERS_SEEN:M${opt}_${helper}) | |||||
_BROKEN_OPTIONS_HELPERS+= ${opt}_${helper} | |||||
. endif | |||||
. endfor | |||||
.endfor | |||||
.if !empty(_BROKEN_OPTIONS_HELPERS) | |||||
DEV_ERROR+= "The following options helpers are incorrectly set after bsd.port.options.mk and are ineffective: ${_BROKEN_OPTIONS_HELPERS}" | |||||
.endif | |||||
SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ | SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ | ||||
USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ | USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ | ||||
USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \ | USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \ | ||||
USE_GETTEXT USE_GMAKE USE_SCONS USE_DRUPAL NO_INSTALL_MANPAGES \ | USE_GETTEXT USE_GMAKE USE_SCONS USE_DRUPAL NO_INSTALL_MANPAGES \ | ||||
INSTALLS_SHLIB USE_PYDISTUTILS PYTHON_CONCURRENT_INSTALL \ | INSTALLS_SHLIB USE_PYDISTUTILS PYTHON_CONCURRENT_INSTALL \ | ||||
PYDISTUTILS_AUTOPLIST PYTHON_PY3K_PLIST_HACK PYDISTUTILS_NOEGGINFO \ | PYDISTUTILS_AUTOPLIST PYTHON_PY3K_PLIST_HACK PYDISTUTILS_NOEGGINFO \ | ||||
USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \ | USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \ | ||||
UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD USE_PHPEXT \ | UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD USE_PHPEXT \ | ||||
▲ Show 20 Lines • Show All 110 Lines • Show Last 20 Lines |