You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
AC_DEFUN([CREATE_HEX_VERSION],[
|
|
|
|
HEX_VERSION=`echo $VERSION | sed 's|[\-a-z0-9]*$||' | \
|
|
awk -F. '{printf "0x%0.2d%0.3d%0.3d", $[]1, $[]2, $[]3}'`
|
|
AC_SUBST([HEX_VERSION])
|
|
])
|