File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ 2004-04-28 Bruno Haible <bruno@clisp.org>
2+
3+ * progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILE_SYSTEM_PREFIX_LEN):
4+ Treat Cygwin like Windows, since it now accepts Windows pathnames.
5+
162005-06-09 Bruno Haible <bruno@clisp.org>
27
38 * Makefile.in (mkinstalldirs): Use build-aux/ instead of autoconf/.
Original file line number Diff line number Diff line change 6868 && (P)[1] == ':')
6969# define IS_PATH_WITH_DIR (P ) \
7070 (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
71- # define FILESYSTEM_PREFIX_LEN (P ) (HAS_DEVICE (P) ? 2 : 0)
71+ # define FILE_SYSTEM_PREFIX_LEN (P ) (HAS_DEVICE (P) ? 2 : 0)
7272#else
7373 /* Unix */
7474# define ISSLASH (C ) ((C) == '/')
7575# define IS_PATH_WITH_DIR (P ) (strchr (P, '/') != NULL)
76- # define FILESYSTEM_PREFIX_LEN (P ) 0
76+ # define FILE_SYSTEM_PREFIX_LEN (P ) 0
7777#endif
7878
7979#undef set_program_name
You can’t perform that action at this time.
0 commit comments