diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-15 23:28:28 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-15 23:28:28 +0000 |
commit | 3f5a0af50bdd5302dfc3a7dd37a3008672d52ca5 (patch) | |
tree | 2c545202b91d6e161a03c0e6f18b904e56ac3b71 /lib/libXcursor/configure | |
parent | 9f8b198dcc8e573fc819bd15cd5214e9213ea14c (diff) |
regen
Diffstat (limited to 'lib/libXcursor/configure')
-rw-r--r-- | lib/libXcursor/configure | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/libXcursor/configure b/lib/libXcursor/configure index 0d0c15f00..c859a0637 100644 --- a/lib/libXcursor/configure +++ b/lib/libXcursor/configure @@ -2009,7 +2009,7 @@ fi XORG_MACROS_needed_minor=`echo $XORG_MACROS_needed_version | sed -e 's/^[0-9]*\.//' -e 's/\..*$//'` echo "$as_me:$LINENO: checking if xorg-macros used to generate configure is at least ${XORG_MACROS_needed_major}.${XORG_MACROS_needed_minor}" >&5 echo $ECHO_N "checking if xorg-macros used to generate configure is at least ${XORG_MACROS_needed_major}.${XORG_MACROS_needed_minor}... $ECHO_C" >&6 - XORG_MACROS_version=1.1.2 + XORG_MACROS_version=1.1.5 XORG_MACROS_major=`echo $XORG_MACROS_version | sed 's/\..*$//'` XORG_MACROS_minor=`echo $XORG_MACROS_version | sed -e 's/^[0-9]*\.//' -e 's/\..*$//'` if test $XORG_MACROS_major -ne $XORG_MACROS_needed_major ; then @@ -18897,6 +18897,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 + + |