<html><head></head><body>That's too long name for non-verbose Makefile runs. Having two named for the same thing feels meh.<br><br><div class="gmail_quote">Le 6 juin 2018 12:02:01 GMT+03:00, Steve Lhomme <robux4@ycbcr.xyz> a écrit :<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<pre class="k9mail">This is a variable commonly used with AX_PROG_CC_FOR_BUILD.<br>If our legacy BUILDCC is set, we use that.<br>If nothing is set we still look for a c99 compiler.<br><br>Internally we still compile with BUILDCC<br>---<br> configure.ac | 8 +++++---<br> 1 file changed, 5 insertions(+), 3 deletions(-)<br><br>diff --git a/configure.ac b/configure.ac<br>index 0b2d8903ce..942306427e 100644<br>--- a/configure.ac<br>+++ b/configure.ac<br>@@ -59,10 +59,12 @@ AC_PROG_YACC<br> <br> AC_ARG_VAR([DESKTOP_FILE_VALIDATE], [Validator for desktop entry files])<br> AC_CHECK_PROGS(DESKTOP_FILE_VALIDATE, [${DESKTOP_FILE_VALIDATE} desktop-file-validate], :)<br>-AC_ARG_VAR([BUILDCC], [Build system C11 or C99 compiler command])<br>-AC_CHECK_PROGS(BUILDCC, [c11-gcc c11 c99-gcc c99], [false])<br>+AC_ARG_VAR([CC_FOR_BUILD], [Build system C11 or C99 compiler command])<br>+AC_ARG_VAR([CFLAGS_FOR_BUILD], [Build system compiler CFLAGS])<br>+AS_IF([test -n "$BUILDCC"],[CC_FOR_BUILD=${BUILDCC}])<br>+AC_CHECK_PROGS(BUILDCC, [${CC_FOR_BUILD} c11-gcc c11 c99-gcc c99], [false])<br> AS_IF([test "$BUILDCC" = "false"], [<br>-  AC_MSG_ERROR([Cannot find native C99 compiler: please define BUILDCC.])<br>+  AC_MSG_ERROR([Cannot find native C99 compiler: please define CC_FOR_BUILD.])<br> ])<br> <br> dnl Check for compiler properties</pre></blockquote></div><br>
-- <br>
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>