Skip to content

Commit

Permalink
Part of the Unicode checkin for Marc-Andre Lemburg.
Browse files Browse the repository at this point in the history
Some new configuration tests and a new option, --with-wctype-functions.
  • Loading branch information
gvanrossum committed Mar 10, 2000
1 parent 92f3377 commit ef2255b
Show file tree
Hide file tree
Showing 4 changed files with 742 additions and 264 deletions.
12 changes: 12 additions & 0 deletions acconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,18 @@
/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
#undef WANT_SIGFPE_HANDLER

/* Define if the compiler provides a wchar.h header file. */
#undef HAVE_WCHAR_H

/* Define if you have a useable wchar_t type defined in wchar.h; useable
means wchar_t must be 16-bit unsigned type. (see
Include/unicodeobject.h). */
#undef HAVE_USABLE_WCHAR_T

/* Define if you want wctype.h functions to be used instead of the
one supplied by Python itself. (see Include/unicodectype.h). */
#undef WANT_WCTYPE_FUNCTIONS

/* Define if you want to use SGI (IRIX 4) dynamic linking.
This requires the "dl" library by Jack Jansen,
ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
Expand Down
31 changes: 31 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
tzname. */
#undef HAVE_TZNAME

/* Define as __inline if that's what the C compiler calls it. */
#undef inline

/* Define if on MINIX. */
#undef _MINIX

Expand Down Expand Up @@ -62,6 +65,10 @@
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t

/* 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 your <unistd.h> contains bad prototypes for exec*()
(as it does on SGI IRIX 4.x) */
#undef BAD_EXEC_PROTOTYPES
Expand Down Expand Up @@ -155,6 +162,18 @@
/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
#undef WANT_SIGFPE_HANDLER

/* Define if the compiler provides a wchar.h header file. */
#undef HAVE_WCHAR_H

/* Define if you have a useable wchar_t type defined in wchar.h; useable
means wchar_t must be 16-bit unsigned type. (see
Include/unicodeobject.h). */
#undef HAVE_USABLE_WCHAR_T

/* Define if you want wctype.h functions to be used instead of the
one supplied by Python itself. (see Include/unicodectype.h). */
#undef WANT_WCTYPE_FUNCTIONS

/* Define if you want to use SGI (IRIX 4) dynamic linking.
This requires the "dl" library by Jack Jansen,
ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
Expand Down Expand Up @@ -200,6 +219,15 @@
/* Defined when any dynamic module loading is enabled */
#undef HAVE_DYNAMIC_LOADING

/* The number of bytes in a char. */
#undef SIZEOF_CHAR

/* The number of bytes in a double. */
#undef SIZEOF_DOUBLE

/* The number of bytes in a float. */
#undef SIZEOF_FLOAT

/* The number of bytes in a int. */
#undef SIZEOF_INT

Expand All @@ -209,6 +237,9 @@
/* The number of bytes in a long long. */
#undef SIZEOF_LONG_LONG

/* The number of bytes in a short. */
#undef SIZEOF_SHORT

/* The number of bytes in a void *. */
#undef SIZEOF_VOID_P

Expand Down
Loading

0 comments on commit ef2255b

Please sign in to comment.