]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Fix Savannah bug #19348: if the user specified
authorPaul Smith <psmith@gnu.org>
Wed, 21 Mar 2007 13:49:34 +0000 (13:49 +0000)
committerPaul Smith <psmith@gnu.org>
Wed, 21 Mar 2007 13:49:34 +0000 (13:49 +0000)
--disable-case-insensitive-file-system, don't turn it on.

ChangeLog
configure.in

index aa8fa945697e439a2093a25eed5d5b18b7b6d114..0fc548b5a380d9d04994c22d0884becf9b1b5d1e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-21  Paul Smith  <psmith@gnu.org>
+
+       * configure.in: Don't turn on case-insensitive file system support
+       if --disable-... is given.  Fixes Savannah bug #19348.
+
 2007-03-19  Paul Smith  <psmith@gnu.org>
 
        * ALL: Use the strcache for all file name strings, or other
        (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 <craig.fithian@citigroup.com>.
+       Reported by Craig Fithian <craig.fithian@citigroup.com>
 
 2006-03-17  Paul D. Smith  <psmith@gnu.org>
 
index 6bc76f8bb42713e157b09d5c5731d05828ae2bbd..27be1e93d837e1b9c09d6e79419fa809c21aa12e 100644 (file)
@@ -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.