summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2006-04-19 15:39:06 +0000
committerreed <reed@pkgsrc.org>2006-04-19 15:39:06 +0000
commit6a0b881bad7fb36abf0f59dea43f7fb80c05895e (patch)
treef7dbfa14addec9c7794e5885bed983f4bc627bf1
parentada126076aafa680ce18f942c34584a3f67d545f (diff)
downloadpkgsrc-6a0b881bad7fb36abf0f59dea43f7fb80c05895e.tar.gz
Fix typo or error. It was checking for wrong header name (that
never existed as far as I can tell). It should have first letter capitalized. This error was in the original version of the builtin.mk and when the builtin.mk structure was changed the error was brought with it. This update means that packages (like metacity) that depend on Xcomposite now may no longer depend on it since they can use the native (Xorg) version. This would only occur for systems using xorg as the X11_TYPE. (I need to confirm this -- should I do bump revisions of these packages?)
-rw-r--r--x11/Xcomposite/builtin.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/Xcomposite/builtin.mk b/x11/Xcomposite/builtin.mk
index 8a35aac5247..9ca874b471d 100644
--- a/x11/Xcomposite/builtin.mk
+++ b/x11/Xcomposite/builtin.mk
@@ -1,10 +1,10 @@
-# $NetBSD: builtin.mk,v 1.11 2006/04/06 06:22:56 reed Exp $
+# $NetBSD: builtin.mk,v 1.12 2006/04/19 15:39:06 reed Exp $
BUILTIN_PKG:= Xcomposite
BUILTIN_FIND_FILES_VAR:= H_XCOMPOSITE
BUILTIN_FIND_FILES.H_XCOMPOSITE= \
- ${X11BASE}/include/X11/extensions/xcomposite.h
+ ${X11BASE}/include/X11/extensions/Xcomposite.h
.include "../../mk/buildlink3/bsd.builtin.mk"