xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-font/encodings/nocompiler.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunFrom 0c0790e90a68bf8290da5c0e57142bf7c620f039 Mon Sep 17 00:00:00 2001
2*4882a593SmuzhiyunFrom: Richard Purdie <richard.purdie@linuxfoundation.org>
3*4882a593SmuzhiyunDate: Tue, 17 May 2011 23:03:02 +0000
4*4882a593SmuzhiyunSubject: [PATCH] Improve handling of 'all' architecture recipes and their
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunUpstream-Status: Inappropriate [configuration]
7*4882a593Smuzhiyun
8*4882a593SmuzhiyunXORG_DEFAULT_OPTIONS pulls in the following dependency chains:
9*4882a593Smuzhiyun
10*4882a593SmuzhiyunXORG_CWARNFLAGS -> AC_PROG_CC_C99
11*4882a593SmuzhiyunXORG_STRICT_OPTION -> AC_PROG_CC_C99, XORG_CWARNFLAGS
12*4882a593SmuzhiyunXORG_MANPAGE_SECTIONS -> AC_CANONICAL_HOST -> Checks host
13*4882a593Smuzhiyun
14*4882a593Smuzhiyuneach of which triggers the use of the host compiler. As an "all"
15*4882a593Smuzhiyunarchitecture package, it shouldn't need a compiler (and doesn't).
16*4882a593Smuzhiyun
17*4882a593SmuzhiyunRP 17/5/2011
18*4882a593Smuzhiyun
19*4882a593Smuzhiyun---
20*4882a593Smuzhiyun configure.ac | 6 +++---
21*4882a593Smuzhiyun 1 file changed, 3 insertions(+), 3 deletions(-)
22*4882a593Smuzhiyun
23*4882a593Smuzhiyundiff --git a/configure.ac b/configure.ac
24*4882a593Smuzhiyunindex b80e3de..80208bb 100644
25*4882a593Smuzhiyun--- a/configure.ac
26*4882a593Smuzhiyun+++ b/configure.ac
27*4882a593Smuzhiyun@@ -3,12 +3,12 @@ AC_INIT([encodings], [1.0.6],
28*4882a593Smuzhiyun         [https://gitlab.freedesktop.org/xorg/font/encodings/issues])
29*4882a593Smuzhiyun AM_INIT_AUTOMAKE([foreign dist-xz])
30*4882a593Smuzhiyun
31*4882a593Smuzhiyun-# Require xorg-macros: XORG_DEFAULT_OPTIONS
32*4882a593Smuzhiyun m4_ifndef([XORG_MACROS_VERSION],
33*4882a593Smuzhiyun 	  [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
34*4882a593Smuzhiyun XORG_MACROS_VERSION(1.3)
35*4882a593Smuzhiyun-XORG_DEFAULT_OPTIONS
36*4882a593Smuzhiyun-
37*4882a593Smuzhiyun+XORG_RELEASE_VERSION
38*4882a593Smuzhiyun+XORG_CHANGELOG
39*4882a593Smuzhiyun+XORG_INSTALL
40*4882a593Smuzhiyun AC_PROG_INSTALL
41*4882a593Smuzhiyun
42*4882a593Smuzhiyun # Require X.Org's font util macros 1.2 or later
43