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 | 2a1446fe641a59f9314b876c861d5d65f2c0c854 (patch) | |
tree | 904d8a39f8d7cae07e96385381d482358d48d95f /x11/xcursor | |
parent | 180d4f29c15b0b72af3d02e8a8336e24b9aae1ca (diff) | |
download | pkgsrc-2a1446fe641a59f9314b876c861d5d65f2c0c854.tar.gz |
correctly pick up the Xcursor version in X.org.
Diffstat (limited to 'x11/xcursor')
-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} |