From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.help Subject: Re: newbie: just built emacs, it's core dumping. Date: Sat, 27 Nov 2004 21:21:14 +0100 Message-ID: <86brdjoxfp.fsf@ketchup.de.uu.net> References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1101587477 27494 80.91.229.6 (27 Nov 2004 20:31:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 27 Nov 2004 20:31:17 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 27 21:31:13 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CY9Ds-00023X-00 for ; Sat, 27 Nov 2004 21:31:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CY9NC-0000S6-0q for geh-help-gnu-emacs@m.gmane.org; Sat, 27 Nov 2004 15:40:50 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CY9My-0000OM-Sw for help-gnu-emacs@gnu.org; Sat, 27 Nov 2004 15:40:37 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CY9My-0000Ny-81 for help-gnu-emacs@gnu.org; Sat, 27 Nov 2004 15:40:36 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CY9Mx-0000Nk-Oq for help-gnu-emacs@gnu.org; Sat, 27 Nov 2004 15:40:35 -0500 Original-Received: from [80.91.229.2] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CY9Db-0008Le-Ck for help-gnu-emacs@gnu.org; Sat, 27 Nov 2004 15:30:55 -0500 Original-Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CY9Da-0003Ic-00 for ; Sat, 27 Nov 2004 21:30:54 +0100 Original-Received: from p5487cb14.dip.t-dialin.net ([84.135.203.20]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Nov 2004 21:30:54 +0100 Original-Received: from kai by p5487cb14.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Nov 2004 21:30:54 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: help-gnu-emacs@gnu.org Original-Lines: 28 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: p5487cb14.dip.t-dialin.net User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:Hsz7T2zLUKnDch2YBTy7hFWZBuM= X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:22375 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:22375 gl@csdsun1.arlut.utexas.edu (Jay G. Scott) writes: > ahhh, yes, forgot: solaris 9. gcc. > > > configure --without-pop --x-includes=/usr/include \ > --x-libraries=/usr/lib --without-toolkit-scroll-bars First of all, normally you will have to invoke "configure" using the explicit path, like so: ./configure. Secondly, it is better not to specify --x-includes and --x-libraries, the configure script is often smart enough to figure it out. (The correct values are /usr/openwin/include and /usr/openwin/lib, I think.) So my suggestion is to try this: ./configure --without-pop --without-toolkit-scroll-bars If that fails to work, please provide more detail. What does the above ./configure line print? What happens when you say "make" after this? What happens when you say "make install" after this? (Btw, why do you want to turn POP support off? It doesn't do any harm as long as you don't use it...) Kai