diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-06-26 12:03:28 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-06-26 12:03:28 +0000 |
| commit | 1be610c97025509a9858e0e2b4409db16751fcdb (patch) | |
| tree | caa282b5762dfd750d966d00ba8c8098cc9ab4aa /configure.in | |
| parent | e9f34465e00917f29f62d03bc365255e08615d45 (diff) | |
Better MingW handling.
Convert C++ comments to C comments in filename.H, which is included
from some C files.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2321 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure.in b/configure.in index a31ed17ba..bf83c5568 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.74 2002/06/25 13:36:27 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.75 2002/06/26 12:03:27 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -47,9 +47,13 @@ AC_SUBST(FL_API_VERSION) dnl Get the operating system and version number... uname=`uname` uversion=`uname -r | sed -e '1,$s/[[^0-9]]//g'` -if test $uname = IRIX64; then +if test x$uname = xIRIX64; then uname="IRIX" fi +if test x$uname = x; then + # MingW doesn't provide any output when uname is run, even with "-s"... + uname="CYGWIN" +fi dnl Don't automatically add "-g" to compiler options... CFLAGS="${CFLAGS:=}" @@ -748,5 +752,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.74 2002/06/25 13:36:27 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.75 2002/06/26 12:03:27 easysw Exp $". dnl |
