diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-23 00:53:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-23 00:53:10 +0000 |
commit | b9a11322b13a13dfcccb79cb34ebfc4a84d65bfd (patch) | |
tree | ba2c1f8f38b2eec2d5faba8314a05b8bfe310f0a /llvm/autoconf/configure.ac | |
parent | b2e55aeb45fc7169d44c319d7d48a9a11644e24e (diff) | |
download | bcm5719-llvm-b9a11322b13a13dfcccb79cb34ebfc4a84d65bfd.tar.gz bcm5719-llvm-b9a11322b13a13dfcccb79cb34ebfc4a84d65bfd.zip |
We're no longer going to bother supporting platforms that don't
support C89.
We probably didn't support them anyways.
llvm-svn: 140361
Diffstat (limited to 'llvm/autoconf/configure.ac')
-rw-r--r-- | llvm/autoconf/configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index 811de5c2489..bdbb5249fe2 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/autoconf/configure.ac @@ -38,9 +38,8 @@ dnl in the output of --version option of the generated configure script. AC_SUBST(LLVM_COPYRIGHT,["Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign."]) AC_COPYRIGHT([Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign.]) -dnl Indicate that we require autoconf 2.59 or later. Ths is needed because we -dnl use some autoconf macros only available in 2.59. -AC_PREREQ(2.59) +dnl Indicate that we require autoconf 2.60 or later. +AC_PREREQ(2.60) dnl Verify that the source directory is valid. This makes sure that we are dnl configuring LLVM and not some other package (it validates --srcdir argument) @@ -1215,7 +1214,6 @@ dnl Generally we're looking for POSIX headers. AC_HEADER_DIRENT AC_HEADER_MMAP_ANONYMOUS AC_HEADER_STAT -AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_HEADER_TIME |