diff options
author | grant <grant@pkgsrc.org> | 2004-07-24 06:48:51 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-07-24 06:48:51 +0000 |
commit | 1f06d0d9dd42b3f83bd46cc88d2c7161815b98a0 (patch) | |
tree | 904d8a39f8d7cae07e96385381d482358d48d95f | |
parent | 715785f147f901b44babc7872b453dac16300580 (diff) | |
download | pkgsrc-1f06d0d9dd42b3f83bd46cc88d2c7161815b98a0.tar.gz |
correctly pick up the Xcursor version in X.org.
-rw-r--r-- | x11/xcursor/builtin.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/xcursor/builtin.mk b/x11/xcursor/builtin.mk index db2aa2ba2de..efb56f4eb37 100644 --- a/x11/xcursor/builtin.mk +++ b/x11/xcursor/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.3 2004/03/29 05:43:36 jlam Exp $ +# $NetBSD: builtin.mk,v 1.4 2004/07/24 06:48:51 grant Exp $ _X11_XCURSOR_XCURSOR_H= ${X11BASE}/include/X11/Xcursor/Xcursor.h @@ -13,13 +13,13 @@ IS_BUILTIN.xcursor= yes # or if the built-in one is sufficient. # _XCURSOR_MAJOR!= \ - ${AWK} '/\#define[ ]*XCURSOR_MAJOR/ { print $$3 }' \ + ${AWK} '/\#define[ ]*XCURSOR_(LIB_)?MAJOR/ { print $$3 }' \ ${_X11_XCURSOR_XCURSOR_H} _XCURSOR_MINOR!= \ - ${AWK} '/\#define[ ]*XCURSOR_MINOR/ { print "."$$3 }' \ + ${AWK} '/\#define[ ]*XCURSOR_(LIB_)?MINOR/ { print "."$$3 }' \ ${_X11_XCURSOR_XCURSOR_H} _XCURSOR_REVISION!= \ - ${AWK} '/\#define[ ]*XCURSOR_MINOR/ { print "."$$3 }' \ + ${AWK} '/\#define[ ]*XCURSOR_(LIB_)?MINOR/ { print "."$$3 }' \ ${_X11_XCURSOR_XCURSOR_H} _XCURSOR_VERSION= ${_XCURSOR_MAJOR}${_XCURSOR_MINOR}${_XCURSOR_REVISION} BUILTIN_PKG.xcursor= xcursor-${_XCURSOR_VERSION} |