diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-16 01:32:26 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-16 01:32:26 +0000 |
commit | ad6f4cfa44ff746db4a38dfddf725505611400a6 (patch) | |
tree | e3f6825226b2547a847fbb778914765c9fe41e61 /driver/xf86-video-i740/configure | |
parent | e889f63b0fdd45de06f2be8d7db2f83816835b4a (diff) |
regen
Diffstat (limited to 'driver/xf86-video-i740/configure')
-rw-r--r-- | driver/xf86-video-i740/configure | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/driver/xf86-video-i740/configure b/driver/xf86-video-i740/configure index 28914614b..74535a8f9 100644 --- a/driver/xf86-video-i740/configure +++ b/driver/xf86-video-i740/configure @@ -20119,6 +20119,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 + + XORG_SGML_PATH=$prefix/share/sgml |