From owner-freebsd-stable@FreeBSD.ORG Tue Apr 20 04:22:55 2004 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E71E816A4CE for ; Tue, 20 Apr 2004 04:22:55 -0700 (PDT) Received: from smtp.thilelli.net (jgabel.net1.nerim.net [80.65.226.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D73643D48 for ; Tue, 20 Apr 2004 04:22:55 -0700 (PDT) (envelope-from jpeg@thilelli.net) Received: from localhost (localhost.thilelli.net [127.0.0.1]) by bento.thilelli.net (Postfix) with ESMTP id B70CC78C65; Tue, 20 Apr 2004 13:22:50 +0200 (CEST) Received: from bento.thilelli.net ([127.0.0.1]) by localhost (bento.thilelli.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 08515-04; Tue, 20 Apr 2004 13:22:49 +0200 (CEST) Received: from webmail.thilelli.net (localhost.thilelli.net [127.0.0.1]) by bento.thilelli.net (Postfix) with SMTP id C248978C50; Tue, 20 Apr 2004 13:22:49 +0200 (CEST) Received: from 192.168.0.105 (SquirrelMail authenticated user jgabel) by webmail.thilelli.net with HTTP; Tue, 20 Apr 2004 13:22:49 +0200 (CEST) Message-ID: <49314.192.168.0.105.1082460169.squirrel@webmail.thilelli.net> In-Reply-To: <4084E16A.6090209@kernel32.de> References: <49279.192.168.0.105.1082383199.squirrel@webmail.thilelli.net> <4083DE92.9020506@kernel32.de> <49555.192.168.0.105.1082385176.squirrel@webmail.thilelli.net> <4083E4EF.6090601@kernel32.de> <4084E16A.6090209@kernel32.de> Date: Tue, 20 Apr 2004 13:22:49 +0200 (CEST) From: "Julien Gabel" To: "Marian Hettwer" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Virus-Scanned: by amavisd-new at thilelli.net cc: freebsd-stable@freebsd.org Subject: Re: xfce4-iconbox doesn't start X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Apr 2004 11:22:56 -0000 > result: xfce4-iconbox is still core dumping. > I got only one error after the portupgrade -rR run, this was a "compile > error" in gtk-2.2.4. Although gtk-2.4.0 compiled fine... 'xfce4-iconbox' has a dependancy on 'gtk-2.4.0', so this must not be a problem for xfce4 (at least): $ pkg_info -xr xfce4-iconbox | grep -i gtk Dependency: gtk-2.4.0 > pkg_info shows that iconbox is still linked against gtk-2.2.4_1 > [mhettwer@acchilles] <~> $ pkg_info /var/db/pkg/gtk-2.2.4_1/|grep iconbox > xfce4-iconbox-4.0.5 > > Does it make sense that it's also linked against gtk-2.4.0 ??? > [mhettwer@acchilles] <~> $ pkg_info /var/db/pkg/gtk-2.4.0/|grep iconbox > xfce4-iconbox-4.0.5 To know with which libraries this executable is linked, you better must use: $ ldd /usr/X11R6/bin/xfce4-iconbox | grep -i gtk libgtk-x11-2.0.so.400 => /usr/X11R6/lib/libgtk-x11-2.0.so.400 (0x280df000) Library which is provided by the 'gtk-2.4.0', so all must be allright: $ pkg_info -xL gtk-2.4.0 | grep -i libgtk [...] /usr/X11R6/lib/libgtk-x11-2.0.so.400 Are ktrace(1) or truss(1) give us more information? -- -jpeg.