emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100466: * configure.in: Simplify som


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100466: * configure.in: Simplify some of the $canonical tests.
Date: Thu, 27 May 2010 20:34:15 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100466
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2010-05-27 20:34:15 -0700
message:
  * configure.in: Simplify some of the $canonical tests.
modified:
  ChangeLog
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2010-05-27 05:43:27 +0000
+++ b/ChangeLog 2010-05-28 03:34:15 +0000
@@ -1,3 +1,7 @@
+2010-05-28  Glenn Morris  <address@hidden>
+
+       * configure.in: Simplify some of the $canonical tests.
+
 2010-05-27  Glenn Morris  <address@hidden>
 
        * config.bat: Do not preprocess src/Makefile.in.

=== modified file 'configure.in'
--- a/configure.in      2010-05-27 05:43:27 +0000
+++ b/configure.in      2010-05-28 03:34:15 +0000
@@ -369,7 +369,7 @@
 ### the appropriate operating system and machine description files.
 
 ### You would hope that you could choose an m/*.h file pretty much
-### based on the machine portion of the configuration name, and an s-
+### based on the machine portion of the configuration name, and an s/*.h
 ### file based on the operating system portion.  However, it turns out
 ### that each m/*.h file is pretty manufacturer-specific - for
 ### example mips.h is MIPS
@@ -381,10 +381,6 @@
 ### /etc/MACHINES doesn't say anything about version numbers, be
 ### prepared to handle anything reasonably.  If version numbers
 ### matter, be sure /etc/MACHINES says something about it.
-###
-### Eric Raymond says we should accept strings like "sysvr4" to mean
-### "System V Release 4"; he writes, "The old convention encouraged
-### confusion between `system' and `release' levels'."
 
 machine='' opsys='' unported=no
 case "${canonical}" in
@@ -499,16 +495,16 @@
   s390x-*-linux-gnu* )
     machine=ibms390x opsys=gnu-linux
   ;;
-  rs6000-ibm-aix4.2* | powerpc-ibm-aix4.2*  )
-    machine=ibmrs6000 opsys=aix4-2
-  ;;
-  rs6000-ibm-aix4.3* | powerpc-ibm-aix4.3*  )
-    machine=ibmrs6000 opsys=aix4-2
-  ;;
-  rs6000-ibm-aix5* | powerpc-ibm-aix5*  )
-    machine=ibmrs6000 opsys=aix4-2
-  ;;
-  rs6000-ibm-aix6* | powerpc-ibm-aix6*  )
+  rs6000-ibm-aix4.[23]* )
+    machine=ibmrs6000 opsys=aix4-2
+  ;;
+  powerpc-ibm-aix4.[23]*  )
+    machine=ibmrs6000 opsys=aix4-2
+  ;;
+  rs6000-ibm-aix[56]* )
+    machine=ibmrs6000 opsys=aix4-2
+  ;;
+  powerpc-ibm-aix[56]*  )
     machine=ibmrs6000 opsys=aix4-2
   ;;
 


reply via email to

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