From owner-freebsd-questions@FreeBSD.ORG Mon Oct 6 09:59:47 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4637816A4B3 for ; Mon, 6 Oct 2003 09:59:47 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29C5143FBF for ; Mon, 6 Oct 2003 09:59:46 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 64187 invoked from network); 6 Oct 2003 16:59:44 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 6 Oct 2003 16:59:44 -0000 Message-ID: <3F819F80.4040604@liwing.de> Date: Mon, 06 Oct 2003 16:59:44 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031004 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: /usr/X11R6/lib/libscintilla.so: Undefined symbol "g_thread_init" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2003 16:59:47 -0000 Hi, I'm trying to get my favourite editor (moleskine) run after a 'portupgrade -far'. But I'm getting: $ moleskine Traceback (most recent call last): File "/usr/X11R6/bin/moleskine", line 39, in ? from Moleskine.MoleskineApp import * File "/usr/X11R6/share/gnome/Moleskine/Moleskine/MoleskineApp.py", line 32, in ? from Document import Document File "/usr/X11R6/share/gnome/Moleskine/Moleskine/Document.py", line 31, in ? import gtkscintilla File "/usr/local/lib/python2.3/site-packages/gtkscintilla.py", line 2, in ? import _gtkscintilla ImportError: /usr/X11R6/lib/libscintilla.so: Undefined symbol "g_thread_init" As you can see, moleskine is a python script. It's based on py-gtk-0.6, so I build it against glib12/gtk12. When I'm calling SciTE (which is an editor using libscintilla directly) the error doesn't appear. So I'm checked /usr/X11R6/lib/libscintilla.so using ldd, and it contains information, that /usr/local/lib/libglib12.so.3 is required (which contains g_thread_init call). My system is FreeBSD 5.1-CURRENT #0: Fri Oct 3 22:18:43 GMT 2003. A reboot helped nothing, neither ldconfig -R did. Any hints what I can do? Jens