@@ -115,39 +115,6 @@ AC_DEFUN(AC_LBL_C_INIT,
115115 ac_lbl_cc_dont_try_gcc_dashW=yes
116116 ;;
117117
118- irix*)
119- #
120- # MIPS C, which is what we presume we're using, doesn't
121- # necessarily exit with a non-zero exit status if we
122- # hand it an invalid -W flag, can't be forced to do
123- # so, and doesn't handle GCC-style -W flags, so we
124- # don't want to try using GCC-style -W flags.
125- #
126- ac_lbl_cc_dont_try_gcc_dashW=yes
127- #
128- # It also, apparently, defaults to "char" being
129- # unsigned, unlike most other C implementations;
130- # I suppose we could say "signed char" whenever
131- # we want to guarantee a signed "char", but let's
132- # just force signed chars.
133- #
134- # -xansi is normally the default, but the
135- # configure script was setting it; perhaps -cckr
136- # was the default in the Old Days. (Then again,
137- # that would probably be for backwards compatibility
138- # in the days when ANSI C was Shiny and New, i.e.
139- # 1989 and the early '90's, so maybe we can just
140- # drop support for those compilers.)
141- #
142- # -g is equivalent to -g2, which turns off
143- # optimization; we choose -g3, which generates
144- # debugging information but doesn't turn off
145- # optimization (even if the optimization would
146- # cause inaccuracies in debugging).
147- #
148- $1 ="$$1 -xansi -signed -g3"
149- ;;
150-
151118 solaris*)
152119 #
153120 # Assumed to be Sun C, which requires -errwarn to force
@@ -249,9 +216,9 @@ AC_DEFUN(AC_LBL_CHECK_DEPENDENCY_GENERATION_OPT,
249216 #
250217 case "$host_os" in
251218
252- irix*| darwin*)
219+ darwin*)
253220 #
254- # MIPS C for IRIX and Clang use -M.
221+ # Clang uses -M.
255222 #
256223 ac_lbl_dependency_flag="-M"
257224 ;;
@@ -802,14 +769,6 @@ AC_DEFUN(AC_LBL_DEVEL,
802769 AC_LBL_CHECK_COMPILER_OPT($1 , -Wwrite-strings)
803770 fi
804771 AC_LBL_CHECK_DEPENDENCY_GENERATION_OPT()
805- #
806- # We used to set -n32 for IRIX 6 when not using GCC (presumed
807- # to mean that we're using MIPS C or MIPSpro C); it specified
808- # the "new" faster 32-bit ABI, introduced in IRIX 6.2. I'm
809- # not sure why that would be something to do *only* with a
810- # .devel file; why should the ABI for which we produce code
811- # depend on .devel?
812- #
813772 AC_MSG_CHECKING ( [ whether to use an os-proto.h header] )
814773 os=`echo $host_os | sed -e 's/\([ [ 0-9] ] [ [ 0-9] ] *\)[ [ ^0-9] ] .*$/\1/'`
815774 name="lbl/os-$os.h"
0 commit comments