/* -*-C-*- $Id: config.h,v 1.7 2003/07/22 02:19:51 cph Exp $ Copyright 2000,2001,2002,2003 Massachusetts Institute of Technology This file is part of MIT/GNU Scheme. MIT/GNU Scheme 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. MIT/GNU Scheme 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 MIT/GNU Scheme; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef SCM_CONFIG_H #define SCM_CONFIG_H #ifndef __OS2__ # define __OS2__ #endif #include #include #ifndef __GNUC__ typedef unsigned short mode_t; typedef short nlink_t; typedef long pid_t; typedef short uid_t; typedef short gid_t; #endif typedef unsigned char cc_t; #if (! ((defined (__IBMC__)) && (__IBMC__ >= 360))) typedef long ssize_t; #endif /* The number of bytes in a unsigned long. */ #define SIZEOF_UNSIGNED_LONG 4 /* Define if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ /* #undef WORDS_BIGENDIAN */ /* Define if you have the floor function. */ #define HAVE_FLOOR 1 /* Define if you have the frexp function. */ #define HAVE_FREXP 1 /* Define if you have the modf function. */ #define HAVE_MODF 1 /* Define if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Define if you have the header file. */ /* #undef HAVE_UNISTD_H */ /* Define if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define if architecture has native-code compiler support. */ #define HAS_COMPILER_SUPPORT 1 /* Define if you have the header file. */ #define HAVE_BLOWFISH_H 1 /* Define if you have the header file. */ #define HAVE_MD5_H 1 /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "bug-mit-scheme@gnu.org" /* Define to the full name of this package. */ #define PACKAGE_NAME "MIT/GNU Scheme" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "MIT/GNU Scheme 14.11" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "mit-scheme" /* Define to the version of this package. */ #define PACKAGE_VERSION "14.11" /* Include the shared configuration header. */ #include "confshared.h" #endif /* SCM_CONFIG_H */