From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Robert J. Chassell" Newsgroups: gmane.emacs.devel Subject: Re: No atimers? Date: Tue, 16 Jul 2002 20:22:26 +0000 (UTC) Sender: emacs-devel-admin@gnu.org Message-ID: References: <200207161329.g6GDT5S22001@aztec.santafe.edu> Reply-To: bob@rattlesnake.com NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1026851020 3263 127.0.0.1 (16 Jul 2002 20:23:40 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 16 Jul 2002 20:23:40 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17UYrC-0000qW-00 for ; Tue, 16 Jul 2002 22:23:38 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17UZ2H-00084U-00 for ; Tue, 16 Jul 2002 22:35:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17UYqu-0006q4-00; Tue, 16 Jul 2002 16:23:20 -0400 Original-Received: from megalith.rattlesnake.com ([140.186.114.245] helo=localhost) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17UYqI-0006mK-00; Tue, 16 Jul 2002 16:22:43 -0400 Original-Received: by rattlesnake.com via sendmail from stdin id (Debian Smail3.2.0.114) Tue, 16 Jul 2002 20:22:26 +0000 (UTC) Original-To: Kai.Grossjohann@CS.Uni-Dortmund.DE Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:5805 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:5805 Here are better expressions for building Emacs -- here I set gcc=gcc-3.0 so both CC and CPP use GCC 3 rather than the one use GCC 3 and the other use GCC 2.95. (Incidentally, this change does not change the cursor timer issue.) ;; --------------------------------- ;; for make recompile (done as non-privileged user) (progn (cd "/usr/local/src/emacs/") (compile "time gcc=gcc-3.0 make && cd lisp && \ time gcc=gcc-3.0 make recompile \ EMACS=/usr/local/src/emacs/src/emacs")) ;; for install (done as root) (progn (cd "/usr/local/src/emacs/") (compile "gcc=gcc-3.0 time make install")) ;; --------------------------------- ;; --------------------------------- ;; for make boostrap (done as non-privileged user) (progn (cd "/usr/local/src/emacs/") (compile "gcc=gcc-3.0 ./configure --with-type1 --prefix=/usr/local \ --with-sound=yes \ && gcc=gcc-3.0 time make bootstrap")) ;; for install (done as root) (same as for `make recompile' install) (progn (cd "/usr/local/src/emacs/") (compile "gcc=gcc-3.0 time make install")) ;; ---------------------------------