Skip to content

Commit 51670c7

Browse files
committed
Fix build failures caused by update in glibc
Resolves: rhbz#1477082
1 parent e79c292 commit 51670c7

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/lib/libast/features/stdio

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ cat{
66
#define _FILE_DEFINED 1
77
#define _FILE_defined 1
88
#define _FILEDEFED 1
9+
#define __FILE_defined 1
10+
#define ____FILE_defined 1
911

1012
#ifndef __FILE_TAG
1113
#define __FILE_TAG _sfio_s

src/lib/libast/include/ast.h

+12
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,21 @@ struct _sfio_s;
5858
#ifndef __FILE_typedef
5959
#define __FILE_typedef 1
6060
#endif
61+
#ifndef _FILE_DEFINED
62+
#define _FILE_DEFINED 1
63+
#endif
64+
#ifndef _FILE_defined
65+
#define _FILE_defined 1
66+
#endif
6167
#ifndef _FILEDEFED
6268
#define _FILEDEFED 1
6369
#endif
70+
#ifndef __FILE_defined
71+
#define __FILE_defined 1
72+
#endif
73+
#ifndef ____FILE_defined
74+
#define ____FILE_defined 1
75+
#endif
6476
#endif
6577

6678
/*

0 commit comments

Comments
 (0)