* environ.cc (conv_envvars): Detect and convert all environment variables used

by libiberty's choose-temp.c
This commit is contained in:
Christopher Faylor 2000-06-15 03:50:03 +00:00
parent 01c327ba27
commit 48b1381da1
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Jun 14 23:47:19 2000 Christopher Faylor <cgf@cygnus.com>
* environ.cc (conv_envvars): Detect and convert all environment
variables used by libiberty's choose-temp.c
Tue Jun 13 12:41:41 2000 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
* path.cc (mount_info::add_item): The previous patch can't handle

View File

@ -43,6 +43,10 @@ static win_env conv_envvars[] =
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH},
{"TMPDIR=", 7, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{"TMP=", 4, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{"TEMP=", 5, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{NULL, 0, NULL, NULL, NULL, NULL, 0, 0}
};