summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-15 16:25:50 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-15 16:25:50 -0800
commit14db755819fd897d1c2328a988afa0bb91055c41 (patch)
tree827667d4e81792c580af665cc856992c89544edf /configure.ac
parent7aedacd2c7c0c4d2780e68c96a3d8e164d441f8f (diff)
Switch to XORG_DEFAULT_NOCODE_OPTIONS
Stop running all sorts of compiler tests we don't need since there is no code in this module to compile. Requires xorg-macros 1.20. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index ca0470e..7324c87 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,11 +27,11 @@ AC_INIT([font-misc-ethiopic], [1.0.4],
[font-misc-ethiopic])
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])])