Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 1 | From 0c0790e90a68bf8290da5c0e57142bf7c620f039 Mon Sep 17 00:00:00 2001 |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2 | From: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 3 | Date: Tue, 17 May 2011 23:03:02 +0000 |
| 4 | Subject: [PATCH] Improve handling of 'all' architecture recipes and their |
| 5 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | Upstream-Status: Inappropriate [configuration] |
| 7 | |
| 8 | XORG_DEFAULT_OPTIONS pulls in the following dependency chains: |
| 9 | |
| 10 | XORG_CWARNFLAGS -> AC_PROG_CC_C99 |
| 11 | XORG_STRICT_OPTION -> AC_PROG_CC_C99, XORG_CWARNFLAGS |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 12 | XORG_MANPAGE_SECTIONS -> AC_CANONICAL_HOST -> Checks host |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | |
| 14 | each of which triggers the use of the host compiler. As an "all" |
| 15 | architecture package, it shouldn't need a compiler (and doesn't). |
| 16 | |
| 17 | RP 17/5/2011 |
| 18 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 19 | --- |
| 20 | configure.ac | 6 +++--- |
| 21 | 1 file changed, 3 insertions(+), 3 deletions(-) |
| 22 | |
| 23 | diff --git a/configure.ac b/configure.ac |
Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 24 | index b80e3de..80208bb 100644 |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 25 | --- a/configure.ac |
| 26 | +++ b/configure.ac |
Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 27 | @@ -3,12 +3,12 @@ AC_INIT([encodings], [1.0.6], |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 28 | [https://gitlab.freedesktop.org/xorg/font/encodings/issues]) |
Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 29 | AM_INIT_AUTOMAKE([foreign dist-xz]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 30 | |
| 31 | -# Require xorg-macros: XORG_DEFAULT_OPTIONS |
| 32 | m4_ifndef([XORG_MACROS_VERSION], |
| 33 | [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) |
| 34 | XORG_MACROS_VERSION(1.3) |
| 35 | -XORG_DEFAULT_OPTIONS |
| 36 | - |
| 37 | +XORG_RELEASE_VERSION |
| 38 | +XORG_CHANGELOG |
| 39 | +XORG_INSTALL |
| 40 | AC_PROG_INSTALL |
| 41 | |
| 42 | # Require X.Org's font util macros 1.2 or later |