aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-05-15 12:04:13 +0000
committerCorinna Vinschen <corinna@vinschen.de>2005-05-15 12:04:13 +0000
commit1f7b9e8bc638f7e3e3e0d1948e360f65a15215be (patch)
tree5373d7c7c10b5b49f1ecf1d2dfd1b9a0377a5fb4
parentdad546a5ebf3b21179e2e1d9574f972112d39d9c (diff)
downloadnewlib-1f7b9e8bc638f7e3e3e0d1948e360f65a15215be.zip
newlib-1f7b9e8bc638f7e3e3e0d1948e360f65a15215be.tar.gz
newlib-1f7b9e8bc638f7e3e3e0d1948e360f65a15215be.tar.bz2
* environ.cc (conv_envvars): Treat LD_LIBRARY_PATH as path list.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/environ.cc6
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9db75a9..f627fd4 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index 51ed344..a280f52 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -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,