From owner-freebsd-emulation@FreeBSD.ORG Sat Mar 26 15:00:40 2005 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91BCD16A4CF for ; Sat, 26 Mar 2005 15:00:40 +0000 (GMT) Received: from te-clan.ch (ns1.te-clan.ch [217.118.194.40]) by mx1.FreeBSD.org (Postfix) with SMTP id 4DBF043D73 for ; Sat, 26 Mar 2005 15:00:39 +0000 (GMT) (envelope-from bachi@te-clan.ch) Received: (qmail 57034 invoked from network); 26 Mar 2005 14:59:41 -0000 Received: from unknown (HELO ?10.0.0.10?) (80.219.52.234) by te-clan.ch with SMTP; 26 Mar 2005 14:59:41 -0000 From: Andreas Bachmann To: Alexander@Leidinger.net Content-Type: text/plain Date: Sat, 26 Mar 2005 17:00:51 +0100 Message-Id: <1111852851.1474.35.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.0 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: freebsd-emulation@freebsd.org Subject: [patch] upgrading x11-toolkits/linux-gtk2 fails X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2005 15:00:40 -0000 > This is wrong, it uses the FreeBSD binary which searches the FreeBSD > modules/loaders. But we need the Linux binary to search for the linux > modules/loaders. better patch: --- Makefile.orig Sat Feb 12 14:09:42 2005 +++ Makefile Sat Feb 12 14:15:23 2005 @@ -33,7 +33,7 @@ .for ii in gdk-pixbuf-query-loaders gtk-demo gtk-query-immodules-2.0 testgtk testtext @${BRANDELF} -t Linux ${PREFIX}/usr/bin/${ii} .endfor - @chroot ${PREFIX} /usr/bin/gtk-query-immodules-2.0 > ${PREFIX}/etc/gtk-2.0/gtk.immodules - @chroot ${PREFIX} /usr/bin/gdk-pixbuf-query-loaders > ${PREFIX}/etc/gtk-2.0/gdk-pixbuf.loaders + LD_LIBRARY_PATH=/usr/X11R6/lib @chroot ${PREFIX} /usr/bin/gtk-query-immodules-2.0 > ${PREFIX}/etc/gtk-2.0/gtk.immodules + LD_LIBRARY_PATH=/usr/X11R6/lib @chroot ${PREFIX} /usr/bin/gdk-pixbuf-query-loaders > ${PREFIX}/etc/gtk-2.0/gdk-pixbuf.loaders .include "../linux-gtk/Makefile" x11-toolkit/linux-pango is the same: add a LD_LIBRARY_PATH=/usr/X11R6/lib greets Andreas Bachmann