diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-06-07 20:15:17 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-06-07 20:15:17 +0000 |
| commit | fbeb7fc7756fb788a5862eba4e9730f035f48643 (patch) | |
| tree | aa9da332538dabe32ed0bebe778d480bed32aa79 | |
| parent | a2cd4c80b1bf6bd0c90158ec36e66701e7022c83 (diff) | |
Don't use -OPT on IRIX 5.3...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2295 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 56a6bbc45..f93421002 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.69 2002/06/03 16:09:26 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.70 2002/06/07 20:15:17 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -663,7 +663,10 @@ else if test "x$with_optim" != x; then OPTIM="$with_optim $OPTIM" else - OPTIM="-O2 -OPT:Olimit=4000 $OPTIM" + OPTIM="-O2 $OPTIM" + if test $uversion -gt 62; then + OPTIM="-OPT:Olimit=4000 $OPTIM" + fi fi fi ;; @@ -745,5 +748,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.69 2002/06/03 16:09:26 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.70 2002/06/07 20:15:17 easysw Exp $". dnl |
