X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fconfig.h.in;h=cf2fd95e139fbb4cee4fff64da822670defb3ba2;hb=d45efb1e6cc9b913d12b7a0c51be3624488c3f96;hp=50a3c119637406a7bc7eef1f58cc808ad6cb24d8;hpb=dbf2768f7b146e97e37a27316f70bb313f1acf15;p=chise%2Fxemacs-chise.git.1 diff --git a/src/config.h.in b/src/config.h.in index 50a3c11..cf2fd95 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -42,6 +42,8 @@ Boston, MA 02111-1307, USA. */ #elif defined __DECC #include #pragma intrinsic(alloca) +#elif defined __INTEL_COMPILER && defined HAVE_ALLOCA_H +/* defer #include to end of file */ #elif defined HAVE_ALLOCA_H #include #elif defined(_AIX) @@ -563,6 +565,19 @@ void *alloca (); if you're working with ASCII files. */ #undef MULE +/* Define this if you want CHISE support + (CHaracter Information Service Environment) */ +#undef CHISE + +/* Define this if you want UTF-2000 support (character representation + based on character object model). */ +#undef UTF2000 + +#undef CHAR_IS_UCS4 + +/* Compile in support for external character database. */ +#undef HAVE_CHISE_CLIENT + /* Define this if you want file coding support */ #undef FILE_CODING @@ -903,4 +918,12 @@ on various systems. */ #undef PDUMP +#ifndef NOT_C_CODE +#if defined __INTEL_COMPILER && defined HAVE_ALLOCA_H +/* icc's alloca.h pulls in , + but that must be done after _GNU_SOURCE and friends are defined */ +#include +#endif +#endif /* C code */ + #endif /* _SRC_CONFIG_H_ */