aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac8
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b071411f15..ed49b2c5e45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12014-03-05 Paul Eggert <eggert@cs.ucla.edu>
2
3 Fix configuration bug on Solaris 2.5.1 (Bug#16896).
4 * configure.ac: Fix a bug in shell pattern matching that caused
5 'configure' to treat Solaris 2.5.1 as if it were Solaris 10 or later.
6
12014-02-25 Paul Eggert <eggert@penguin.cs.ucla.edu> 72014-02-25 Paul Eggert <eggert@penguin.cs.ucla.edu>
2 8
3 Merge from gnulib (Bug#16825). 9 Merge from gnulib (Bug#16825).
diff --git a/configure.ac b/configure.ac
index 6a31fcb1b2b..f2a2186403c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -575,6 +575,10 @@ case "${canonical}" in
575 * ) unported=yes ;; 575 * ) unported=yes ;;
576 esac 576 esac
577 case "${canonical}" in 577 case "${canonical}" in
578 *-sunos5.[1-9][0-9]* | *-solaris2.[1-9][0-9]* )
579 opsys=sol2-10
580 emacs_check_sunpro_c=yes
581 ;;
578 *-sunos5.6* | *-solaris2.6* ) 582 *-sunos5.6* | *-solaris2.6* )
579 opsys=sol2-6 583 opsys=sol2-6
580 RANLIB="ar -ts" 584 RANLIB="ar -ts"
@@ -583,10 +587,6 @@ case "${canonical}" in
583 opsys=sol2-6 587 opsys=sol2-6
584 emacs_check_sunpro_c=yes 588 emacs_check_sunpro_c=yes
585 ;; 589 ;;
586 *-sunos5* | *-solaris* )
587 opsys=sol2-10
588 emacs_check_sunpro_c=yes
589 ;;
590 esac 590 esac
591 ## Watch out for a compiler that we know will not work. 591 ## Watch out for a compiler that we know will not work.
592 case "${canonical}" in 592 case "${canonical}" in