170 lines
4.7 KiB
C
170 lines
4.7 KiB
C
/* Name of package */
|
|
#define PACKAGE "cmocka"
|
|
|
|
/* Version number of package */
|
|
#define VERSION "1.1.0"
|
|
|
|
/* #undef LOCALEDIR */
|
|
#define DATADIR "/usr/local/share/cmocka"
|
|
#define LIBDIR "/usr/local/lib"
|
|
#define PLUGINDIR "/usr/local/lib/cmocka-0"
|
|
#define SYSCONFDIR "/usr/local/etc"
|
|
#define BINARYDIR "/home/anton/programs/libfort/tests/cmocka-1.1.0/build"
|
|
#define SOURCEDIR "/home/anton/programs/libfort/tests/cmocka-1.1.0"
|
|
|
|
/************************** HEADER FILES *************************/
|
|
|
|
/* Define to 1 if you have the <assert.h> header file. */
|
|
#define HAVE_ASSERT_H 1
|
|
|
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
/* #undef HAVE_DLFCN_H */
|
|
|
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
#define HAVE_INTTYPES_H 1
|
|
|
|
/* Define to 1 if you have the <io.h> header file. */
|
|
/* #undef HAVE_IO_H */
|
|
|
|
/* Define to 1 if you have the <malloc.h> header file. */
|
|
#define HAVE_MALLOC_H 1
|
|
|
|
/* Define to 1 if you have the <memory.h> header file. */
|
|
#define HAVE_MEMORY_H 1
|
|
|
|
/* Define to 1 if you have the <setjmp.h> header file. */
|
|
#define HAVE_SETJMP_H 1
|
|
|
|
/* Define to 1 if you have the <signal.h> header file. */
|
|
#define HAVE_SIGNAL_H 1
|
|
|
|
/* Define to 1 if you have the <stdarg.h> header file. */
|
|
#define HAVE_STDARG_H 1
|
|
|
|
/* Define to 1 if you have the <stddef.h> header file. */
|
|
#define HAVE_STDDEF_H 1
|
|
|
|
/* Define to 1 if you have the <stdint.h> header file. */
|
|
#define HAVE_STDINT_H 1
|
|
|
|
/* Define to 1 if you have the <stdio.h> header file. */
|
|
#define HAVE_STDIO_H 1
|
|
|
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
#define HAVE_STDLIB_H 1
|
|
|
|
/* Define to 1 if you have the <strings.h> header file. */
|
|
#define HAVE_STRINGS_H 1
|
|
|
|
/* Define to 1 if you have the <string.h> header file. */
|
|
#define HAVE_STRING_H 1
|
|
|
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
#define HAVE_SYS_STAT_H 1
|
|
|
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
#define HAVE_SYS_TYPES_H 1
|
|
|
|
/* Define to 1 if you have the <time.h> header file. */
|
|
#define HAVE_TIME_H 1
|
|
|
|
/* Define to 1 if you have the <unistd.h> header file. */
|
|
#define HAVE_UNISTD_H 1
|
|
|
|
/**************************** STRUCTS ****************************/
|
|
|
|
#define HAVE_STRUCT_TIMESPEC 1
|
|
|
|
/*************************** FUNCTIONS ***************************/
|
|
|
|
/* Define to 1 if you have the `calloc' function. */
|
|
#define HAVE_CALLOC 1
|
|
|
|
/* Define to 1 if you have the `exit' function. */
|
|
#define HAVE_EXIT 1
|
|
|
|
/* Define to 1 if you have the `fprintf' function. */
|
|
#define HAVE_FPRINTF 1
|
|
|
|
/* Define to 1 if you have the `snprintf' function. */
|
|
#define HAVE_SNPRINTF 1
|
|
|
|
/* Define to 1 if you have the `_snprintf' function. */
|
|
/* #undef HAVE__SNPRINTF */
|
|
|
|
/* Define to 1 if you have the `_snprintf_s' function. */
|
|
/* #undef HAVE__SNPRINTF_S */
|
|
|
|
/* Define to 1 if you have the `vsnprintf' function. */
|
|
#define HAVE_VSNPRINTF 1
|
|
|
|
/* Define to 1 if you have the `_vsnprintf' function. */
|
|
/* #undef HAVE__VSNPRINTF */
|
|
|
|
/* Define to 1 if you have the `_vsnprintf_s' function. */
|
|
/* #undef HAVE__VSNPRINTF_S */
|
|
|
|
/* Define to 1 if you have the `free' function. */
|
|
#define HAVE_FREE 1
|
|
|
|
/* Define to 1 if you have the `longjmp' function. */
|
|
#define HAVE_LONGJMP 1
|
|
|
|
/* Define to 1 if you have the `siglongjmp' function. */
|
|
#define HAVE_SIGLONGJMP 1
|
|
|
|
/* Define to 1 if you have the `malloc' function. */
|
|
#define HAVE_MALLOC 1
|
|
|
|
/* Define to 1 if you have the `memcpy' function. */
|
|
#define HAVE_MEMCPY 1
|
|
|
|
/* Define to 1 if you have the `memset' function. */
|
|
#define HAVE_MEMSET 1
|
|
|
|
/* Define to 1 if you have the `printf' function. */
|
|
#define HAVE_PRINTF 1
|
|
|
|
/* Define to 1 if you have the `setjmp' function. */
|
|
#define HAVE_SETJMP 1
|
|
|
|
/* Define to 1 if you have the `signal' function. */
|
|
#define HAVE_SIGNAL 1
|
|
|
|
/* Define to 1 if you have the `snprintf' function. */
|
|
#define HAVE_SNPRINTF 1
|
|
|
|
/* Define to 1 if you have the `strcmp' function. */
|
|
#define HAVE_STRCMP 1
|
|
|
|
/* Define to 1 if you have the `strcpy' function. */
|
|
/* #undef HAVE_STRCPY */
|
|
|
|
/* Define to 1 if you have the `vsnprintf' function. */
|
|
#define HAVE_VSNPRINTF 1
|
|
|
|
/* Define to 1 if you have the `strsignal' function. */
|
|
#define HAVE_STRSIGNAL 1
|
|
|
|
/* Define to 1 if you have the `clock_gettime' function. */
|
|
#define HAVE_CLOCK_GETTIME 1
|
|
|
|
/**************************** OPTIONS ****************************/
|
|
|
|
/* Check if we have TLS support with GCC */
|
|
#define HAVE_GCC_THREAD_LOCAL_STORAGE 1
|
|
|
|
/* Check if we have TLS support with MSVC */
|
|
/* #undef HAVE_MSVC_THREAD_LOCAL_STORAGE */
|
|
|
|
/* Check if we have CLOCK_REALTIME for clock_gettime() */
|
|
#define HAVE_CLOCK_GETTIME_REALTIME 1
|
|
|
|
/*************************** ENDIAN *****************************/
|
|
|
|
#define WORDS_SIZEOF_VOID_P 8
|
|
|
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
/* #undef WORDS_BIGENDIAN */
|