diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 9dd5da2156b02cf289232db37209b2d1549c5d17..d80b464d84c9cd3d3459444baa52e59044310775 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,11 @@ +2005-09-25 Francois-Xavier Coudert <coudert@clipper.ens.fr> + Danny Smith <dannysmith@users.sourceforge.net> + + PR libfortran/23803 + * intrinsics/getXid.c: Add getpid wrapper for MinGW. + * intrinsics/getlog.c: Add getlogin wrapper for MinGW. + * intrinsics/hostnm.c: Add gethostname wrapper for MinGW. + 2005-09-24 Francois-Xavier Coudert <coudert@clipper.ens.fr> PR libfortran/23802 diff --git a/libgfortran/intrinsics/getXid.c b/libgfortran/intrinsics/getXid.c index 4c456ae4ecc905261219bc242bdc42b22e67827f..85ff4e8f4ee4399694530f3b52a63c1c332dfa09 100644 --- a/libgfortran/intrinsics/getXid.c +++ b/libgfortran/intrinsics/getXid.c @@ -38,6 +38,11 @@ Boston, MA 02110-1301, USA. */ #include "libgfortran.h" +#ifdef __MINGW32__ +#define HAVE_GETPID +#include <process.h> +#endif + #ifdef HAVE_GETGID extern GFC_INTEGER_4 PREFIX(getgid) (void); export_proto_np(PREFIX(getgid)); diff --git a/libgfortran/intrinsics/getlog.c b/libgfortran/intrinsics/getlog.c index 35c52bdb639c3e1f474a53b46caaa1ee9b9af345..9b73ec210786dc39848563de026cba6aa310b263 100644 --- a/libgfortran/intrinsics/getlog.c +++ b/libgfortran/intrinsics/getlog.c @@ -39,6 +39,29 @@ Boston, MA 02110-1301, USA. */ #endif +/* Windows32 version */ +#if defined __MINGW32__ && !defined HAVE_GETLOGIN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#include <lmcons.h> /* for UNLEN */ + +static char * +w32_getlogin (void) +{ + static char name [UNLEN + 1]; + DWORD namelen = sizeof (name); + + GetUserName (name, &namelen); + return (name[0] == 0 ? NULL : name); +} + +#undef getlogin +#define getlogin w32_getlogin +#define HAVE_GETLOGIN 1 + +#endif + + /* GETLOG (LOGIN), g77 intrinsic for retrieving the login name for the process. CHARACTER(len=*), INTENT(OUT) :: LOGIN */ diff --git a/libgfortran/intrinsics/hostnm.c b/libgfortran/intrinsics/hostnm.c index 882330a764ecc9cef10f3f795b75504d4d7b62c6..0df39ea46f39b934b45ae74a2fc5beb6a61eef30 100644 --- a/libgfortran/intrinsics/hostnm.c +++ b/libgfortran/intrinsics/hostnm.c @@ -38,7 +38,47 @@ Boston, MA 02110-1301, USA. */ #include <unistd.h> #endif -#include "../io/io.h" + +/* Windows32 version */ +#if defined __MINGW32__ && !defined HAVE_GETHOSTNAME +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#include <errno.h> + +static int +w32_gethostname (char *name, size_t len) +{ + /* We could try the WinSock API gethostname, but that will + fail if WSAStartup function has has not been called. We don't + really need a name that will be understood by socket API, so avoid + unnecessary dependence on WinSock libraries by using + GetComputerName instead. */ + + /* On Win9x GetComputerName fails if the input size is less + than MAX_COMPUTERNAME_LENGTH + 1. */ + char buffer[MAX_COMPUTERNAME_LENGTH + 1]; + DWORD size = sizeof (buffer); + + if (!GetComputerName (buffer, &size)) + return -1; + + if ((size = strlen (buffer) + 1) > len) + { + errno = EINVAL; + /* Truncate as per POSIX spec. We do not NUL-terminate. */ + size = len; + } + memcpy (name, buffer, (size_t) size); + + return 0; +} + +#undef gethostname +#define gethostname w32_gethostname +#define HAVE_GETHOSTNAME 1 + +#endif + /* SUBROUTINE HOSTNM(NAME, STATUS) CHARACTER(len=*), INTENT(OUT) :: NAME