diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-12-17 21:02:40 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-12-17 21:02:40 +0000 |
commit | cc5042ee640918e741b092e468150f0a2cd7906c (patch) | |
tree | e26bd311d97afefff8a08608df92b6de345db3be /data | |
parent | da7b1307ccb86f6f2598f0b11ed7feca913e2e45 (diff) |
regen
Diffstat (limited to 'data')
-rw-r--r-- | data/xkbdata/aclocal.m4 | 20 | ||||
-rw-r--r-- | data/xkbdata/config.h.in | 9 | ||||
-rw-r--r-- | data/xkbdata/configure | 23 | ||||
-rw-r--r-- | data/xkbdata/symbols/Makefile.in | 3 | ||||
-rw-r--r-- | data/xkbdata/symbols/sun/Makefile.in | 1 |
5 files changed, 54 insertions, 2 deletions
diff --git a/data/xkbdata/aclocal.m4 b/data/xkbdata/aclocal.m4 index 7e9d5ba9b..ef4de9192 100644 --- a/data/xkbdata/aclocal.m4 +++ b/data/xkbdata/aclocal.m4 @@ -642,7 +642,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, @@ -655,5 +656,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/data/xkbdata/config.h.in b/data/xkbdata/config.h.in index c364eda45..1ca40928b 100644 --- a/data/xkbdata/config.h.in +++ b/data/xkbdata/config.h.in @@ -18,5 +18,14 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION +/* Major version of this package */ +#undef PACKAGE_VERSION_MAJOR + +/* Minor version of this package */ +#undef PACKAGE_VERSION_MINOR + +/* Patch version of this package */ +#undef PACKAGE_VERSION_PATCHLEVEL + /* Version number of package */ #undef VERSION diff --git a/data/xkbdata/configure b/data/xkbdata/configure index fde974c2b..8cdfa4561 100644 --- a/data/xkbdata/configure +++ b/data/xkbdata/configure @@ -1773,6 +1773,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 semantics/Makefile keycodes/Makefile keycodes/sgi/Makefile keycodes/digital/Makefile keymap/Makefile keymap/sun/Makefile keymap/digital/Makefile keymap/sgi/Makefile geometry/Makefile geometry/digital/Makefile geometry/sgi/Makefile geometry/ibm/Makefile compat/Makefile rules/Makefile symbols/Makefile symbols/pc/Makefile symbols/nec/Makefile symbols/xfree68/Makefile symbols/sony/Makefile symbols/sgi/Makefile symbols/macintosh/Makefile symbols/sun/Makefile symbols/fujitsu/Makefile symbols/digital/Makefile symbols/hp/Makefile torture/Makefile types/Makefile" cat >confcache <<\_ACEOF diff --git a/data/xkbdata/symbols/Makefile.in b/data/xkbdata/symbols/Makefile.in index 3aa200ff6..7b3e9ddb0 100644 --- a/data/xkbdata/symbols/Makefile.in +++ b/data/xkbdata/symbols/Makefile.in @@ -244,7 +244,8 @@ dist_xkbdata_symbols_DATA = \ us_intl \ uz \ vn \ - yu + yu \ + zaurus xkbdatadir = $(datadir)/X11/xkb xkbdata_DATA = symbols.dir diff --git a/data/xkbdata/symbols/sun/Makefile.in b/data/xkbdata/symbols/sun/Makefile.in index 07e29061a..69f452134 100644 --- a/data/xkbdata/symbols/sun/Makefile.in +++ b/data/xkbdata/symbols/sun/Makefile.in @@ -116,6 +116,7 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ xkbdata_symbols_sundir = $(datadir)/X11/xkb/symbols/sun dist_xkbdata_symbols_sun_DATA = \ + lkeys \ se \ us \ usb |