This is jedconf.h in view mode; [Download] [Up]
#ifndef _JED_CONFIG_H_ #define _JED_CONFIG_H_ /* Copyright (c) 1992, 1995 John E. Davis * All rights reserved. * * You may distribute under the terms of either the GNU General Public * License or the Perl Artistic License. */ /* This is for everything but unix */ #ifdef VMS # ifdef __DECC # define HAVE_STDLIB_H # endif #endif #if defined(__WATCOMC__) && !defined(__QNX__) # ifndef msdos # define msdos # endif # ifndef DOS386 # define DOS386 # endif # ifndef FLOAT_TYPE # define FLOAT_TYPE # endif # ifndef pc_system # define pc_system # endif #endif /* __watcomc__ */ /* Set of the various defines for pc systems. This includes OS/2 */ /* DJGPP has a split personality. It tries implement a unix like environment * under MSDOS. Unfortunately, the personalities clash. */ #ifdef __GO32__ # ifndef pc_system # define pc_system # endif # ifdef REAL_UNIX_SYSTEM # undef REAL_UNIX_SYSTEM # endif # undef msdos # undef MSDOS # undef __MSDOS # undef __MSDOS__ # ifndef __DJGPP__ # define __DJGPP__ 1 # endif #endif #ifdef __MSDOS__ # ifndef msdos # define msdos # endif # ifndef pc_system # define pc_system # endif #endif #if defined(__EMX__) && defined(OS2) # ifndef pc_system # define pc_system # endif # ifndef __os2__ # define __os2__ # endif #endif #ifdef pc_system # define HAVE_STDLIB_H # define HAVE_PUTENV # ifdef __GO32__ # define HAVE_UNISTD_H # endif #endif #if !defined(VMS) && !defined(__WATCOMC__) # define HAVE_MEMORY_H #endif #define HAVE_GETCWD #if defined (msdos) || defined (__os2_16__) # ifndef __GO32__ # define Sixteen_Bit_System # endif #endif #if defined(_MSC_VER) || defined(__EMX__) # define strcmpi stricmp # define strncmpi strnicmp #endif #if !defined(__WATCOMC__) # define HAS_MOUSE #endif #define HAS_ABBREVS #define COLOR_COLUMNS /* #define JED_LINE_ATTRIBUTES */ #ifndef pc_system # define HAS_DISPLAY_TABLE #endif /* Random number defines */ #define HAVE_RAND #define HAVE_SRAND #define HAVE_MEMCPY #define HAVE_MEMSET #ifndef VMS # define HAVE_MEMCMP # define HAVE_MEMCHR #endif #endif /* _JED_CONFIG_H_ */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.