[llvm-commits] CVS: llvm/autoconf/configure.ac
John Criswell
criswell at cs.uiuc.edu
Mon Jul 19 09:12:40 PDT 2004
Changes in directory llvm/autoconf:
configure.ac updated: 1.93 -> 1.94
---
Log message:
Added support for stdint.h. It is now automatically included by
DataTypes.h. So far, it doesn't seem to break Linux, Solaris, or MacOS X.
This should automatically include it for those people who need it.
---
Diffs of the changes: (+5 -0)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.93 llvm/autoconf/configure.ac:1.94
--- llvm/autoconf/configure.ac:1.93 Tue Jun 22 18:43:04 2004
+++ llvm/autoconf/configure.ac Mon Jul 19 11:12:29 2004
@@ -250,6 +250,11 @@
[INCLUDE_INTTYPES_H='#include <inttypes.h>'],
[INCLUDE_INTTYPES_H=''])
AC_SUBST(INCLUDE_INTTYPES_H)
+AC_CHECK_HEADER([stdint.h],
+ [INCLUDE_STDINT_H='#include <stdint.h>'],
+ [INCLUDE_STDINT_H=''])
+AC_SUBST(INCLUDE_STDINT_H)
+
dnl Check for types
AC_TYPE_PID_T
More information about the llvm-commits
mailing list