13 lines
390 B
Makefile
13 lines
390 B
Makefile
# $NetBSD: builtin.mk,v 1.3 2004/10/09 06:40:48 xtraeme Exp $
|
|
|
|
_H_XFIXES= ${X11BASE}/include/X11/extensions/Xfixes.h
|
|
_FIXESEXT_PC= ${X11BASE}/lib/pkgconfig/xfixes.pc
|
|
|
|
.if !defined(IS_BUILTIN.Xfixes)
|
|
IS_BUILTIN.Xfixes= no
|
|
. if exists(${_H_XFIXES}) && exists(${_FIXESEXT_PC})
|
|
IS_BUILTIN.Xfixes= yes
|
|
. endif
|
|
.endif # IS_BUILTIN.Xfixes
|
|
|
|
USE_BUILTIN.Xfixes?= ${IS_BUILTIN.Xfixes}
|