added FreeBSD CNAME patch from Daniel J. O'Connor <darius@dons.net.au>

This commit is contained in:
Bill Currie 2000-01-17 08:22:36 +00:00
parent 676185672e
commit 8bd5fd1e35
3 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -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