diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2018-03-19 13:32:14 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-03-19 15:43:54 -0400 |
commit | 60aa53d97da1bbfbb88e9f2791c3f686ba34e764 (patch) | |
tree | fed7708d636bdcfda7251cce6fab2365283fcf38 /aclocal.m4 | |
parent | d718023e86c8681b87f212bd64eb6ca10ac8935e (diff) | |
download | haskell-60aa53d97da1bbfbb88e9f2791c3f686ba34e764.tar.gz |
configure: Accept version suffix in solaris name
Summary: OpenIndiana apparently reports a triple of i386-pc-solaris2.11.
Reviewers: hvr
Subscribers: rwbarton, thomie, erikd, carter
Differential Revision: https://phabricator.haskell.org/D4487
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 58d43e1ef0..e19cbf2aa9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1970,7 +1970,7 @@ AC_DEFUN([GHC_CONVERT_OS],[ $3="openbsd" ;; # As far as I'm aware, none of these have relevant variants - freebsd|netbsd|dragonfly|hpux|linuxaout|kfreebsdgnu|freebsd2|solaris2|mingw32|darwin|nextstep2|nextstep3|sunos4|ultrix|haiku) + freebsd|netbsd|dragonfly|hpux|linuxaout|kfreebsdgnu|freebsd2|mingw32|darwin|nextstep2|nextstep3|sunos4|ultrix|haiku) $3="$1" ;; aix*) # e.g. powerpc-ibm-aix7.1.3.0 @@ -1979,6 +1979,9 @@ AC_DEFUN([GHC_CONVERT_OS],[ darwin*) # e.g. aarch64-apple-darwin14 $3="darwin" ;; + solaris2*) + $3="solaris2" + ;; freebsd*) # like i686-gentoo-freebsd7 # i686-gentoo-freebsd8 # i686-gentoo-freebsd8.2 |