1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-18 01:18:51 +02:00

use AC_DEFINE_UNQUOTED

This commit is contained in:
Jim Meyering
2000-12-27 07:46:35 +00:00
parent b7eb48d4fc
commit 937873451a
+6 -2
View File
@@ -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.])
])