File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1042,6 +1042,7 @@ ifeq ($(uname_S),HP-UX)
1042
1042
NO_UNSETENV = YesPlease
1043
1043
NO_HSTRERROR = YesPlease
1044
1044
NO_SYS_SELECT_H = YesPlease
1045
+ NO_FNMATCH_CASEFOLD = YesPlease
1045
1046
SNPRINTF_RETURNS_BOGUS = YesPlease
1046
1047
NO_NSEC = YesPlease
1047
1048
ifeq ($(uname_R),B.11.00)
Original file line number Diff line number Diff line change @@ -214,7 +214,10 @@ extern char *gitbasename(char *);
214
214
#define is_dir_sep (c ) ((c) == '/')
215
215
#endif
216
216
217
- #ifdef __GNUC__
217
+ #if __HP_cc >= 61000
218
+ #define NORETURN __attribute__((noreturn))
219
+ #define NORETURN_PTR
220
+ #elif defined(__GNUC__ )
218
221
#define NORETURN __attribute__((__noreturn__))
219
222
#define NORETURN_PTR __attribute__((__noreturn__))
220
223
#elif defined(_MSC_VER )
You can’t perform that action at this time.
0 commit comments