SF Patch #103154 by jlt63: Cygwin Check Import Case Patch.

Note: I've reordered acconfig.h and config.h.in to obtain alphabetical
order (modulo case and leading _).
diff --git a/configure.in b/configure.in
index 34e456c..fe0d496 100644
--- a/configure.in
+++ b/configure.in
@@ -1232,6 +1232,18 @@
 fi],
 [AC_MSG_RESULT(default LIBC=\"$LIBC\")])
 
+# check for --with-check-import-case
+AC_ARG_WITH(check-import-case,
+[  --with-check-import-case        enable imported module name case checking],,)
+AC_MSG_CHECKING(for --with-check-import-case)
+if test "$with_check_import_case"
+then
+	AC_DEFINE(CHECK_IMPORT_CASE)
+	AC_MSG_RESULT(yes)
+else
+	AC_MSG_RESULT(no)
+fi
+
 # check for hypot() in math library
 LIBS_SAVE=$LIBS
 LIBS="$LIBS $LIBM"