Author: AlbrechtS
Date: 2010-12-30 07:05:53 -0800 (Thu, 30 Dec 2010)
New Revision: 8141
Log:
Changed default for configure option --with-links for common misspellings
on case sensitive file systems like Unix/Linux, as discussed some time ago.
The new default is --without-links.


Modified:
   branches/branch-1.3/CHANGES
   branches/branch-1.3/configure.in

Modified: branches/branch-1.3/CHANGES
===================================================================
--- branches/branch-1.3/CHANGES 2010-12-29 17:10:08 UTC (rev 8140)
+++ branches/branch-1.3/CHANGES 2010-12-30 15:05:53 UTC (rev 8141)
@@ -55,10 +55,10 @@
 
          IDE support and command line build options
 
-       - FLTK now support Apple Xcode 3, MS VisualC 2008 and 
-         MS VisualC 2010. MS VisualC 6 support is maintained as a compatibily
-         base for VisualC.net, etc. .  FLTK continues to support
-         configure/make and improved CMake build files.
+       - FLTK now supports Apple Xcode 3, MS VisualC 2008, and
+         MS VisualC 2010. MS VisualC 6 support is maintained as a
+         compatibility base for VisualC.net, etc. . FLTK continues
+         to support configure/make and improved CMake build files.
        - Added step by step README's for MSWindows, OS X, and four
          Linux distros.
        - Added "ide" subdirectory for all IDE support files
@@ -70,6 +70,10 @@
          instead of GDI drawing (STR #2147, #2183) and is ignored otherwise.
        - Changed "fltk-config --post foo" to create an application
          bundle rather than attaching a resource fork.
+       - Changed default for configure option --with-links for common
+         misspellings on case sensitive file systems like Unix/Linux.
+         The new default is --without-links; use --with-links on
+         Unix/Linux only if you need the links (e.g. lowercase '.h')
 
          Fluid
 

Modified: branches/branch-1.3/configure.in
===================================================================
--- branches/branch-1.3/configure.in    2010-12-29 17:10:08 UTC (rev 8140)
+++ branches/branch-1.3/configure.in    2010-12-30 15:05:53 UTC (rev 8141)
@@ -791,7 +791,7 @@
 OSX_ONLY=:
 THREADS=
 
-AC_ARG_WITH(links, [  --with-links            make header links for common 
misspellings])
+AC_ARG_WITH(links, [  --with-links            make header links for common 
misspellings (default=no)])
 
 INSTALL_DESKTOP=""
 UNINSTALL_DESKTOP=""
@@ -1002,7 +1002,9 @@
            *)
            ;;
        esac
-       if test "x$with_links" = xno; then
+       # Make symlinks since UNIX/Linux is case sensitive,
+       # but only if explicitly configured (default=no)
+       if test "x$with_links" != xyes; then
                HLINKS="#"
        fi
 

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to