diff options
author | Aaron W. LaFramboise <aaronavay62@aaronwl.com> | 2004-10-30 10:23:23 -0600 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-10-30 16:23:23 +0000 |
commit | 41724e6a1387d9135026dae1a25f912d6f6d8372 (patch) | |
tree | 24b152304828e4f1535ef2adecf1093feef88872 /libgfortran/configure.ac | |
parent | 47289a4e33c86f8462ed2143259a045b594e6e4f (diff) | |
download | gcc-41724e6a1387d9135026dae1a25f912d6f6d8372.zip gcc-41724e6a1387d9135026dae1a25f912d6f6d8372.tar.gz gcc-41724e6a1387d9135026dae1a25f912d6f6d8372.tar.bz2 |
config.h.in: Regenerate.
2004-10-30 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* config.h.in: Regenerate.
* configure: Regenerate.
* configure.ac (AC_CHECK_FUNCS): Add mkstemp.
* io/unix.c (S_IRGRP): Define if undefined.
(S_IWGRP): Same.
(S_IROTH): Same.
(S_IWOTH): Same.
(tempfile): Use mktemp if mkstemp missing, fix typos.
From-SVN: r89893
Diffstat (limited to 'libgfortran/configure.ac')
-rw-r--r-- | libgfortran/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac index f7a8b99..598070d 100644 --- a/libgfortran/configure.ac +++ b/libgfortran/configure.ac @@ -159,7 +159,7 @@ AC_CHECK_HEADER([complex.h],[AC_DEFINE([HAVE_COMPLEX_H], [1], [complex.h exists] AC_CHECK_LIB([m],[csin],[need_math="no"],[need_math="yes"]) # Check for library functions. -AC_CHECK_FUNCS(getrusage times) +AC_CHECK_FUNCS(getrusage times mkstemp) # Check libc for getgid, getpid, getuid AC_CHECK_LIB([c],[getgid],[AC_DEFINE([HAVE_GETGID],[1],[libc includes getgid])]) |