commit | 34562e115b8e6069a7dae3a819226034a21f3141 | [log] [tgz] |
---|---|---|
author | Trent Nelson <trent@trent.me> | Wed Oct 17 18:01:12 2012 -0400 |
committer | Trent Nelson <trent@trent.me> | Wed Oct 17 18:01:12 2012 -0400 |
tree | b2b566089ec86caedb27f046c3fd857c275f6149 | |
parent | f892597eb5b27b4b0d8a741c663360c79ae371e2 [diff] [blame] |
Don't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX. It breaks them.
diff --git a/configure b/configure index 7098353..494bef9 100755 --- a/configure +++ b/configure
@@ -5751,6 +5751,11 @@ # environment? Darwin*) ;; + # XXX thankfully this useless troublemaker of a flag has been + # eradicated in the 3.x line. For now, make sure it isn't picked + # up by any of our other platforms that use CC. + AIX*|SunOS*|HP-UX*|IRIX*) + ;; *) BASECFLAGS="$BASECFLAGS -OPT:Olimit=0" ;;