mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 07:23:03 +01:00
661d16f298
o check for the existence of the function strcasecmp and stricmp o replaced STRICMP
107 lines
2.0 KiB
C
107 lines
2.0 KiB
C
#ident "$Id: config.h.in,v 1.30 2002-08-28 06:50:33 eku Exp $"
|
|
|
|
/*
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete ports:
|
|
* - MAC ("MAC", "MAC_AUX" and "MAC_CP" defines)
|
|
* - EPSON, DELTA, IMP, NCR3000, NeXT, M88K
|
|
* - Cray, OS/2 and Apollo
|
|
*
|
|
* 2002-02-24 Sean Leyne - Code Cleanup of old Win 3.1 port (WINDOWS_ONLY)
|
|
*
|
|
*/
|
|
|
|
#ifndef AUTOCONFIG_H
|
|
#define AUTOCONFIG_H
|
|
|
|
|
|
/* Headers */
|
|
#undef HAVE_ASSERT_H
|
|
#undef HAVE_CTYPE_H
|
|
#undef HAVE_ERRNO_H
|
|
#undef HAVE_FCNTL_H
|
|
#undef HAVE_GRP_H
|
|
#undef HAVE_PWD_H
|
|
#undef HAVE_LIBIO_H
|
|
#undef HAVE_LOCALE_H
|
|
#undef HAVE_MATH_H
|
|
#undef HAVE_PTHREAD_H
|
|
#undef HAVE_SYS_TYPES_H
|
|
#undef HAVE_SYS_STAT_H
|
|
#undef HAVE_SYS_UIO_H
|
|
#undef HAVE_SYS_WAIT_H
|
|
#undef HAVE_TIME_H
|
|
#undef HAVE_SYS_TIME_H
|
|
#undef HAVE_SYS_TIMEB_H
|
|
#undef HAVE_SYS_PARAM_H
|
|
#undef HAVE_SYS_IOCTL_H
|
|
#undef HAVE_SETJMP_H
|
|
#undef HAVE_STDARG_H
|
|
#undef HAVE_STDLIB_H
|
|
#undef HAVE_STRING_H
|
|
#undef HAVE_SIGNAL_H
|
|
#undef HAVE_READLINE_READLINE_H
|
|
#undef HAVE_UNISTD_H
|
|
#undef HAVE_VARARGS_H
|
|
|
|
/* Functions */
|
|
#undef HAVE_STRLCPY
|
|
#undef HAVE_STRLCAT
|
|
#undef HAVE_GETTIMEOFDAY
|
|
#undef HAVE_TIME
|
|
#undef HAVE_TIMES
|
|
#undef HAVE_STRCASECMP
|
|
#undef HAVE_STRICMP
|
|
#undef HAVE_DIRNAME
|
|
#undef HAVE_SIGACTION
|
|
#undef HAVE_SNPRINTF
|
|
#undef HAVE_MMAP
|
|
|
|
/* Types */
|
|
#undef socklen_t
|
|
|
|
/* gettimeofday accepts second (timezone) argument */
|
|
#undef GETTIMEOFDAY_RETURNS_TIMEZONE
|
|
|
|
/* Are we doing 64bit IO on unix */
|
|
#undef UNIX_64_BIT_IO
|
|
|
|
/* Is the platform big endian? */
|
|
#define WORDS_BIGENDIAN 0
|
|
|
|
/* Return type of signal handler */
|
|
#define RETSIGTYPE void
|
|
|
|
/* Are paths case sensitive? */
|
|
#define CASE_SENSITIVITY false
|
|
|
|
/* CPU types */
|
|
#undef PowerPC
|
|
#undef sparc
|
|
#undef i386
|
|
#undef mips
|
|
#undef alpha
|
|
|
|
/* various OS efforts */
|
|
#undef DARWIN
|
|
#undef LINUX
|
|
#undef FREEBSD
|
|
#undef NETBSD
|
|
#undef sun
|
|
#undef SOLARIS
|
|
#undef hpux
|
|
#undef ultrix
|
|
#undef PC_PLATFORM
|
|
#undef NETWARE_386
|
|
#undef VMS
|
|
#undef AIX
|
|
#undef WIN_NT
|
|
#undef SCO_EV
|
|
#undef DGUX
|
|
#undef DECOSF
|
|
#undef sgi
|
|
#undef mpexl
|
|
#undef UNIXWARE
|
|
#undef SINIXZ
|
|
|
|
#endif
|