Skip to content

Commit a8204d2

Browse files
author
ripley
committed
record HAVE_ENUM_BASE_TYPE
git-svn-id: https://svn.r-project.org/R/trunk@87766 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent fdff1f0 commit a8204d2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/gnuwin32/fixed/h/Rconfig.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
/* #undef HAVE_ALLOCA_H */
3030
/* optional C99 type */
3131
#define HAVE_UINTPTR_T 1
32+
/* C23 (or clang) extension */
33+
#define HAVE_ENUM_BASE_TYPE 1
3234

3335
#endif /* not R_CONFIG_H */
3436

tools/GETCONFIG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ echo "${line}"
4242
echo "/* optional C99 type */"
4343
line=`grep "HAVE_UINTPTR_T" config.h`
4444
echo "${line}"
45+
echo "/* C23 (or clang) extension */"
46+
line=`grep "HAVE_ENUM_BASE_TYPE" config.h`
47+
echo "${line}"
4548
echo
4649
echo "#endif /* not R_CONFIG_H */"
4750
echo

0 commit comments

Comments
 (0)