From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Ralf Fassel Newsgroups: gmane.emacs.bugs Subject: Re: `print' does not print Date: Tue, 26 Mar 2002 15:43:14 +0100 Organization: Akustik Technologie Goettingen Sender: bug-gnu-emacs-admin@gnu.org Message-ID: <15520.35074.980627.954921@jupiter.akutech-local.de> References: <3CA083A9.9FF5ED17@sgi.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1017153924 2243 127.0.0.1 (26 Mar 2002 14:45:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 26 Mar 2002 14:45:24 +0000 (UTC) Cc: David Kaelbling , rms@gnu.org, bug-gnu-emacs@gnu.org Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16psCR-0000a4-00 for ; Tue, 26 Mar 2002 15:45:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16psCP-0005Er-00; Tue, 26 Mar 2002 09:45:21 -0500 Original-Received: from mail.t-intra.de ([62.156.146.210]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16psAQ-0005AB-00; Tue, 26 Mar 2002 09:43:18 -0500 Original-Received: from jupiter.akutech-local.de ([217.84.238.111]) by mail.t-intra.de with Microsoft SMTPSVC(5.5.1877.507.50); Tue, 26 Mar 2002 15:43:15 +0100 Original-Received: (from ralf@localhost) by jupiter.akutech-local.de (8.11.1/8.11.1) id g2QEhF84347617; Tue, 26 Mar 2002 15:43:15 +0100 (MET) Original-To: Eli Zaretskii In-Reply-To: Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.5 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:198 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:198 * Eli Zaretskii | > > Anyway, I don't know if this is a factor, but my libraries are all built | > > from sources, and I linked them in statically. | > | > Hmm. I won't have time in the next two weeks, but I'll try building | > with static libraries too. Not as nice, but if it works that'll do. FWIW, I had some problems with two different versions of shared libz on my system which broke emacs': - the system comes with libz.so, version 1.0.4 - I had a self-compiled libz.so.1.0.4 in my LD_LIBRARY_PATH Now the system lib was picked up by -lz at link time, and the custom lib was picked up during runtime in LD_* This made emacs dump core on exit, since the two obviously were not compatible (the custom lib had additional symbols from gcc compilation which conflicted in some way with the emacs image). I resolved this by installing a static libz.1.1.4 and adapting the Makefile to use the static libz.a instead of -lz. R'