Author: AlbrechtS
Date: 2009-04-13 10:30:19 -0700 (Mon, 13 Apr 2009)
New Revision: 6761
Log:
Fixed make install for Windows/Cygwin with --enable-x11 (no symlinks)
(STR #2183).


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

Modified: branches/branch-1.3/CHANGES
===================================================================
--- branches/branch-1.3/CHANGES 2009-04-13 11:32:58 UTC (rev 6760)
+++ branches/branch-1.3/CHANGES 2009-04-13 17:30:19 UTC (rev 6761)
@@ -20,8 +20,8 @@
          anymore before drawing itself and its children.
        - All draw() methods of widgets are now protected (STR #2142).
        - The new configure option --enable-x11 (lowercase 'x') enables
-         cygwin builds under Windows (with --enable-cygwin) to use X11
-         instead of GDI drawing (STR #2147) and is ignored otherwise.
+         Cygwin builds under Windows (with --enable-cygwin) to use X11
+         instead of GDI drawing (STR #2147, #2183) and is ignored otherwise.
        - Added Fl_Scroll::bbox() documentation (STR #1893)
        - Removed an XForms compatibility "feature" that prevented the down
          array of Fl_Menu_Button from drawing (STR #2141).

Modified: branches/branch-1.3/configure.in
===================================================================
--- branches/branch-1.3/configure.in    2009-04-13 11:32:58 UTC (rev 6760)
+++ branches/branch-1.3/configure.in    2009-04-13 17:30:19 UTC (rev 6761)
@@ -944,7 +944,15 @@
            AC_DEFINE(HAVE_OVERLAY)
        fi
 
-       # Make symlinks since UNIX/Linux is case sensitive.
+       # Make symlinks since UNIX/Linux is case sensitive,
+       # but cygwin in general not.
+       case $uname in
+           CYGWIN*)
+               HLINKS="#"
+           ;;
+           *)
+           ;;
+       esac
        if test "x$with_links" = xno; then
                HLINKS="#"
        fi

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

Reply via email to