mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 10:50:10 +01:00
no underscore prefix for freebsd >= 3 (Simon Walton)
This commit is contained in:
parent
6e6d4c66bd
commit
73d03344f4
1 changed files with 4 additions and 2 deletions
|
|
@ -236,7 +236,8 @@
|
|||
|
||||
|
||||
#if defined(Lynx) || (defined(SYSV) || defined(SVR4)) && !defined(ACK_ASSEMBLER) \
|
||||
|| (defined(linux) || defined(__OS2ELF__)) && defined(__ELF__)
|
||||
|| (defined(linux) || defined(__OS2ELF__)) && defined(__ELF__) \
|
||||
|| defined(__FreeBSD__) && __FreeBSD__ >= 3
|
||||
#define GLNAME(a) a
|
||||
#else
|
||||
#define GLNAME(a) CONCAT(_,a)
|
||||
|
|
@ -930,7 +931,8 @@
|
|||
#endif
|
||||
|
||||
#if defined(Lynx) || (defined(SYSV) || defined(SVR4)) \
|
||||
|| (defined(linux) || defined(__OS2ELF__)) && defined(__ELF__)
|
||||
|| (defined(linux) || defined(__OS2ELF__)) && defined(__ELF__) \
|
||||
|| defined(__FreeBSD__) && __FreeBSD__ >= 3
|
||||
#define GLNAME(a) a
|
||||
#else
|
||||
#define GLNAME(a) _ ## a
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue