summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2000-11-09 21:53:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2000-11-09 21:53:00 +0000
commit739e9411e7dd22adce632d9aea3c8aedfef87107 (patch)
tree9c914e80dcc06a226da0c43462dc106bb3391e9e
parent2cbf4041b3bf742c4ab23402234b956db9d83ce8 (diff)
Minor change for Sun C/C++ compilers (-xO3 instead of -O) for better
optimization. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1326 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 0855e3584..526023701 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.16 2000/10/21 20:01:55 spitzak Exp $"
+dnl "$Id: configure.in,v 1.33.2.17 2000/11/09 21:53:00 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -247,8 +247,8 @@ else
SunOS*)
# Solaris
if test -z "$DEBUGFLAG"; then
- CFLAGS="-O"
- CXXFLAGS="-O"
+ CFLAGS="-xO3"
+ CXXFLAGS="-xO3"
fi
if test $PICFLAG = 1; then
CFLAGS="-KPIC $CFLAGS"
@@ -278,5 +278,5 @@ AC_CONFIG_HEADER(config.h:configh.in)
AC_OUTPUT(makeinclude)
dnl
-dnl End of "$Id: configure.in,v 1.33.2.16 2000/10/21 20:01:55 spitzak Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.17 2000/11/09 21:53:00 easysw Exp $".
dnl