1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/*
* Define this if your C library doesn't have usleep.
*
* $Id: acconfig.h,v 1.12 2001/06/21 15:53:03 ucaccsp Exp $
*/
#undef NEED_USLEEP
#undef NEED_SNPRINTF
/*
* Missing declarations
*/
#undef GETTOD_NOT_DECLARED
#undef KILL_NOT_DECLARED
/*
* If you don't have these types in <inttypes.h>, #define these to be
* the types you do have.
*/
#undef int16_t
#undef int32_t
#undef int64_t
#undef int8_t
#undef uint16_t
#undef uint32_t
#undef uint8_t
/*
* Debugging:
* DEBUG: general debugging
* DEBUG_MEM: debug memory allocation
*/
#undef DEBUG
#undef DEBUG_MEM
/*
* Optimization
*/
#undef NDEBUG
/* Audio device relate */
#undef HAVE_SPARC_AUDIO
#undef HAVE_SGI_AUDIO
#undef HAVE_PCA_AUDIO
#undef HAVE_LUIGI_AUDIO
#undef HAVE_NEWPCM_AUDIO
#undef HAVE_OSS_AUDIO
#undef HAVE_HP_AUDIO
#undef HAVE_NETBSD_AUDIO
#undef HAVE_OSPREY_AUDIO
#undef HAVE_MACHINE_PCAUDIOIO_H
#undef HAVE_ALSA_AUDIO
#undef HAVE_IXJ_AUDIO
#undef HAVE_G728
#undef HAVE_IPv6
/* GSM related */
#undef SASR
#undef FAST
#undef USE_FLOAT_MUL
@BOTTOM@
#ifndef WORDS_BIGENDIAN
#define WORDS_SMALLENDIAN
#endif
|