/* * flounder * * Home page: http://www.bmen.tulane.edu * * Copyright (c) 2000 Edward Vigmond * * Maintained by Edward Vigmond * * * All Rights Reserved * * 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 of the License, 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __CONFIG_H #define __CONFIG_H /* Define if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ #ifndef _ALL_SOURCE #undef _ALL_SOURCE #endif /* Define if you need to in order for stat and other things to work. */ #undef _POSIX_SOURCE /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if char is unsigned */ #undef __CHAR_UNSIGNED__ /* Define sizeof(char) */ #define SIZEOF_CHAR 0 /* Define sizeof(short) */ #define SIZEOF_SHORT 0 /* Define sizeof(int) */ #define SIZEOF_INT 0 /* Define sizeof(long) */ #define SIZEOF_LONG 0 /* Define sizeof(long long) */ #define SIZEOF_LONG_LONG 0 /* Define sizeof(float) */ #define SIZEOF_FLOAT 0 /* Define sizeof(double) */ #define SIZEOF_DOUBLE 0 /* Define sizeof(long double) */ #define SIZEOF_LONG_DOUBLE 0 /* Define sizeof(void *) */ #define SIZEOF_VOID_P 0 /* Define to empty if the keyword does not work. */ #undef const /* Define to `int' if doesn't define. */ #undef pid_t /* Define to `unsigned' if doesn't define. */ #undef size_t /* Define if you have the header file. */ #undef HAVE_UNISTD_H /* Define if using alloca.c. */ #undef C_ALLOCA /* Define if you have alloca, as a function or macro. */ #undef HAVE_ALLOCA /* Define if you have and it should be used (not on Ultrix). */ #undef HAVE_ALLOCA_H /* Define if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define if you have the getcwd function. */ #undef HAVE_GETCWD /* Define if you have the gethostname function. */ #undef HAVE_GETHOSTNAME /* Define if you have the memcpy function. */ #undef HAVE_MEMCPY /* Define if you have the memmove function. */ #undef HAVE_MEMMOVE /* Define if you have the unlink function. */ #undef HAVE_UNLINK /* Define if you have the strstr function. */ #undef HAVE_STRSTR /* Define if you have the strerror function. */ #undef HAVE_STRERROR /* Define if stdio.h defines the sys_errlist table */ #undef HAVE_SYS_ERRLIST_DECL /* Define if you have the dlopen function. */ #undef HAVE_DLOPEN /* If words are stored with the most significant byte first (like Motorola and SPARC, but not Intel and VAX, CPUs */ #undef WORDS_BIGENDIAN /* Define if realloc() is buggy (SunOS4, for example) */ #undef REALLOC_IS_BUGGY /* Define if you have the drand48 function. */ #undef HAVE_DRAND48 /* Define if your system supports locale. */ #undef HAVE_SETLOCALE /* Define if stdlib.h defines the drand48 function. */ #undef HAVE_DRAND48_DECL /* Define if PNG library is available */ #undef HAVE_LIBPNG /* Define if you want to compile in (a basic) support for debugging */ #undef WITH_DEBUG /* Define if you have libavifile and want it */ #undef HAVE_AVIFILE /* Define if you have grace and libgrace_np for tableau plots */ #undef HAVE_LIBGRACE_NP #if defined(WITH_DEBUG) # define DEBUG #else # define NDEBUG #endif #endif /* __CONFIG_H */