diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-12-30 15:05:53 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-12-30 15:05:53 +0000 |
| commit | c4be7d9cd792d8f465f616a92dad3590c554853d (patch) | |
| tree | 4241d109e36cebe54d035f32f7fbaef171719e4b | |
| parent | d24f7847b3533fd784fa2f719a44fb061e0b1a24 (diff) | |
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.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8141 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 12 | ||||
| -rw-r--r-- | configure.in | 6 |
2 files changed, 12 insertions, 6 deletions
@@ -55,10 +55,10 @@ CHANGES IN FLTK 1.3.0 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 @@ CHANGES IN FLTK 1.3.0 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 diff --git a/configure.in b/configure.in index 51d16dc32..ead24a53f 100644 --- a/configure.in +++ b/configure.in @@ -791,7 +791,7 @@ HLINKS= 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 @@ case $uname_GUI in *) ;; 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 |
