summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-11-05 16:17:39 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-11-05 16:17:39 +0000
commite22ea769090c92b378964e7dae315b7941a99dc3 (patch)
tree9c6bca17c93c378f2df154960e674c4622327bc7 /configure.in
parent711c6d1c54f5d264c39a73d1740e2482878a4011 (diff)
Updated compiler options - shouldn't force a particular C or C++ compiler
under IRIX, nor the -n32 option; that is for the CFLAGS and CXXFLAGS options! git-svn-id: file:///fltk/svn/fltk/trunk@54 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index d532615e7..1498b41f0 100644
--- a/configure.in
+++ b/configure.in
@@ -1,9 +1,9 @@
dnl# -*- sh -*-
dnl# the "configure" script is made from this by running GNU "autoconf"
dnl#
-dnl# "$Id: configure.in,v 1.11 1998/11/05 16:04:37 mike Exp $"
+dnl# "$Id: configure.in,v 1.12 1998/11/05 16:17:39 mike Exp $"
dnl#
-dnl# for the Fast Light Tool Kit (FLTK).
+dnl# Configuration script for the Fast Light Tool Kit (FLTK).
dnl#
dnl# Copyright 1998 by Bill Spitzak and others.
dnl#
@@ -140,9 +140,10 @@ if test -n "$GXX"; then
else
if test "`(uname) 2>/dev/null`" = IRIX; then
if expr "`(uname -r)`" \>= 6.2; then
- CXX="CC -n32"
- CC="cc -n32"
- LD="ld -n32"
+dnl# Uncomment these if you don't have IDO 7.2 or higher
+dnl# CXX="CC -n32"
+dnl# CC="cc -n32"
+dnl# LD="ld -n32"
MAKEDEPEND="CC -M"
# -woff 3322 is necessary due to errors in Xlib headers on IRIX
CFLAGS="-fullwarn $CFLAGS"
@@ -161,5 +162,5 @@ AC_CONFIG_HEADER(config.h:configh.in)
AC_OUTPUT(makeinclude)
dnl#
-dnl# End of "$Id: configure.in,v 1.11 1998/11/05 16:04:37 mike Exp $".
+dnl# End of "$Id: configure.in,v 1.12 1998/11/05 16:17:39 mike Exp $".
dnl#