Commit b8a14125 by Geoffrey Noer Committed by Jim Wilson

Can't use new API yet because of old compilers.

	* i386/xm-cygwin.h: Rename cygwin_ path funcs back to cygwin32_.

From-SVN: r23814
parent 735a0e33
Mon Nov 23 17:05:40 1998 Geoffrey Noer <noer@cygnus.com>
* i386/xm-cygwin.h: Rename cygwin_ path funcs back to cygwin32_.
Mon Nov 23 16:40:00 1998 Ulrich Drepper <drepper@cygnus.com> Mon Nov 23 16:40:00 1998 Ulrich Drepper <drepper@cygnus.com>
* Makefile.in (OBJS): Add graph.o * Makefile.in (OBJS): Add graph.o
......
...@@ -40,11 +40,11 @@ do { \ ...@@ -40,11 +40,11 @@ do { \
_epath = _win32epath = getenv (NAME); \ _epath = _win32epath = getenv (NAME); \
/* if we have a posix path list, convert to win32 path list */ \ /* if we have a posix path list, convert to win32 path list */ \
if (_epath != NULL && *_epath != 0 \ if (_epath != NULL && *_epath != 0 \
&& cygwin_posix_path_list_p (_epath)) \ && cygwin32_posix_path_list_p (_epath)) \
{ \ { \
_win32epath = (char *) xmalloc \ _win32epath = (char *) xmalloc \
(cygwin_posix_to_win32_path_list_buf_size (_epath)); \ (cygwin32_posix_to_win32_path_list_buf_size (_epath)); \
cygwin_posix_to_win32_path_list (_epath, _win32epath); \ cygwin32_posix_to_win32_path_list (_epath, _win32epath); \
} \ } \
(VAR) = _win32epath; \ (VAR) = _win32epath; \
} while (0) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment