diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-12-16 19:16:55 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-12-16 19:16:55 +0000 |
commit | 386b7d1471a2a2fc82058c8f56c0991764e704a5 (patch) | |
tree | ba8c8a179f564dba5206a89b13f1348c6be287d7 /util/macros/xorgversion.m4 | |
parent | 4e3281a310a591734f3f1cbbc4a3a2df2a2aff2b (diff) |
Replace sed constructs depending on GNU sed by something more portable.
Diffstat (limited to 'util/macros/xorgversion.m4')
-rw-r--r-- | util/macros/xorgversion.m4 | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/util/macros/xorgversion.m4 b/util/macros/xorgversion.m4 index 01bffeccf..f27012772 100644 --- a/util/macros/xorgversion.m4 +++ b/util/macros/xorgversion.m4 @@ -27,7 +27,8 @@ dnl # -------------------- # Adds --with/without-release-string and changes the PACKAGE and # PACKAGE_TARNAME to use "$PACKAGE{_TARNAME}-$RELEASE_VERSION". If -# no option is given, PACKAGE and PACKAGE_TARNAME are unchanged. +# no option is given, PACKAGE and PACKAGE_TARNAME are unchanged. Also +# defines PACKAGE_VERSION_{MAJOR,MINOR,PATCHLEVEL} for modules to use. AC_DEFUN([XORG_RELEASE_VERSION],[ AC_ARG_WITH(release-version, @@ -40,4 +41,21 @@ AC_DEFUN([XORG_RELEASE_VERSION],[ PACKAGE_TARNAME="$PACKAGE_TARNAME-$RELEASE_VERSION" AC_MSG_NOTICE([Building with package name set to $PACKAGE]) fi + AC_DEFINE_UNQUOTED([PACKAGE_VERSION_MAJOR], + [`echo $PACKAGE_VERSION | cut -d . -f 1`], + [Major version of this package]) + PVM=`echo $PACKAGE_VERSION | cut -d . -f 2` + if test "x$PVM" = "x"; then + PVM="0" + fi + AC_DEFINE_UNQUOTED([PACKAGE_VERSION_MINOR], + [$PVM], + [Minor version of this package]) + PVP=`echo $PACKAGE_VERSION | cut -d . -f 3` + if test "x$PVP" = "x"; then + PVP="0" + fi + AC_DEFINE_UNQUOTED([PACKAGE_VERSION_PATCHLEVEL], + [$PVP], + [Patch version of this package]) ]) |