diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-03-12 17:22:08 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-03-12 17:22:08 +0000 |
commit | eb2e09e54c4775322e2e5a4aed4e9b01df530405 (patch) | |
tree | 3d12c943926261a5b5d41fb2519df5db6e97ac83 /font/misc-ethiopic/configure.ac | |
parent | 5027dab22840463e276f9e7da2e5478eeda79d03 (diff) |
Update all font packages to latest versions.
Main change is the use of the new XORG_DEFAULT_NOCODE_OPTIONS autotools
option that reduces the configure scripts by a fair amount.
Will speed up builds a bit. No actual changes to fonts.
Diffstat (limited to 'font/misc-ethiopic/configure.ac')
-rw-r--r-- | font/misc-ethiopic/configure.ac | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/font/misc-ethiopic/configure.ac b/font/misc-ethiopic/configure.ac index a0faf1144..7ceb8b21e 100644 --- a/font/misc-ethiopic/configure.ac +++ b/font/misc-ethiopic/configure.ac @@ -21,17 +21,17 @@ dnl CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) -AC_INIT([font-misc-ethiopic], [1.0.4], - [https://gitlab.freedesktop.org/xorg/font/misc-ethiopic/issues], +AC_PREREQ([2.60]) +AC_INIT([font-misc-ethiopic], [1.0.5], + [https://gitlab.freedesktop.org/xorg/font/misc-ethiopic/-/issues], [font-misc-ethiopic]) -AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_INIT_AUTOMAKE([foreign dist-xz]) -# Require xorg-macros: XORG_DEFAULT_OPTIONS +# Require xorg-macros 1.20 or later: XORG_DEFAULT_NOCODE_OPTIONS m4_ifndef([XORG_MACROS_VERSION], - [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.3) -XORG_DEFAULT_OPTIONS + [m4_fatal([must install xorg-macros 1.20 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.20) +XORG_DEFAULT_NOCODE_OPTIONS AC_ARG_ENABLE(truetype-install, AS_HELP_STRING([--disable-truetype-install], @@ -44,8 +44,6 @@ AC_ARG_ENABLE(opentype-install, [install_otf=$enableval], [install_otf=yes]) AM_CONDITIONAL(INSTALL_OTF, [test "x$install_otf" = xyes]) -AC_PROG_INSTALL - # Require X.Org's font util macros 1.2 or later m4_ifndef([XORG_FONT_MACROS_VERSION], [m4_fatal([must install X.Org font-util 1.2 or later before running autoconf/autogen])]) |