blob: 8f9f7e911d759c29772f337e169e60184ad2859d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: builtin.mk,v 1.3 2004/10/09 06:40:48 xtraeme Exp $
_H_XFIXESPROTO= ${X11BASE}/include/X11/extensions/xfixesproto.h
_H_XFIXESWIRE= ${X11BASE}/include/X11/extensions/xfixeswire.h
_FIXESEXT_PC= ${X11BASE}/lib/pkgconfig/fixesext.pc
.if !defined(IS_BUILTIN.fixesext)
IS_BUILTIN.fixesext= no
. if exists(${_H_XFIXESPROTO}) && exists(${_H_XFIXESWIRE}) && \
exists(${_FIXESEXT_PC})
IS_BUILTIN.fixesext= yes
. endif
.endif # IS_BUILTIN.fixesext
USE_BUILTIN.fixesext?= ${IS_BUILTIN.fixesext}
|