summaryrefslogtreecommitdiff
path: root/m4/dos.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-27 07:46:35 +0000
committerJim Meyering <jim@meyering.net>2000-12-27 07:46:35 +0000
commit937873451a0ae26263dbc71f38fa3a1005162c5b (patch)
tree873ba30d1ac076113b0837ff318b1ab243ce0035 /m4/dos.m4
parentb7eb48d4fcf0cfede7e1cfde2d5c66caf71d4cd5 (diff)
downloadcoreutils-937873451a0ae26263dbc71f38fa3a1005162c5b.tar.xz
use AC_DEFINE_UNQUOTED
Diffstat (limited to 'm4/dos.m4')
-rw-r--r--m4/dos.m48
1 files changed, 6 insertions, 2 deletions
diff --git a/m4/dos.m4 b/m4/dos.m4
index f3f75ab21..0787e5c3f 100644
--- a/m4/dos.m4
+++ b/m4/dos.m4
@@ -19,7 +19,9 @@ else
# define FILESYSTEM_PREFIX_LEN(Filename) 0
#endif])
- AC_DEFINE([FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX],
+ ac_fs_accepts_drive_letter_prefix=0
+ AC_DEFINE_UNQUOTED([FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX],
+ $ac_fs_accepts_drive_letter_prefix,
[Define on systems for which file names may have a so-called
`drive letter' prefix, define this to compute the length of that
prefix, including the colon.])
@@ -31,7 +33,9 @@ else
# define ISSLASH(C) ((C) == '/')
#endif])
- AC_DEFINE([FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR],
+ ac_fs_backslash_is_file_name_separator=0
+ AC_DEFINE_UNQUOTED([FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR],
+ $ac_fs_backslash_is_file_name_separator,
[Define if the backslash character may also serve as a file name
component separator.])
])