From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: s/vms.h SYSTEM_TYPE Date: Fri, 14 Mar 2003 07:40:54 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: Reply-To: ttn@glug.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1047647052 27912 80.91.224.249 (14 Mar 2003 13:04:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 14 Mar 2003 13:04:12 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Mar 14 14:04:09 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18tor3-0007Fr-00 for ; Fri, 14 Mar 2003 14:04:09 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18tpFG-0005Mp-00 for ; Fri, 14 Mar 2003 14:29:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18toZH-000098-00 for emacs-devel@quimby.gnus.org; Fri, 14 Mar 2003 07:45:47 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18toWn-0007TW-00 for emacs-devel@gnu.org; Fri, 14 Mar 2003 07:43:13 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18toWW-0006sR-00 for emacs-devel@gnu.org; Fri, 14 Mar 2003 07:42:57 -0500 Original-Received: from colo.agora-net.com ([207.245.84.69]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18toUa-0005eI-00 for emacs-devel@gnu.org; Fri, 14 Mar 2003 07:40:56 -0500 Original-Received: from ttn by colo.agora-net.com with local (Exim 3.34 #1) id 18toUY-0002CF-00 for emacs-devel@gnu.org; Fri, 14 Mar 2003 07:40:54 -0500 Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:12356 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12356 vms systems running emacs all show `system-type' to be "vax-vms" due to: #define SYSTEM_TYPE "vax-vms" in s/vms.h. that name is incorrect for alpha-vms systems. also, i see using "grep define.SYSTEM_TYPE s/*.h" that cpu type is not included in any other SYSTEM_TYPE. perhaps we can omit the "vax-" portion in vms.h? alternatively, we can leave it be for actual vax-vms systems (to support a limited form of backward compatibility), and trim to simply "vms" for all other *-vms variants (alpha, ia64, etc). thoughts? anyone doing nightly vms builds? thi