* environ.cc (conv_envvars): Treat LD_LIBRARY_PATH as path list.
This commit is contained in:
parent
dad546a5eb
commit
1f7b9e8bc6
|
@ -1,3 +1,7 @@
|
|||
2005-05-15 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* environ.cc (conv_envvars): Treat LD_LIBRARY_PATH as path list.
|
||||
|
||||
2005-05-14 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Check
|
||||
|
|
|
@ -61,8 +61,10 @@ static win_env conv_envvars[] =
|
|||
cygwin_posix_to_win32_path_list_buf_size, true},
|
||||
{NL ("HOME="), NULL, NULL, cygwin_conv_to_full_posix_path,
|
||||
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH, false},
|
||||
{NL ("LD_LIBRARY_PATH="), NULL, NULL, cygwin_conv_to_full_posix_path,
|
||||
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH, true},
|
||||
{NL ("LD_LIBRARY_PATH="), NULL, NULL, cygwin_win32_to_posix_path_list,
|
||||
cygwin_posix_to_win32_path_list,
|
||||
cygwin_win32_to_posix_path_list_buf_size,
|
||||
cygwin_posix_to_win32_path_list_buf_size, true},
|
||||
{NL ("TMPDIR="), NULL, NULL, cygwin_conv_to_full_posix_path,
|
||||
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH, false},
|
||||
{NL ("TMP="), NULL, NULL, cygwin_conv_to_full_posix_path,
|
||||
|
|
Loading…
Reference in New Issue