| AC_PREREQ([2.65]) | AC_PREREQ([2.65]) | ||||
| AC_INIT([Unicode Character Database Tools], [9.0.0], [https://github.com/rhdunn/ucd-tools/issues], [ucd-tools], [https://github.com/rhdunn/ucd-tools]) | |||||
| AC_INIT([Unicode Character Database Tools], [10.0.0], [https://github.com/rhdunn/ucd-tools/issues], [ucd-tools], [https://github.com/rhdunn/ucd-tools]) | |||||
| AM_INIT_AUTOMAKE() | AM_INIT_AUTOMAKE() | ||||
| m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES]) | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES]) | ||||
| dnl ================================================================ | dnl ================================================================ | ||||
| AC_ARG_WITH([unicode-version], | AC_ARG_WITH([unicode-version], | ||||
| [AS_HELP_STRING([--with-unicode-version], [Unicode version to support @<:@default=9.0.0@:>@])], | |||||
| [AS_HELP_STRING([--with-unicode-version], [Unicode version to support @<:@default=10.0.0@:>@])], | |||||
| [AS_IF([test x"$withval" != x], | [AS_IF([test x"$withval" != x], | ||||
| [UCD_VERSION="$withval"])], | [UCD_VERSION="$withval"])], | ||||
| [UCD_VERSION="9.0.0"]) | |||||
| [UCD_VERSION="10.0.0"]) | |||||
| AC_SUBST(UCD_VERSION) | AC_SUBST(UCD_VERSION) | ||||