diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-07-05 13:20:28 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-07-05 13:20:28 +0000 |
| commit | 24fcc5aa29ca4fb772500038e63e568640131872 (patch) | |
| tree | 1dea21402075594bde8d5ae8a253789c3df4e871 | |
| parent | 8d6e6e40c5d1540396d1d8e4c44c319464f7eca4 (diff) | |
The fltk-config script did not include the "-mno-cygwin" option
under CygWin (STR #434)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3502 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | configure.in | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,8 @@ CHANGES IN FLTK 1.1.5rc2 - Documentation updates (STR #365, STR #399, STR #412) + - The fltk-config script did not include the + "-mno-cygwin" option under CygWin (STR #434) - Fl_Help_View::find() did not check for a NULL value (STR #442) - Added search symbol to the search field of diff --git a/configure.in b/configure.in index f7999a6d4..f760bc1de 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.31.2.110 2004/06/09 12:09:39 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.111 2004/07/05 13:20:28 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -72,6 +72,7 @@ case $uname in CFLAGS="$CFLAGS -mno-cygwin" CPPFLAGS="$CPPFLAGS -mno-cygwin" CXXFLAGS="$CXXFLAGS -mno-cygwin" + LDFLAGS="$LDFLAGS -mno-cygwin" fi ;; esac @@ -890,5 +891,5 @@ dnl Make sure the fltk-config script is executable... chmod +x fltk-config dnl -dnl End of "$Id: configure.in,v 1.33.2.31.2.110 2004/06/09 12:09:39 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.111 2004/07/05 13:20:28 easysw Exp $". dnl |
