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 /configure.in | |
| 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
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
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 |
