From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id D45F83858D37; Sun, 15 Oct 2023 09:28:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D45F83858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1697362099; bh=QHEjEdROWrQlN738H/5/ivGIkGYJs0xvFrMVqtElKkU=; h=From:To:Subject:Date:From; b=rfdJ0PFDr2/g4whjVxeyfEA/Wn4CnnwgVW6lENXX9822GZgCDJ96XQz+EgPmbbd8z PfJJoBkelip/ULkHbgn8unbRtU0fma92jWabaPYJq9U8C+TMwERWmLojYkcU/358S9 IE7Vx5j/7uNJFlSr50H3EFTFoGwdvxDO+j791up8= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin/main] newlib: fix AC_DEFINE quoting style with version macros X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/main X-Git-Oldrev: fbc5496e40eeb6d0d2ae2a3bf90182e2a9cd74f0 X-Git-Newrev: 39f734a857e2692224715b03b99fc7bd83e94a0f Message-Id: <20231015092819.D45F83858D37@sourceware.org> Date: Sun, 15 Oct 2023 09:28:19 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D39f734a857e= 2692224715b03b99fc7bd83e94a0f commit 39f734a857e2692224715b03b99fc7bd83e94a0f Author: Mike Frysinger Date: Sun Oct 15 15:10:52 2023 +0545 newlib: fix AC_DEFINE quoting style with version macros =20 configure.ac files use [] for quoting by default, not "", which means the "" are passed through as literals. We don't want that for these comments, so change the "..." to [...]. Diff: --- newlib/configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/newlib/configure.ac b/newlib/configure.ac index 97549ba32..94242c082 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -410,10 +410,10 @@ EOF fi AC_SUBST(EXEEXT_FOR_BUILD) =20 -AC_DEFINE(_NEWLIB_VERSION,"NEWLIB_VERSION","The newlib version in string f= ormat.") -AC_DEFINE(__NEWLIB__,NEWLIB_MAJOR_VERSION,"The newlib major version number= .") -AC_DEFINE(__NEWLIB_MINOR__,NEWLIB_MINOR_VERSION,"The newlib minor version = number.") -AC_DEFINE(__NEWLIB_PATCHLEVEL__,NEWLIB_PATCHLEVEL_VERSION,"The newlib patc= h level.") +AC_DEFINE(_NEWLIB_VERSION, "NEWLIB_VERSION", [The newlib version in string= format.]) +AC_DEFINE(__NEWLIB__, NEWLIB_MAJOR_VERSION, [The newlib major version numb= er.]) +AC_DEFINE(__NEWLIB_MINOR__, NEWLIB_MINOR_VERSION, [The newlib minor versio= n number.]) +AC_DEFINE(__NEWLIB_PATCHLEVEL__, NEWLIB_PATCHLEVEL_VERSION, [The newlib pa= tch level.]) =20 if test "${newlib_elix_level}" -gt "0"; then AC_DEFINE_UNQUOTED(_ELIX_LEVEL, ${newlib_elix_level}, [EL/IX level])