99 lines
2.2 KiB
C
99 lines
2.2 KiB
C
|
/*
|
||
|
** 2008 March 6
|
||
|
**
|
||
|
** The author disclaims copyright to this source code. In place of
|
||
|
** a legal notice, here is a blessing:
|
||
|
**
|
||
|
** May you do good and not evil.
|
||
|
** May you find forgiveness for yourself and forgive others.
|
||
|
** May you share freely, never taking more than you give.
|
||
|
**
|
||
|
*************************************************************************
|
||
|
** Configuration header template to be filled in by 'configure' script
|
||
|
**
|
||
|
** @(#) $Id: config.h.in,v 1.2 2008/05/06 02:28:06 mlcreech Exp $
|
||
|
*/
|
||
|
#ifndef _CONFIG_H_
|
||
|
#define _CONFIG_H_
|
||
|
|
||
|
|
||
|
/*****************************
|
||
|
** Data types
|
||
|
*****************************/
|
||
|
|
||
|
/* Define as 1 if you have the int8_t type */
|
||
|
#undef HAVE_INT8_T
|
||
|
|
||
|
/* Define as 1 if you have the int16_t type */
|
||
|
#undef HAVE_INT16_T
|
||
|
|
||
|
/* Define as 1 if you have the int32_t type */
|
||
|
#undef HAVE_INT32_T
|
||
|
|
||
|
/* Define as 1 if you have the int64_t type */
|
||
|
#undef HAVE_INT64_T
|
||
|
|
||
|
/* Define as 1 if you have the intptr_t type */
|
||
|
#undef HAVE_INTPTR_T
|
||
|
|
||
|
/* Define as 1 if you have the uint8_t type */
|
||
|
#undef HAVE_UINT8_T
|
||
|
|
||
|
/* Define as 1 if you have the uint16_t type */
|
||
|
#undef HAVE_UINT16_T
|
||
|
|
||
|
/* Define as 1 if you have the uint32_t type */
|
||
|
#undef HAVE_UINT32_T
|
||
|
|
||
|
/* Define as 1 if you have the uint64_t type */
|
||
|
#undef HAVE_UINT64_T
|
||
|
|
||
|
/* Define as 1 if you have the uintptr_t type */
|
||
|
#undef HAVE_UINTPTR_T
|
||
|
|
||
|
|
||
|
/*****************************
|
||
|
** Header Files
|
||
|
*****************************/
|
||
|
|
||
|
/* Define as 1 if you have the sys/types.h header */
|
||
|
#undef HAVE_SYS_TYPES_H
|
||
|
|
||
|
/* Define as 1 if you have the stdlib.h header */
|
||
|
#undef HAVE_STDLIB_H
|
||
|
|
||
|
/* Define as 1 if you have the stdint.h header */
|
||
|
#undef HAVE_STDINT_H
|
||
|
|
||
|
/* Define as 1 if you have the inttypes.h header */
|
||
|
#undef HAVE_INTTYPES_H
|
||
|
|
||
|
|
||
|
/*****************************
|
||
|
** Functions
|
||
|
*****************************/
|
||
|
|
||
|
/* Define as 1 if you have the usleep() function */
|
||
|
#undef HAVE_USLEEP
|
||
|
|
||
|
/* Define as 1 if you have the fdatasync() function */
|
||
|
#undef HAVE_FDATASYNC
|
||
|
|
||
|
/* Define as 1 if you have the gmtime_r() function */
|
||
|
#undef HAVE_GMTIME_R
|
||
|
|
||
|
/* Define as 1 if you have the localtime_r() function */
|
||
|
#undef HAVE_LOCALTIME_R
|
||
|
|
||
|
|
||
|
/*****************************
|
||
|
** Large file support
|
||
|
*****************************/
|
||
|
|
||
|
#undef _FILE_OFFSET_BITS
|
||
|
#undef _LARGE_FILES
|
||
|
|
||
|
|
||
|
/* End of header */
|
||
|
#endif
|