mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
mips: Fix compat32 library builds from r366162
Re-add the a_ptr and a_fcn fields to Elf32_Auxinfo. MFC after: 1 week Sponsored by: Juniper Networks, Inc.
This commit is contained in:
parent
fcefa24551
commit
ebf7855dcd
1 changed files with 4 additions and 0 deletions
|
|
@ -105,6 +105,10 @@ typedef struct { /* Auxiliary vector entry on initial stack */
|
|||
int a_type; /* Entry type. */
|
||||
union {
|
||||
int a_val; /* Integer value. */
|
||||
#ifndef __mips_n64
|
||||
void *a_ptr; /* Address. */
|
||||
void (*a_fcn)(void); /* Function pointer (not used). */
|
||||
#endif
|
||||
} a_un;
|
||||
} Elf32_Auxinfo;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue