mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 19:32:30 +00:00
added FreeBSD CNAME patch from Daniel J. O'Connor <darius@dons.net.au>
This commit is contained in:
parent
676185672e
commit
8bd5fd1e35
3 changed files with 9 additions and 0 deletions
1
AUTHORS
1
AUTHORS
|
@ -75,6 +75,7 @@ N: Daniel J. O'Connor
|
|||
E: darius@dons.net.au
|
||||
D: Autoconf support and portability
|
||||
D: Corrected failed mmap checking
|
||||
D: FreeBSD support
|
||||
|
||||
N: Tim Rowley
|
||||
E: tor@cs.brown.edu
|
||||
|
|
3
CREDITS
3
CREDITS
|
@ -34,6 +34,9 @@ Autoconf support and portability isues:
|
|||
Daniel J. O'Connor <darius@dons.net.au>
|
||||
Tim Rowley <tor@cs.brown.edu>
|
||||
|
||||
FreeBSD support:
|
||||
Daniel J. O'Connor <darius@dons.net.au>
|
||||
|
||||
Makefile fixes:
|
||||
Tarjei Skorgenes <tarjei.skorgenes@online.no>
|
||||
|
||||
|
|
|
@ -25,11 +25,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include <config.h>
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <machine/asm.h>
|
||||
#define C(label) CNAME(label)
|
||||
#else
|
||||
#ifdef HAVE_SYM_PREFIX_UNDERSCORE
|
||||
# define C(label) _##label
|
||||
#else
|
||||
# define C(label) label
|
||||
#endif
|
||||
#endif
|
||||
|
||||
//
|
||||
// !!! note that this file must match the corresponding C structures at all
|
||||
|
|
Loading…
Reference in a new issue