emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116663: Fix configuration bug on Solaris 2.5.1.


From: Paul Eggert
Subject: [Emacs-diffs] trunk r116663: Fix configuration bug on Solaris 2.5.1.
Date: Wed, 05 Mar 2014 02:39:09 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116663
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16896
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2014-03-04 18:39:05 -0800
message:
  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.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2014-03-03 04:57:26 +0000
+++ b/ChangeLog 2014-03-05 02:39:05 +0000
@@ -1,3 +1,9 @@
+2014-03-05  Paul Eggert  <address@hidden>
+
+       Fix configuration bug on Solaris 2.5.1 (Bug#16896).
+       * 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.
+
 2014-02-25  Paul Eggert  <address@hidden>
 
        Merge from gnulib (Bug#16825).

=== modified file 'configure.ac'
--- a/configure.ac      2014-02-25 18:28:59 +0000
+++ b/configure.ac      2014-03-05 02:39:05 +0000
@@ -575,6 +575,10 @@
       * )              unported=yes ;;
     esac
     case "${canonical}" in
+      *-sunos5.[1-9][0-9]* | *-solaris2.[1-9][0-9]* )
+               opsys=sol2-10
+               emacs_check_sunpro_c=yes
+               ;;
       *-sunos5.6* | *-solaris2.6* )
                opsys=sol2-6
                RANLIB="ar -ts"
@@ -583,10 +587,6 @@
                opsys=sol2-6
                emacs_check_sunpro_c=yes
                ;;
-      *-sunos5* | *-solaris* )
-               opsys=sol2-10
-               emacs_check_sunpro_c=yes
-               ;;
     esac
     ## Watch out for a compiler that we know will not work.
     case "${canonical}" in


reply via email to

[Prev in Thread] Current Thread [Next in Thread]