mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-16 08:41:42 +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
|
E: darius@dons.net.au
|
||||||
D: Autoconf support and portability
|
D: Autoconf support and portability
|
||||||
D: Corrected failed mmap checking
|
D: Corrected failed mmap checking
|
||||||
|
D: FreeBSD support
|
||||||
|
|
||||||
N: Tim Rowley
|
N: Tim Rowley
|
||||||
E: tor@cs.brown.edu
|
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>
|
Daniel J. O'Connor <darius@dons.net.au>
|
||||||
Tim Rowley <tor@cs.brown.edu>
|
Tim Rowley <tor@cs.brown.edu>
|
||||||
|
|
||||||
|
FreeBSD support:
|
||||||
|
Daniel J. O'Connor <darius@dons.net.au>
|
||||||
|
|
||||||
Makefile fixes:
|
Makefile fixes:
|
||||||
Tarjei Skorgenes <tarjei.skorgenes@online.no>
|
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>
|
#include <config.h>
|
||||||
|
|
||||||
|
#ifdef __FreeBSD__
|
||||||
|
#include <machine/asm.h>
|
||||||
|
#define C(label) CNAME(label)
|
||||||
|
#else
|
||||||
#ifdef HAVE_SYM_PREFIX_UNDERSCORE
|
#ifdef HAVE_SYM_PREFIX_UNDERSCORE
|
||||||
# define C(label) _##label
|
# define C(label) _##label
|
||||||
#else
|
#else
|
||||||
# define C(label) label
|
# define C(label) label
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// !!! note that this file must match the corresponding C structures at all
|
// !!! note that this file must match the corresponding C structures at all
|
||||||
|
|
Loading…
Reference in a new issue