diff options
| author | Paul Eggert | 2014-03-04 18:39:05 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-03-04 18:39:05 -0800 |
| commit | 59587ee4559e791138ea55181834ca4cdd4e8270 (patch) | |
| tree | 6a518fbbcfd4d9e6ad6b74742a34b0dbac72f378 | |
| parent | 94a089b5f873837a369a176c114430e0fd0bee05 (diff) | |
| download | emacs-59587ee4559e791138ea55181834ca4cdd4e8270.tar.gz emacs-59587ee4559e791138ea55181834ca4cdd4e8270.zip | |
Fix configuration bug on Solaris 2.5.1.
* configure.ac: Fix a bug in shell pattern matching that caused
'configure' to treat Solaris 2.5.1 as if it were Solaris 10 or later.
Fixes: debbugs:16896
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.ac | 8 |
2 files changed, 10 insertions, 4 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-02-25 Paul Eggert <eggert@penguin.cs.ucla.edu> | 7 | 2014-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 |