slang.h | slang.h | |||
---|---|---|---|---|
skipping to change at line 25 | skipping to change at line 25 | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
General Public License for more details. | General Public License for more details. | |||
You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | |||
along with this library; if not, write to the Free Software | along with this library; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |||
USA. | USA. | |||
*/ | */ | |||
#define SLANG_VERSION 20102 | #define SLANG_VERSION 20103 | |||
#define SLANG_VERSION_STRING "2.1.2" | #define SLANG_VERSION_STRING "2.1.3" | |||
/* #ifdef __DATE__ */ | /* #ifdef __DATE__ */ | |||
/* # define SLANG_VERSION_STRING SLANG_VERSION_STRING0 " " __DATE__ */ | /* # define SLANG_VERSION_STRING SLANG_VERSION_STRING0 " " __DATE__ */ | |||
/* #else */ | /* #else */ | |||
/* # define SLANG_VERSION_STRING SLANG_VERSION_STRING0 */ | /* # define SLANG_VERSION_STRING SLANG_VERSION_STRING0 */ | |||
/* #endif */ | /* #endif */ | |||
/*{{{ System Dependent Macros and Typedefs */ | /*{{{ System Dependent Macros and Typedefs */ | |||
#if defined(__WATCOMC__) && defined(DOS) | #if defined(__WATCOMC__) && defined(DOS) | |||
# ifndef __MSDOS__ | # ifndef __MSDOS__ | |||
# define __MSDOS__ | # define __MSDOS__ | |||
skipping to change at line 52 | skipping to change at line 52 | |||
# define IBMPC_SYSTEM | # define IBMPC_SYSTEM | |||
# endif | # endif | |||
#endif /* __watcomc__ */ | #endif /* __watcomc__ */ | |||
#if defined(unix) || defined(__unix) | #if defined(unix) || defined(__unix) | |||
# ifndef __unix__ | # ifndef __unix__ | |||
# define __unix__ 1 | # define __unix__ 1 | |||
# endif | # endif | |||
#endif | #endif | |||
#if defined(__APPLE__) | ||||
# ifndef __unix__ | ||||
# define __unix__ 1 /* cough */ | ||||
# endif | ||||
#endif | ||||
#if !defined(__GO32__) | #if !defined(__GO32__) | |||
# ifdef __unix__ | # ifdef __unix__ | |||
# define REAL_UNIX_SYSTEM | # define REAL_UNIX_SYSTEM | |||
# endif | # endif | |||
#endif | #endif | |||
/* Set of the various defines for pc systems. This includes OS/2 */ | /* Set of the various defines for pc systems. This includes OS/2 */ | |||
#ifdef __GO32__ | #ifdef __GO32__ | |||
# ifndef __DJGPP__ | # ifndef __DJGPP__ | |||
# define __DJGPP__ 1 | # define __DJGPP__ 1 | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 8 lines changed or added | |||