util: Add DETECT_ARCH_HPPA macro
Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26991> (cherry picked from commit 0540c9de447730e5efe73a0c5a1a5b6c1e902722)
This commit is contained in:
parent
6febac5c96
commit
97ebcff41c
2 changed files with 9 additions and 1 deletions
|
|
@ -514,7 +514,7 @@
|
|||
"description": "util: Add DETECT_ARCH_HPPA macro",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -97,6 +97,10 @@
|
|||
#define DETECT_ARCH_MIPS 1
|
||||
#endif
|
||||
|
||||
#if defined(__hppa__)
|
||||
#define DETECT_ARCH_HPPA 1
|
||||
#endif
|
||||
|
||||
#ifndef DETECT_ARCH_X86
|
||||
#define DETECT_ARCH_X86 0
|
||||
#endif
|
||||
|
|
@ -137,4 +141,8 @@
|
|||
#define DETECT_ARCH_MIPS 0
|
||||
#endif
|
||||
|
||||
#ifndef DETECT_ARCH_HPPA
|
||||
#define DETECT_ARCH_HPPA 0
|
||||
#endif
|
||||
|
||||
#endif /* UTIL_DETECT_ARCH_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue