From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id B2A2D3857B8E; Fri, 17 Nov 2023 12:11:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B2A2D3857B8E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1700223066; bh=An7EBv+WClHZcpC5TqjKzzynjLziubmiO8uj4gn54cs=; h=From:To:Subject:Date:From; b=HMkh6138iZuI0+U/ZPNaF12x9mFSe8Y4al0hcm6LtzWn70XdWC4gEx26QKePRttPw y80qGAYlDR6/mP43/MOsptFrfPG+ED97ncXslZNY9PIuy1b8pIolcH1bUhctQXe8Vl 8B0sVagNGpHAqd29s/0Bkfl6nDKAfr8Mk3PUXf7I= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin/main] newlib.hin: regenerate X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/main X-Git-Oldrev: 2cc109be1d332a0e8e488f35b8b1e112f3b7b284 X-Git-Newrev: 7e4840bc459d5105a9d6290df1323ba1360ba081 Message-Id: <20231117121106.B2A2D3857B8E@sourceware.org> Date: Fri, 17 Nov 2023 12:11:06 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D7e4840bc459= d5105a9d6290df1323ba1360ba081 commit 7e4840bc459d5105a9d6290df1323ba1360ba081 Author: Corinna Vinschen AuthorDate: Thu Nov 16 20:06:19 2023 +0100 Commit: Corinna Vinschen CommitDate: Fri Nov 17 13:10:20 2023 +0100 newlib.hin: regenerate =20 The last two patches to configure.ac missed regeneration of newlib.hin. =20 Fixes: 64a11fded15b ("Fix problem with _newlib_version.h not being fill= ed in correctly") Fixes: 39f734a857e2 ("newlib: fix AC_DEFINE quoting style with version = macros") Signed-off-by: Corinna Vinschen Diff: --- newlib/newlib.hin | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/newlib/newlib.hin b/newlib/newlib.hin index e87a5eabbb24..8318469400b0 100644 --- a/newlib/newlib.hin +++ b/newlib/newlib.hin @@ -375,6 +375,9 @@ /* nano version of malloc is used. */ #undef _NANO_MALLOC =20 +/* The newlib version in string format. */ +#undef _NEWLIB_VERSION + /* Verify _REENT_CHECK macros allocate memory successfully. */ #undef _REENT_CHECK_VERIFY =20 @@ -422,4 +425,13 @@ /* Define if wide char orientation is supported. */ #undef _WIDE_ORIENT =20 +/* The newlib minor version number. */ +#undef __NEWLIB_MINOR__ + +/* The newlib patch level. */ +#undef __NEWLIB_PATCHLEVEL__ + +/* The newlib major version number. */ +#undef __NEWLIB__ + #endif /* !__NEWLIB_H__ */