diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-25 07:36:20 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-25 07:36:20 +0000 |
commit | c0e8efbe78a70b723ceb20fe02b1bea81b674fad (patch) | |
tree | 8203328c54bf2042dd9ae6ad2ea9e5d9f9d0cea8 /libgfortran/config.h.in | |
parent | a106dabe8c6a7d9a8bfa0b45e7ba6cf4f1364312 (diff) | |
download | gcc-c0e8efbe78a70b723ceb20fe02b1bea81b674fad.tar.gz |
PR libfortran/31299
* intrinsics/getlog.c: Use getpwuid and geteuid instead of
getlogin if they are available.
* configure.ac: Add checks for getpwuid and geteuid.
* configure: Regenerate.
* config.h.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124143 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index f0d15d7de2a..205aca30c07 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -381,6 +381,9 @@ /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE +/* libc includes geteuid */ +#undef HAVE_GETEUID + /* libc includes getgid */ #undef HAVE_GETGID @@ -396,6 +399,9 @@ /* libc includes getppid */ #undef HAVE_GETPPID +/* Define to 1 if you have the `getpwuid' function. */ +#undef HAVE_GETPWUID + /* Define to 1 if you have the `getrlimit' function. */ #undef HAVE_GETRLIMIT @@ -522,6 +528,9 @@ /* libm includes powl */ #undef HAVE_POWL +/* Define to 1 if you have the <pwd.h> header file. */ +#undef HAVE_PWD_H + /* libm includes round */ #undef HAVE_ROUND |