diff options
author | Skip Montanaro <skip@pobox.com> | 2004-01-17 00:16:12 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-01-17 00:16:12 (GMT) |
commit | b9820a3b77c35e3e584c468d01c30d2ef78a5164 (patch) | |
tree | d3ffa6b865be941188c55080cfe76b1e792449d8 /configure.in | |
parent | 621b443b8d352685403e7f3ccaa9f5b539d995f8 (diff) | |
download | cpython-b9820a3b77c35e3e584c468d01c30d2ef78a5164.zip cpython-b9820a3b77c35e3e584c468d01c30d2ef78a5164.tar.gz cpython-b9820a3b77c35e3e584c468d01c30d2ef78a5164.tar.bz2 |
Remove support for minix.
Remove unused and unnecessary checks for sizeof(char).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 9a4183c..2628806 100644 --- a/configure.in +++ b/configure.in @@ -329,7 +329,6 @@ AC_PROG_CC # checks for UNIX variants that set C preprocessor variables AC_AIX -AC_MINIX # Check for unsupported systems case $ac_sys_system/$ac_sys_release in @@ -339,12 +338,6 @@ SunOS/4*|DYNIX/*|dgux*/*|IRIX/4*|Linux*/1*) exit 1;; esac -if test "$MINIX" = yes; then - echo This system \(MINIX\) is no longer supported. - echo Read README for details. - exit 1 -fi - AC_EXEEXT AC_MSG_CHECKING(for --with-suffix) AC_ARG_WITH(suffix, @@ -1014,10 +1007,10 @@ AC_TYPE_SIZE_T AC_TYPE_UID_T # Sizes of various common basic types +# ANSI C requires sizeof(char) == 1, so no need to check it AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long, 4) AC_CHECK_SIZEOF(void *, 4) -AC_CHECK_SIZEOF(char, 1) AC_CHECK_SIZEOF(short, 2) AC_CHECK_SIZEOF(float, 4) AC_CHECK_SIZEOF(double, 8) |