From a6ef72c35ae7709bd97f3898db17bcd9a091f260 Mon Sep 17 00:00:00 2001 From: psmith Date: Wed, 21 Mar 2007 13:49:34 +0000 Subject: [PATCH] Fix Savannah bug #19348: if the user specified --disable-case-insensitive-file-system, don't turn it on. --- ChangeLog | 7 ++++++- configure.in | 9 +++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index aa8fa94..0fc548b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-03-21 Paul Smith + + * configure.in: Don't turn on case-insensitive file system support + if --disable-... is given. Fixes Savannah bug #19348. + 2007-03-19 Paul Smith * ALL: Use the strcache for all file name strings, or other @@ -226,7 +231,7 @@ (die): Cleanup code was removed from here; call the new function. (main): If we are re-execing, clean up the jobserver first so we don't leak file descriptors. - Fix bug reported by Craig Fithian . + Reported by Craig Fithian 2006-03-17 Paul D. Smith diff --git a/configure.in b/configure.in index b6faa37..1ad0324 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ AC_INIT([GNU make],[3.81.90],[bug-make@gnu.org]) AC_PREREQ(2.59) -AC_REVISION([[$Id: configure.in,v 1.145 2006/10/01 05:38:38 psmith Exp $]]) +AC_REVISION([[$Id: configure.in,v 1.146 2007/03/21 13:49:34 psmith Exp $]]) # Autoconf setup AC_CONFIG_AUX_DIR(config) @@ -261,9 +261,10 @@ AM_CONDITIONAL(USE_CUSTOMS, test "$use_customs" = true) AH_TEMPLATE(HAVE_CASE_INSENSITIVE_FS, [Use case insensitive file names]) AC_ARG_ENABLE(case-insensitive-file-system, AC_HELP_STRING([--enable-case-insensitive-file-system], - [enable case insensitive file system support]), - case_insensitive_fs="yes" AC_DEFINE(HAVE_CASE_INSENSITIVE_FS), - case_insensitive_fs="no") + [assume file systems are case insensitive]), + [case $enableval in + yes) AC_DEFINE(HAVE_CASE_INSENSITIVE_FS) ;; + esac]) # See if we can handle the job server feature, and if the user wants it. -- 2.11.4.GIT