Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2022-08-23 00:54:43 +0300
committerJeff Johnston <jjohnstn@redhat.com>2022-08-23 00:55:23 +0300
commit64a11fded15b92b56b91d65fd5b2851245f69299 (patch)
tree687d1215788107ed92e207c07a91447dc1a7ef3f /newlib/_newlib_version.hin
parentc3e92052bbaa861d35646e7f9ceb813c8be26a64 (diff)
Fix problem with _newlib_version.h not being filled in correctly
Diffstat (limited to 'newlib/_newlib_version.hin')
-rw-r--r--newlib/_newlib_version.hin15
1 files changed, 4 insertions, 11 deletions
diff --git a/newlib/_newlib_version.hin b/newlib/_newlib_version.hin
index 077b81ecf..26c680c8f 100644
--- a/newlib/_newlib_version.hin
+++ b/newlib/_newlib_version.hin
@@ -2,16 +2,9 @@
#ifndef _NEWLIB_VERSION_H__
#define _NEWLIB_VERSION_H__ 1
-/* The newlib version in string format. */
-#define _NEWLIB_VERSION "@NEWLIB_VERSION@"
-
-/* The newlib major version number. */
-#define __NEWLIB__ @NEWLIB_MAJOR_VERSION@
-
-/* The newlib minor version number. */
-#define __NEWLIB_MINOR__ @NEWLIB_MINOR_VERSION@
-
-/* The newlib patch level. */
-#define __NEWLIB_PATCHLEVEL__ @NEWLIB_PATCHLEVEL_VERSION@
+#undef _NEWLIB_VERSION
+#undef __NEWLIB__
+#undef __NEWLIB_MINOR__
+#undef __NEWLIB_PATCHLEVEL__
#endif /* !_NEWLIB_VERSION_H__ */