summaryrefslogtreecommitdiff
path: root/font/sony-misc
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2007-03-16 00:19:22 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2007-03-16 00:19:22 +0000
commite889f63b0fdd45de06f2be8d7db2f83816835b4a (patch)
treeb7ca0127ac31e05856f2efddf92c089ce3789e71 /font/sony-misc
parentf41e5c719f41d4bc243f3a8b295042d214625cac (diff)
regen
Diffstat (limited to 'font/sony-misc')
-rw-r--r--font/sony-misc/aclocal.m420
-rw-r--r--font/sony-misc/configure23
2 files changed, 42 insertions, 1 deletions
diff --git a/font/sony-misc/aclocal.m4 b/font/sony-misc/aclocal.m4
index aeac56e6a..9132b7c1b 100644
--- a/font/sony-misc/aclocal.m4
+++ b/font/sony-misc/aclocal.m4
@@ -630,7 +630,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,
@@ -643,5 +644,22 @@ 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])
])
diff --git a/font/sony-misc/configure b/font/sony-misc/configure
index c43d9d829..3136e7676 100644
--- a/font/sony-misc/configure
+++ b/font/sony-misc/configure
@@ -1936,6 +1936,29 @@ fi;
echo "$as_me: Building with package name set to $PACKAGE" >&6;}
fi
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION_MAJOR `echo $PACKAGE_VERSION | cut -d . -f 1`
+_ACEOF
+
+ PVM=`echo $PACKAGE_VERSION | cut -d . -f 2`
+ if test "x$PVM" = "x"; then
+ PVM="0"
+ fi
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION_MINOR $PVM
+_ACEOF
+
+ PVP=`echo $PACKAGE_VERSION | cut -d . -f 3`
+ if test "x$PVP" = "x"; then
+ PVP="0"
+ fi
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION_PATCHLEVEL $PVP
+_ACEOF
+
+
ac_config_files="$ac_config_files Makefile"
cat >confcache <<\_ACEOF