diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-03-07 15:52:27 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-03-07 15:52:27 -0800 |
commit | b648ed992d2c3ea8a7462a595e51a07085bf4688 (patch) | |
tree | 351cfbf64021f124ec4c40a4d31d1f8e4a94b8d9 | |
parent | c044ea620446db676ee076484fed3268c4d7c695 (diff) |
Solaris builds need to pass -intelabi to makestrs, even on SPARC
For some reason, when Solaris moved to X11R6.0, the intelabi version
of StringDefs.c/.h was used on SPARC, so now we're stuck with 10+ years
of binaries built to use it.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 407112a..40dbf5c 100644 --- a/configure.ac +++ b/configure.ac @@ -81,10 +81,8 @@ AC_DEFINE_DIR([appdefaultdir], [appdefaultdir], [app default data directory]) # generated by util/string.list in StringDefs.h & Shell.h case $host_os in solaris*) - case $host_cpu in - sparc*) STRINGSABIOPTIONS="-sparcabi -solarisabinames" ;; - *) STRINGSABIOPTIONS="-intelabi -solarisabinames" ;; - esac + # Solaris uses -intelabi even on SPARC + STRINGSABIOPTIONS="-intelabi -solarisabinames" ;; sco* | svr4*) case $host_cpu in |