/* * $Id: giftconfig.h.in,v 1.10 2004/03/27 01:06:21 jasta Exp $ -*- C -*- * * Copyright (C) 2001-2003 giFT project (gift.sourceforge.net) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. */ #ifndef __GIFTCONFIG_H #define __GIFTCONFIG_H /*****************************************************************************/ /** * @file giftconfig.h * * @brief Compile-time libgiFT environment configuration. * * This file is produced automagically by autoconf during configure. It * includes some hardcoded features of the basic libgiFT environment as well * as some determined by autoconf. */ /*****************************************************************************/ #ifdef __cplusplus #define EXTERN_C_BEGIN extern "C" { #define EXTERN_C_END } #else /* !__really_crappy_language */ #define EXTERN_C_BEGIN #define EXTERN_C_END #endif /* __really_crappy_language */ /*****************************************************************************/ /* * Import all the configured features that need to be installed here. */ #ifndef _MSC_VER #ifndef TIME_WITH_SYS_TIME #define TIME_WITH_SYS_TIME 1 #endif #ifndef HAVE_SYS_TIME_H #define HAVE_SYS_TIME_H 1 #endif #ifndef VA_COPY_FUNC #define VA_COPY_FUNC va_copy #endif #ifndef SIZEOF_SHORT #define SIZEOF_SHORT 2 #endif #ifndef SIZEOF_INT #define SIZEOF_INT 4 #endif #ifndef SIZEOF_LONG #define SIZEOF_LONG 4 #endif #ifndef BOOL #define BOOL int #endif #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef pid_t #define pid_t int #endif #ifndef off_t #define off_t long #endif #ifndef ssize_t #define ssize_t long #endif #ifndef HAVE_FTRUNCATE #define HAVE_FTRUNCATE 1 #endif #ifndef HAVE_GETTIMEOFDAY #define HAVE_GETTIMEOFDAY 1 #endif #ifndef HAVE_MADVISE #define HAVE_MADVISE 1 #endif #ifndef HAVE_MKSTEMP #define HAVE_MKSTEMP 1 #endif #ifndef HAVE_NICE #define HAVE_NICE 1 #endif #ifndef HAVE_SELECT #define HAVE_SELECT 1 #endif #ifndef HAVE_POLL #define HAVE_POLL 1 #endif #ifndef HAVE_RMDIR #define HAVE_RMDIR 1 #endif #ifndef HAVE_SIGNAL #define HAVE_SIGNAL 1 #endif #ifndef HAVE_SOCKET #define HAVE_SOCKET 1 #endif #ifndef HAVE_SOCKETPAIR #define HAVE_SOCKETPAIR 1 #endif #ifndef HAVE_SNPRINTF #define HAVE_SNPRINTF 1 #endif #ifndef HAVE_VSNPRINTF #define HAVE_VSNPRINTF 1 #endif #ifndef HAVE_STRCASECMP #define HAVE_STRCASECMP 1 #endif #ifndef HAVE_STRCSPN #define HAVE_STRCSPN 1 #endif #ifndef HAVE_STRLCAT #define HAVE_STRLCAT 1 #endif #ifndef HAVE_STRLCPY #define HAVE_STRLCPY 1 #endif #ifndef HAVE_STRPBRK #define HAVE_STRPBRK 1 #endif #ifndef HAVE_STRSPN #define HAVE_STRSPN 1 #endif #ifndef HAVE_STRTOL #define HAVE_STRTOL 1 #endif #ifndef HAVE_STRTOUL #define HAVE_STRTOUL 1 #endif #ifndef HAVE_UNLINK #define HAVE_UNLINK 1 #endif #ifndef PLUGIN_DIR #define PLUGIN_DIR "/lib/giFT" #endif #ifndef DATA_DIR #define DATA_DIR "/share/giFT" #endif #ifndef GIFT_PACKAGE #define GIFT_PACKAGE "giFT" #endif #ifndef GIFT_VERSION #define GIFT_VERSION "0.11.8" #endif #ifndef HAVE_DIRENT_H #define HAVE_DIRENT_H 1 #endif #ifndef HAVE_FCNTL_H #define HAVE_FCNTL_H 1 #endif #ifndef HAVE_GETOPT_H #define HAVE_GETOPT_H 1 #endif #ifndef HAVE_LIMITS_H #define HAVE_LIMITS_H 1 #endif #ifndef HAVE_SYSLOG_H #define HAVE_SYSLOG_H 1 #endif #ifndef HAVE_SYS_MMAN_H #define HAVE_SYS_MMAN_H 1 #endif #define LIBGIFT_VERSION \ ((((0) & 0xff) << 16) | \ (((11) & 0xff) << 8) | \ (((8) & 0xff))) #define LIBGIFT_VERSIONSTR "0.11.8" #else /* _MSC_VER */ /* * This is an ugly hack but it works until we figure out a better way to do * it. */ #include "giftconfig_win32.h" #endif /* !_MSC_VER */ /*****************************************************************************/ #ifndef VA_COPY # if defined(VA_COPY_FUNC) # define VA_COPY VA_COPY_FUNC # elif defined(VA_COPY_BY_VAL) # define VA_COPY(dst,src) (dst) = (src) # else # error No facility was found for copying va_lists for your platform. Sorry. # endif #endif /* !VA_COPY */ /*****************************************************************************/ /* some functions have a leading underscore on windows */ #if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF) # define snprintf _snprintf #endif /* !HAVE_SNPRINTF && HAVE__SNPRINTF */ #if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF) # define vsnprintf _vsnprintf #endif /* !HAVE_VSNPRINTF && HAVE__VSNPRINTF */ /*****************************************************************************/ #endif /* __GIFTCONFIG_H */