From unknown Mon Aug 18 08:56:20 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#6122 <6122@debbugs.gnu.org> To: bug#6122 <6122@debbugs.gnu.org> Subject: Status: START_FILES is undefined on solaris2.10 Reply-To: bug#6122 <6122@debbugs.gnu.org> Date: Mon, 18 Aug 2025 15:56:20 +0000 retitle 6122 START_FILES is undefined on solaris2.10 reassign 6122 emacs submitter 6122 Lawrence Mitchell severity 6122 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Thu May 06 07:11:44 2010 Received: (at submit) by debbugs.gnu.org; 6 May 2010 11:11:44 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9yzV-0000vB-J9 for submit@debbugs.gnu.org; Thu, 06 May 2010 07:11:44 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9wsL-0008Nt-BG for submit@debbugs.gnu.org; Thu, 06 May 2010 04:56:10 -0400 Received: from lists.gnu.org ([199.232.76.165]:56504) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1O9wsI-00051M-Lj for submit@debbugs.gnu.org; Thu, 06 May 2010 04:56:06 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O9wsH-00082f-Qy for bug-gnu-emacs@gnu.org; Thu, 06 May 2010 04:56:05 -0400 Received: from [140.186.70.92] (port=57643 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9wsG-000802-IZ for bug-gnu-emacs@gnu.org; Thu, 06 May 2010 04:56:05 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_RP_MATCHES_RCVD, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O9wsE-00036X-L3 for bug-gnu-emacs@gnu.org; Thu, 06 May 2010 04:56:04 -0400 Received: from lo.gmane.org ([80.91.229.12]:36173) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9wsE-00035K-F8 for bug-gnu-emacs@gnu.org; Thu, 06 May 2010 04:56:02 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O9wsC-0006vl-8c for bug-gnu-emacs@gnu.org; Thu, 06 May 2010 10:56:00 +0200 Received: from garnet.epcc.ed.ac.uk ([129.215.56.222]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 May 2010 10:56:00 +0200 Received: from wence by garnet.epcc.ed.ac.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 06 May 2010 10:56:00 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: bug-gnu-emacs@gnu.org connect(): No such file or directory From: Lawrence Mitchell Subject: START_FILES is undefined on solaris2.10 Date: Thu, 06 May 2010 09:54:25 +0100 Lines: 39 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: garnet.epcc.ed.ac.uk User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (usg-unix-v) Cancel-Lock: sha1:peI5VmoycjjsdBBucO+68yoE0uo= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.6 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 06 May 2010 07:11:38 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.9 (----) The recent changes to src/Makefile.in removed a conditional definition of START_FILES. | Author: Dan Nicolaescu | Date: Fri Apr 23 00:21:18 2010 -0700 | Simplify STARTFILES definition. | * Makefile.in (STARTFILES): Remove conditional code, not needed anymore. At least on solaris2.10, START_FILES is now undefined when building, which causes make to fail because it doesn't know how to build the STARTFILES target. This fix to s/sol2-10.h allows Emacs to build successfully here, although I am not sure if it is the correct one: diff --git a/src/s/sol2-10.h b/src/s/sol2-10.h index 865e175..d21bf85 100644 --- a/src/s/sol2-10.h +++ b/src/s/sol2-10.h @@ -27,5 +27,7 @@ /* This is needed for the system_process_attributes implementation. */ #define _STRUCTURED_PROC 1 +#define START_FILES + /* arch-tag: 7c51a134-5469-4d16-aa00-d69224640eeb (do not change this comment) */ I do not know if a similar fix should be applied in s/sol2-6.h or s/usg5-4.h. Cheers, Lawrence -- wence@gmx.li From debbugs-submit-bounces@debbugs.gnu.org Thu May 06 12:26:50 2010 Received: (at 6122-done) by debbugs.gnu.org; 6 May 2010 16:26:50 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OA3uU-000520-8y for submit@debbugs.gnu.org; Thu, 06 May 2010 12:26:50 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OA3uT-00051t-3s for 6122-done@debbugs.gnu.org; Thu, 06 May 2010 12:26:49 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OA3uO-0004WZ-8V; Thu, 06 May 2010 12:26:44 -0400 To: Lawrence Mitchell Subject: Re: bug#6122: START_FILES is undefined on solaris2.10 References: From: Dan Nicolaescu X-Debbugs-No-Ack: yes Date: Thu, 06 May 2010 12:26:44 -0400 In-Reply-To: (Lawrence Mitchell's message of "Thu\, 06 May 2010 09\:54\:25 +0100") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.5 (------) X-Debbugs-Envelope-To: 6122-done Cc: 6122-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.5 (------) Lawrence Mitchell writes: > The recent changes to src/Makefile.in removed a conditional > definition of START_FILES. Thanks, this should be fixed now. From unknown Mon Aug 18 08:56:20 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 04 Jun 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator