# $NetBSD: builtin.mk,v 1.3 2019/11/03 10:39:05 rillig Exp $ BUILTIN_PKG:= argp BUILTIN_FIND_HEADERS_VAR:= H_ARGP BUILTIN_FIND_HEADERS.H_ARGP= argp.h .include "../../mk/buildlink3/bsd.builtin.mk" ### ### Determine if there is a built-in implementation of the package and ### set IS_BUILTIN. appropriately ("yes" or "no"). ### .if !defined(IS_BUILTIN.argp) IS_BUILTIN.argp= no . if empty(H_ARGP:M__nonexistent__) && empty(H_ARGP:M${LOCALBASE}/*) IS_BUILTIN.argp= yes . endif .endif MAKEVARS+= IS_BUILTIN.argp ### ### If there is a built-in implementation, then set BUILTIN_PKG. to ### a package name to represent the built-in package. ### .if !defined(BUILTIN_PKG.argp) && \ !empty(IS_BUILTIN.argp:M[yY][eE][sS]) && \ empty(H_ARGP:M__nonexistent__) ### ### Determine whether we should use the built-in implementation if it ### exists, and set USE_BUILTIN. appropriate ("yes" or "no"). ### . if !defined(USE_BUILTIN.argp) . if ${PREFER.argp} == "pkgsrc" USE_BUILTIN.argp= no . else USE_BUILTIN.argp= ${IS_BUILTIN.argp} . if defined(BUILTIN_PKG.argp) && \ !empty(IS_BUILTIN.argp:M[yY][eE][sS]) USE_BUILTIN.argp= yes . endif . endif # PREFER.argp . endif MAKEVARS+= USE_BUILTIN.argp .endif