summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorreed <reed>2006-04-19 15:39:06 +0000
committerreed <reed>2006-04-19 15:39:06 +0000
commit11fd9290f5d7a075bae4b26363f9b84b8eed171f (patch)
treef7dbfa14addec9c7794e5885bed983f4bc627bf1
parentb2a8aa9019759933ac82d02b50e3495de6807d63 (diff)
downloadpkgsrc-11fd9290f5d7a075bae4b26363f9b84b8eed171f.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"