Changeset View
Changeset View
Standalone View
Standalone View
Mk/bsd.sanity.mk
| Show First 20 Lines • Show All 60 Lines • ▼ Show 20 Lines | |||||
| .if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || \ | .if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || \ | ||||
| defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) | defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) | ||||
| DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or USES=tk" | DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or USES=tk" | ||||
| .endif | .endif | ||||
| # print warning if no reason given for NO_STAGE | # print warning if no reason given for NO_STAGE | ||||
| .if defined(NO_STAGE) | .if defined(NO_STAGE) | ||||
| DEV_WARNING+= "NO_STAGE is deprecated, convert port to stage directory:" | DEV_ERROR+= "NO_STAGE is unsupported, convert port to stage directory:" | ||||
| DEV_WARNING+= "https://wiki.freebsd.org/ports/StageDir" | DEV_ERROR+= "https://wiki.freebsd.org/ports/StageDir" | ||||
| .endif | .endif | ||||
| .if !defined(NO_STAGE) | |||||
| .for a in 1 2 3 4 5 6 7 8 9 L N | .for a in 1 2 3 4 5 6 7 8 9 L N | ||||
| .if defined(MAN${a}) | .if defined(MAN${a}) | ||||
| DEV_WARNING+= "MAN${a} macros are deprecated when using stage directory" | DEV_WARNING+= "MAN${a} macros are deprecated when using stage directory" | ||||
| .endif | .endif | ||||
| .endfor | .endfor | ||||
| .endif | |||||
| .if !defined(NO_STAGE) && defined(MLINKS) | .if defined(MLINKS) | ||||
| DEV_WARNING+= "MLINKS macros are deprecated when using stage directory" | DEV_WARNING+= "MLINKS macros are deprecated when using stage directory" | ||||
| .endif | .endif | ||||
| .if defined(PYDISTUTILS_AUTOPLIST) && defined(PYTHON_PY3K_PLIST_HACK) | .if defined(PYDISTUTILS_AUTOPLIST) && defined(PYTHON_PY3K_PLIST_HACK) | ||||
| DEV_WARNING+= "PYDISTUTILS_AUTOPLIST features Python 3.x support, PYTHON_PY3K_PLIST_HACK is not required" | DEV_WARNING+= "PYDISTUTILS_AUTOPLIST features Python 3.x support, PYTHON_PY3K_PLIST_HACK is not required" | ||||
| .endif | .endif | ||||
| .if defined(_PREMKINCLUDED) | .if defined(_PREMKINCLUDED) | ||||
| ▲ Show 20 Lines • Show All 110 Lines • Show Last 20 Lines | |||||