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-meltho/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-meltho/configure.ac')
-rw-r--r-- | font/misc-meltho/configure.ac | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/font/misc-meltho/configure.ac b/font/misc-meltho/configure.ac index be9233715..709bdf296 100644 --- a/font/misc-meltho/configure.ac +++ b/font/misc-meltho/configure.ac @@ -21,20 +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-meltho], [1.0.3], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], +AC_PREREQ([2.60]) +AC_INIT([font-misc-meltho], [1.0.4], + [https://gitlab.freedesktop.org/xorg/font/misc-meltho/-/issues], [font-misc-meltho]) -AM_INIT_AUTOMAKE([foreign dist-bzip2]) -AM_MAINTAINER_MODE +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 - -AC_PROG_INSTALL + [m4_fatal([must install xorg-macros 1.20 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.20) +XORG_DEFAULT_NOCODE_OPTIONS # Require X.Org's font util macros 1.2 or later m4_ifndef([XORG_FONT_MACROS_VERSION], @@ -44,4 +41,5 @@ XORG_FONT_MACROS_VERSION(1.2) XORG_FONTDIR([OTF]) XORG_FONT_SCALED_UTILS -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |