1998-04-22 12:58:34 +00:00
|
|
|
/*
|
1999-01-09 15:02:11 +00:00
|
|
|
* This file contains all parameters dependent on the
|
|
|
|
* operating system and build-time configuration.
|
1998-04-22 12:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_CONFIG_H_
|
|
|
|
#define _BIRD_CONFIG_H_
|
|
|
|
|
1999-01-09 15:02:11 +00:00
|
|
|
/* Include parameters determined by configure script */
|
|
|
|
#include "sysdep/autoconf.h"
|
1998-04-22 12:58:34 +00:00
|
|
|
|
1999-01-09 15:02:11 +00:00
|
|
|
/* Include OS configuration file as chosen in autoconf.h */
|
|
|
|
#include SYSCONF_INCLUDE
|
1998-04-22 12:58:34 +00:00
|
|
|
|
|
|
|
/* Types */
|
1999-01-09 15:02:11 +00:00
|
|
|
typedef signed INTEGER_8 s8;
|
|
|
|
typedef unsigned INTEGER_8 u8;
|
|
|
|
typedef INTEGER_16 s16;
|
|
|
|
typedef unsigned INTEGER_16 u16;
|
|
|
|
typedef INTEGER_32 s32;
|
|
|
|
typedef unsigned INTEGER_32 u32;
|
1998-04-22 12:58:34 +00:00
|
|
|
typedef u8 byte;
|
|
|
|
typedef u16 word;
|
|
|
|
|
1999-01-09 15:02:11 +00:00
|
|
|
/*
|
|
|
|
* Required alignment for multi-byte accesses. We currently don't
|
|
|
|
* test these values in configure script, because several CPU's
|
|
|
|
* have unaligned accesses emulated by OS and they are slower
|
|
|
|
* than a call to memcpy() which is, in fact, often compiled
|
|
|
|
* as load/store by GCC on machines which don't require alignment.
|
|
|
|
*/
|
1998-05-03 16:43:39 +00:00
|
|
|
|
1999-01-09 15:02:11 +00:00
|
|
|
#define CPU_NEEDS_ALIGN_WORD 2
|
|
|
|
#define CPU_NEEDS_ALIGN_LONG 4
|
1998-11-27 19:28:29 +00:00
|
|
|
|
1999-01-09 15:02:11 +00:00
|
|
|
/* Path to configuration file */
|
|
|
|
#define PATH_CONFIG PATH_CONFIG_DIR "/bird.conf"
|
1998-11-27 19:28:29 +00:00
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
#endif
|