mirror of
git://git.sv.gnu.org/findutils.git
synced 2026-01-28 04:23:21 +01:00
Make --enable-d_type-optimization and --enable-d_type-optimisation
both work.
This commit is contained in:
11
configure.in
11
configure.in
@@ -23,10 +23,17 @@ AC_ARG_ENABLE(debug,
|
||||
AS_HELP_STRING(--enable-debug,Enable debugging output which is likely to be interesting to people debugging findutils),
|
||||
[ac_cv_debug=$enableval],[ac_cv_debug=no])
|
||||
|
||||
AC_ARG_ENABLE(d_type-optimisation,
|
||||
AS_HELP_STRING(--enable-d_type-optimisation,Make use of the file type data returned in struct dirent.d_type by readdir()),
|
||||
AC_ARG_ENABLE(d_type-optimization,
|
||||
AS_HELP_STRING(--enable-d_type-optimization,Make use of the file type data returned in struct dirent.d_type by readdir()),
|
||||
[ac_cv_d_type=$enableval],[ac_cv_d_type=yes])
|
||||
|
||||
dnl This one has no default, because otherwise we would have to say
|
||||
dnl both --enable-d_type-optimisation=no and --enable-d_type-optimization=no
|
||||
dnl to turn it off.
|
||||
AC_ARG_ENABLE(d_type-optimisation,
|
||||
AS_HELP_STRING(--enable-d_type-optimisation,Synonym for --enable-d_type-optimization),
|
||||
[ac_cv_d_type=$enableval],[])
|
||||
|
||||
|
||||
AC_MSG_CHECKING([whether debug output should be produced])
|
||||
if test x$ac_cv_debug = xno; then
|
||||
|
||||
Reference in New Issue
Block a user