opnsense-src/contrib/amd/m4/macros/name_version.m4
2003-09-02 15:27:38 +00:00

8 lines
295 B
Text

dnl ######################################################################
dnl Version of package
AC_DEFUN(AC_NAME_VERSION,
[AC_MSG_CHECKING(version of package)
AC_DEFINE_UNQUOTED(VERSION, "$1")
AC_MSG_RESULT(\"$1\")
])
dnl ======================================================================