From sumitskj_20@yahoo.com Tue Aug 1 02:39:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D3573B006C for ; Tue, 1 Aug 2006 02:39:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21264-09 for ; Tue, 1 Aug 2006 02:39:49 -0400 (EDT) Received: from web31007.mail.mud.yahoo.com (web31007.mail.mud.yahoo.com [68.142.200.170]) by menubar.gnome.org (Postfix) with SMTP id 1E6453B0011 for ; Tue, 1 Aug 2006 02:39:49 -0400 (EDT) Received: (qmail 32622 invoked by uid 60001); 1 Aug 2006 06:39:48 -0000 Message-ID: <20060801063948.32620.qmail@web31007.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31007.mail.mud.yahoo.com via HTTP; Mon, 31 Jul 2006 23:39:48 PDT Date: Mon, 31 Jul 2006 23:39:48 -0700 (PDT) From: Sumit Kumar Jain Subject: glib 2.10.3 slice allocator To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-795452128-1154414388=:32316" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.684 tagged_above=-999 required=2 tests=[AWL=-2.807, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_50_60=0.134, HTML_MESSAGE=0.001] X-Spam-Score: 0.684 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 06:39:50 -0000 --0-795452128-1154414388=:32316 Content-Type: text/plain; charset=us-ascii Hi, I was going through the glib 2.10.3 slice allocators. Although the docs as well as the .c file suggests that it is based on Bonwick's algorithm, I am not able to understand it well. Can someone please help me with understading it. Regards, Sumit --0-795452128-1154414388=:32316 Content-Type: text/html; charset=us-ascii
Hi,
I was going through the glib 2.10.3 slice allocators. Although the docs as well as the .c file suggests that it is based on Bonwick's algorithm, I am not able to understand it well. Can someone please help me with understading it.
 
Regards,
Sumit
--0-795452128-1154414388=:32316-- From rvaughan@gmail.com Tue Aug 1 10:38:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A0E3B0085 for ; Tue, 1 Aug 2006 10:38:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09479-03 for ; Tue, 1 Aug 2006 10:38:21 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 374543B00C7 for ; Tue, 1 Aug 2006 10:38:21 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so438301ugf for ; Tue, 01 Aug 2006 07:38:20 -0700 (PDT) Received: by 10.67.100.17 with SMTP id c17mr1049032ugm; Tue, 01 Aug 2006 07:38:20 -0700 (PDT) Received: by 10.67.22.16 with HTTP; Tue, 1 Aug 2006 07:38:19 -0700 (PDT) Message-ID: Date: Tue, 1 Aug 2006 15:38:19 +0100 From: "Richard Vaughan" To: gtk-list@gnome.org Subject: keyboard events MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.538 tagged_above=-999 required=2 tests=[AWL=0.862, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.538 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 14:38:22 -0000 Hi, I am trying to capture key presses in a window, but the window seems to be ignoring the signals. GtkWidget* mainWindow = gtk_drawing_area_new(); ... gtk_widget_add_events(mainWindow, (GDK_KEY_RELEASE_MASK | GDK_KEY_PRESS_MASK)); gtk_signal_connect(GTK_OBJECT( mainWindow ), "key_press_event", G_CALLBACK( key_press_win ), NULL); ... static gboolean key_press_win(GtkWidget* w, GdkEventKey* key, gpointer data) { printf("press.\n"); return false; } I was expecting to see some output on the console, but nothing shows up. The window does also have mouse click event handlers, which work fine.... Can anyone see what I have done wrong? Thanks, Richard From kalou@ti.com Tue Aug 1 13:27:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 739963B00B0 for ; Tue, 1 Aug 2006 13:27:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17700-08 for ; Tue, 1 Aug 2006 13:27:49 -0400 (EDT) Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by menubar.gnome.org (Postfix) with ESMTP id 4C61E3B0077 for ; Tue, 1 Aug 2006 13:27:49 -0400 (EDT) Received: from dlep52.itg.ti.com ([157.170.170.57]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id k71HRiDH030670 for ; Tue, 1 Aug 2006 12:27:49 -0500 Received: from svrhermes.tif.ti.com (localhost [127.0.0.1]) by dlep52.itg.ti.com (8.12.11/8.12.11) with ESMTP id k71HRhTX012737 for ; Tue, 1 Aug 2006 12:27:43 -0500 (CDT) Received: from lnx0029563.tif.ti.com (lnx0029563.tif.ti.com [137.167.117.221]) by svrhermes.tif.ti.com (Postfix) with ESMTP id 7E69C4783E for ; Tue, 1 Aug 2006 19:27:42 +0200 (MEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lnx0029563.tif.ti.com (8.12.11/8.12.11) with ESMTP id k71HRg7A011400 for ; Tue, 1 Aug 2006 19:27:42 +0200 Message-ID: <44CF8F0E.6040709@ti.com> Date: Tue, 01 Aug 2006 19:27:42 +0200 From: Olivier Kaloudoff User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.365 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, RCVD_IN_WHOIS_INVALID=2.234] X-Spam-Score: -0.365 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 17:27:50 -0000 Hello, using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following error message when compiling gtk+ on linux32, gcc-4.1.1; make[4]: Entering directory `/tmp/gtk+-2.10.1/modules/printbackends/cups' if /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/ap ps/free/glib/2.12.1/include/glib-2.0 -I/apps/free/glib/2.12.1/lib/glib-2.0/include -I/apps/free/pango/1.13.5/include/pango-1.0 -I/apps/free/cairo/1.2.0/include/cairo -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF ".deps/gtkprintbackendcups.Tpo" \ -c -o gtkprintbackendcups.lo `test -f 'gtkprintbackendcups.c' || echo './'`gtkprintbackendcups.c; \ then mv -f ".deps/gtkprintbackendcups.Tpo" ".deps/gtkprintbackendcups.Plo"; \ else rm -f ".deps/gtkprintbackendcups.Tpo"; exit 1; \ fi gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/apps/free/glib/2.12.1/include/glib-2.0 -I/app s/free/glib/2.12.1/lib/glib-2.0/include -I/apps/free/pango/1.13.5/include/pango-1.0 -I/apps/free/cairo/1.2.0/include/cairo -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC -DPIC -o .libs/gtkprintbackendcups.o gtkprintbackendcups.c: In function '_cairo_write_to_cups': gtkprintbackendcups.c:272: warning: pointer targets in passing argument 2 of 'g_io_channel_write_chars' differ in signedness gtkprintbackendcups.c: In function 'available_choices': gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c: In function 'create_pickone_option': gtkprintbackendcups.c:1936: warning: implicit declaration of function 'create_pickone_option_custom' gtkprintbackendcups.c:1936: warning: assignment makes pointer from integer without a cast gtkprintbackendcups.c: In function 'handle_option': gtkprintbackendcups.c:2052: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2059: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2066: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c: In function 'handle_group': gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' Is there a simple fix to this ? Best Regards, Olivier From yeti@physics.muni.cz Tue Aug 1 15:27:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F13E73B0240 for ; Tue, 1 Aug 2006 15:27:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22547-08 for ; Tue, 1 Aug 2006 15:27:39 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 04AB63B0222 for ; Tue, 1 Aug 2006 15:27:39 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k71JRbLX015074 for ; Tue, 1 Aug 2006 21:27:38 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 528AE23E09; Tue, 1 Aug 2006 21:27:37 +0200 (CEST) Date: Tue, 1 Aug 2006 21:27:41 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: keyboard events Message-ID: <20060801192741.GO2362@potato.chello.upc.cz> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 19:27:41 -0000 On Tue, Aug 01, 2006 at 03:38:19PM +0100, Richard Vaughan wrote: > I am trying to capture key presses in a window, but the window seems > to be ignoring the signals. I suppose you mean a drawing area widget as your code indicates, not a GtkWindow (you should have no problems receiving GtkWindow's keyboard events). > > GtkWidget* mainWindow = gtk_drawing_area_new(); > ... > gtk_widget_add_events(mainWindow, (GDK_KEY_RELEASE_MASK | GDK_KEY_PRESS_MASK)); > gtk_signal_connect(GTK_OBJECT( mainWindow ), > "key_press_event", > G_CALLBACK( key_press_win ), > NULL); Note gtk_signal_connect() is *long time* deprecated and the canonical event naming is with dashes: "key-press-event". > static gboolean key_press_win(GtkWidget* w, GdkEventKey* key, gpointer data) { > printf("press.\n"); > > return false; > } > > > I was expecting to see some output on the console, but nothing shows > up. The window does also have mouse click event handlers, which work > fine.... > > Can anyone see what I have done wrong? The drawing area has to have keyboard focus to get keyboard events. Set its "can-focus" property to TRUE. It also has to get the focus somehow, widgets that can have keyboard focus typically grab it with gtk_widget_grab_focus() when one clicks on them with mouse. Yeti -- Anonyms eat their boogers. From suryakiran.gullapalli@gmail.com Tue Aug 1 23:45:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 487B13B00E2 for ; Tue, 1 Aug 2006 23:45:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08683-02 for ; Tue, 1 Aug 2006 23:45:09 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by menubar.gnome.org (Postfix) with ESMTP id 245463B0116 for ; Tue, 1 Aug 2006 23:45:09 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so325151nfa for ; Tue, 01 Aug 2006 20:45:08 -0700 (PDT) Received: by 10.49.92.18 with SMTP id u18mr1728712nfl; Tue, 01 Aug 2006 20:45:08 -0700 (PDT) Received: by 10.48.164.16 with HTTP; Tue, 1 Aug 2006 20:45:08 -0700 (PDT) Message-ID: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> Date: Wed, 2 Aug 2006 09:15:08 +0530 From: "Surya Kiran Gullapalli" To: gtk-list@gnome.org, gtkmm-list@gnome.org Subject: Understanding themes MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5205_33108181.1154490308160" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.579 tagged_above=-999 required=2 tests=[AWL=-0.129, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -1.579 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 03:45:10 -0000 ------=_Part_5205_33108181.1154490308160 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, I'm trying to understand the working of themes and the resource files. I've a small application and before running the application, i'm setting the gtkrc file using the environment variable GTK2_RC_FILES, so that my application uses my gtkrc file instead of using it from theme. what ever settings i made in the gtkrc file are getting reflected in the application, but the application font is behaving in a different manner. I've set the application font like this in gtkrc file gtk-font-name = "Courier 8" If no theme is running, (i.e. say i'm working in KDE), application font has been set properly, from the gtkrc file. But if some gtk-theme is running say clearlooks or something else, the application is picking up the font from gnome settings. Is this predictable behaviour? Also, If i want my application to use a font, which is not cached using fontconfig, where should i put the font, and how do i tell my application to pick up the font. I want these things to work in both linux and windows. Thanks in advance, Surya ------=_Part_5205_33108181.1154490308160 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all,
I'm trying to understand the working of themes and the resource files.

I've a small application and before running the application, i'm setting the gtkrc file using the environment variable GTK2_RC_FILES, so that my application uses my gtkrc file instead of using it from theme.

what ever settings i made in the gtkrc file are getting reflected in the application, but the application font is behaving in a different manner.

I've set the application font like this in gtkrc file

gtk-font-name = "Courier 8"

If no theme is running, (i.e. say i'm working in KDE), application font has been set properly, from the gtkrc file. But if some gtk-theme is running say clearlooks or something else, the application is picking up the font from gnome settings. Is this predictable behaviour?

Also, If i want my application to use a font, which is not cached using fontconfig, where should i put the font, and how do i tell my application to pick up the font.

I want these things to work in both linux and windows.

Thanks in advance,
Surya
------=_Part_5205_33108181.1154490308160-- From suryakiran.gullapalli@gmail.com Wed Aug 2 00:11:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F35E23B0264 for ; Wed, 2 Aug 2006 00:11:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09709-07 for ; Wed, 2 Aug 2006 00:11:40 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id 9BFEC3B012C for ; Wed, 2 Aug 2006 00:11:39 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so332579nfa for ; Tue, 01 Aug 2006 21:11:39 -0700 (PDT) Received: by 10.49.26.18 with SMTP id d18mr488604nfj; Tue, 01 Aug 2006 21:11:38 -0700 (PDT) Received: by 10.48.164.16 with HTTP; Tue, 1 Aug 2006 21:11:38 -0700 (PDT) Message-ID: <3462bcdb0608012111p6677feacr1d16affd75501c1e@mail.gmail.com> Date: Wed, 2 Aug 2006 09:41:38 +0530 From: "Surya Kiran Gullapalli" To: gtk-list@gnome.org, gtkmm-list@gnome.org Subject: Re: Understanding themes In-Reply-To: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5537_6437269.1154491898903" References: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.645 tagged_above=-999 required=2 tests=[AWL=-1.054, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -0.645 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 04:11:42 -0000 ------=_Part_5537_6437269.1154491898903 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Well, My observation is false. When any gtk-theme is running, my application is not picking up the gtkrc file i've specified. Now my question is, how can i tell my application to pick up the gtkrc file, even if some theme is running? and my question regarding the font remains as it is. Surya ------=_Part_5537_6437269.1154491898903 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Well,
My observation is false. When any gtk-theme is running, my application is not picking up the gtkrc file i've specified.

Now my question is,
how can i tell my application to pick up the gtkrc file, even if some theme is running?

and my question regarding the font remains as it is.

Surya
------=_Part_5537_6437269.1154491898903-- From kalou@ti.com Wed Aug 2 05:43:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DB64E3B0002 for ; Wed, 2 Aug 2006 05:43:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22607-06 for ; Wed, 2 Aug 2006 05:43:41 -0400 (EDT) Received: from calf.ext.ti.com (calf.ext.ti.com [198.47.26.144]) by menubar.gnome.org (Postfix) with ESMTP id B8B163B007E for ; Wed, 2 Aug 2006 05:43:40 -0400 (EDT) Received: from dlep30.itg.ti.com ([157.170.170.32]) by calf.ext.ti.com (8.13.7/8.13.7) with ESMTP id k729hZeh013867 for ; Wed, 2 Aug 2006 04:43:40 -0500 Received: from svrhermes.tif.ti.com (localhost [127.0.0.1]) by dlep30.itg.ti.com (8.12.11/8.12.11) with ESMTP id k729hXeu014786; Wed, 2 Aug 2006 04:43:33 -0500 (CDT) Received: from lnx0029563.tif.ti.com (lnx0029563.tif.ti.com [137.167.117.221]) by svrhermes.tif.ti.com (Postfix) with ESMTP id 19A284783D; Wed, 2 Aug 2006 11:43:33 +0200 (MEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lnx0029563.tif.ti.com (8.12.11/8.12.11) with ESMTP id k729hWXY025816; Wed, 2 Aug 2006 11:43:32 +0200 Message-ID: <44D073C4.4040609@ti.com> Date: Wed, 02 Aug 2006 11:43:32 +0200 From: Olivier Kaloudoff User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: Olivier Kaloudoff Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') References: <44CF8F0E.6040709@ti.com> In-Reply-To: <44CF8F0E.6040709@ti.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.365 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, RCVD_IN_WHOIS_INVALID=2.234] X-Spam-Score: -0.365 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 09:43:43 -0000 downgraded to 2.8.20 fixed the problem. 2.9.x, 2.10.x code is broken the same as below. Sincere regards, Olivier Olivier Kaloudoff wrote: > Hello, > > using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following > error message when compiling gtk+ on linux32, gcc-4.1.1; > > > make[4]: Entering directory `/tmp/gtk+-2.10.1/modules/printbackends/cups' > if /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. > -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk > -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/ap > ps/free/glib/2.12.1/include/glib-2.0 > -I/apps/free/glib/2.12.1/lib/glib-2.0/include > -I/apps/free/pango/1.13.5/include/pango-1.0 > -I/apps/free/cairo/1.2.0/include/cairo > -I/apps/free/atk/1.12.1/include/atk-1.0 > -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include > -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP > -MF ".deps/gtkprintbackendcups.Tpo" \ > -c -o gtkprintbackendcups.lo `test -f 'gtkprintbackendcups.c' || echo > './'`gtkprintbackendcups.c; \ > then mv -f ".deps/gtkprintbackendcups.Tpo" > ".deps/gtkprintbackendcups.Plo"; \ > else rm -f ".deps/gtkprintbackendcups.Tpo"; exit 1; \ > fi > gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk > -I../../../gtk -I../../../gdk -I../../../gdk > -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread > -I/apps/free/glib/2.12.1/include/glib-2.0 -I/app > s/free/glib/2.12.1/lib/glib-2.0/include > -I/apps/free/pango/1.13.5/include/pango-1.0 > -I/apps/free/cairo/1.2.0/include/cairo > -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS > -I/usr/X11R6/include > -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP > -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC > -DPIC -o .libs/gtkprintbackendcups.o > gtkprintbackendcups.c: In function '_cairo_write_to_cups': > gtkprintbackendcups.c:272: warning: pointer targets in passing > argument 2 of 'g_io_channel_write_chars' differ in signedness > gtkprintbackendcups.c: In function 'available_choices': > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c: In function 'create_pickone_option': > gtkprintbackendcups.c:1936: warning: implicit declaration of function > 'create_pickone_option_custom' > gtkprintbackendcups.c:1936: warning: assignment makes pointer from > integer without a cast > gtkprintbackendcups.c: In function 'handle_option': > gtkprintbackendcups.c:2052: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2059: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2066: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c: In function 'handle_group': > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > > > Is there a simple fix to this ? > > > Best Regards, > > > Olivier > > From sebastien.tricaud@gmail.com Wed Aug 2 10:02:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 845193B015D for ; Wed, 2 Aug 2006 10:02:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02454-04 for ; Wed, 2 Aug 2006 10:02:37 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.197]) by menubar.gnome.org (Postfix) with ESMTP id 98A983B0204 for ; Wed, 2 Aug 2006 10:02:36 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id i30so658482wxd for ; Wed, 02 Aug 2006 07:02:36 -0700 (PDT) Received: by 10.70.51.17 with SMTP id y17mr1431257wxy; Wed, 02 Aug 2006 07:02:36 -0700 (PDT) Received: by 10.70.9.12 with HTTP; Wed, 2 Aug 2006 07:02:36 -0700 (PDT) Message-ID: <1333be7b0608020702l39067f54mfca54143f2a00c36@mail.gmail.com> Date: Wed, 2 Aug 2006 16:02:36 +0200 From: "Sebastien Tricaud" To: "Olivier Kaloudoff" Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') In-Reply-To: <44D073C4.4040609@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <44CF8F0E.6040709@ti.com> <44D073C4.4040609@ti.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.099 tagged_above=-999 required=2 tests=[AWL=0.301, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.099 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 14:02:38 -0000 Salut Olivier! I think that if you want to use 2.9.x and/or 2.10.x you'll need cups development headers since from those gtk+ versions printing support is enabled. Regards, seb. On 8/2/06, Olivier Kaloudoff wrote: > downgraded to 2.8.20 fixed the problem. > 2.9.x, 2.10.x code is broken the same as below. > > Sincere regards, > > Olivier > > From klemm@phys.ethz.ch Wed Aug 2 10:44:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AEF0F3B017C for ; Wed, 2 Aug 2006 10:44:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04073-08 for ; Wed, 2 Aug 2006 10:44:20 -0400 (EDT) Received: from wiggis.ethz.ch (wiggis.ethz.ch [129.132.86.197]) by menubar.gnome.org (Postfix) with ESMTP id 642973B02E1 for ; Wed, 2 Aug 2006 10:44:20 -0400 (EDT) Received: from wiggis1.ethz.ch (wiggis1.ethz.ch [192.168.127.2]) by wiggis.ethz.ch (Postfix) with ESMTP id AA5F043B1 for ; Wed, 2 Aug 2006 16:44:19 +0200 (CEST) Received: from phys.ethz.ch (localhost [127.0.0.1]) by wiggis.ethz.ch (Postfix) with SMTP id 9E6A643AB for ; Wed, 2 Aug 2006 16:44:18 +0200 (CEST) Date: Wed, 02 Aug 2006 16:44:18 +0200 To: Subject: compile question From: "Hanno Klemm" X-Mailer: TWIG 2.7.7 Message-ID: X-Client-IP: 134.146.0.27 X-Virus-Scanned: by amavisd-new at phys.ethz.ch X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.484 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, TW_BP=0.077, TW_GT=0.077] X-Spam-Score: -2.484 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 14:44:21 -0000 Hello, I have the following question. Any hint would be appreciated. I try to compile gtk+-2.10.1 on a Linux box. I compiled and installed all required libraries (I think...) in their up to date version (see the end of the mail). However, during compile of gtk I get the following error message, which I don't understand (output attached): gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/scratch/apps/include/glib-2.0 -I/scratch/apps/lib/glib-2.0/include -I/scratch/apps/include/pango-1.0 -I/scratch/apps/include/cairo -I/scratch/apps/include/libpng12 -I/scratch/apps/include/freetype2 -I/scratch/apps/include -I/scratch/apps/include/atk-1.0 -I/usr/X11R6/include -DG_DISABLE_CAST_CHECKS -I/scratch/apps/include -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -g -O2 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC -DPIC -o .libs/gtkprintbackendcups.o gtkprintbackendcups.c: In function `available_choices': gtkprintbackendcups.c:1689: structure has no member named `name' [This line is repeated 26 times] gtkprintbackendcups.c: In function `create_pickone_option': gtkprintbackendcups.c:1936: warning: implicit declaration of function `create_pickone_option_custom' gtkprintbackendcups.c:1936: warning: assignment makes pointer from integer without a cast gtkprintbackendcups.c: In function `handle_option': gtkprintbackendcups.c:2053: structure has no member named `name' gtkprintbackendcups.c:2060: structure has no member named `name' gtkprintbackendcups.c:2067: structure has no member named `name' gtkprintbackendcups.c: In function `handle_group': gtkprintbackendcups.c:2096: structure has no member named `name' /scratch/apps/include/glib-2.0/glib/gstring.h: At top level: gtkprintbackendcups.c:1611: warning: `get_choice_text' defined but not used make[4]: *** [gtkprintbackendcups.lo] Error 1 make[4]: Leaving directory `/scratch/src/gtk+-2.10.1/modules/printbackends/cups' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/scratch/src/gtk+-2.10.1/modules/printbackends' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/scratch/src/gtk+-2.10.1/modules' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/scratch/src/gtk+-2.10.1' make: *** [all] Error 2 I use the following versions of required libraries: jpeg v6b, zlib 1.2.3, libpng 1.2.12, tiff 3.8.2, freetype 2.2.1 cairo 1.2.0, Glib 2.12.1, pango 1.13.5, ATK 1.10.3 all of them are installed in the directory /scratch/apps. Any idea what I'm doing wrong? Best regards, Hanno -- Hanno Klemm klemm@phys.ethz.ch From prashanthkm22@gmail.com Thu Aug 3 00:35:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5641A3B0003 for ; Thu, 3 Aug 2006 00:35:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05690-03 for ; Thu, 3 Aug 2006 00:35:35 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by menubar.gnome.org (Postfix) with ESMTP id 40F4A3B007E for ; Thu, 3 Aug 2006 00:35:35 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so733886nfa for ; Wed, 02 Aug 2006 21:35:34 -0700 (PDT) Received: by 10.78.107.8 with SMTP id f8mr602795huc; Wed, 02 Aug 2006 21:35:34 -0700 (PDT) Received: by 10.78.182.4 with HTTP; Wed, 2 Aug 2006 21:35:34 -0700 (PDT) Message-ID: Date: Thu, 3 Aug 2006 10:05:34 +0530 From: "prashanth km22" To: gtk-list@gnome.org Subject: Regarding Pixmap_path MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.361 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.361 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 04:35:38 -0000 Hi all.., In my application i have written one rc-file. I am successful with all the things like color, font etc, but pixmap_path is not working. I have one pixmap directory in My home dir. i included path like this pixmap_path "/home/prashan/pixmaps" its not working and not giving any errors also. Please help me how to include path. Thank you all. From lists@nabble.com Thu Aug 3 01:23:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B07B3B0011 for ; Thu, 3 Aug 2006 01:23:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07557-03 for ; Thu, 3 Aug 2006 01:23:01 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id DA61A3B0003 for ; Thu, 3 Aug 2006 01:23:00 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1G8VfZ-000717-Lv for gtk-list@gnome.org; Wed, 02 Aug 2006 22:22:53 -0700 Message-ID: <5626985.post@talk.nabble.com> Date: Wed, 2 Aug 2006 22:22:53 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how to set background iamge to Treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.284 tagged_above=-999 required=2 tests=[AWL=0.155, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.284 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 05:23:03 -0000 i know using bgcolor we can change the background color. but how we can set the image as a background to the tree view please help me, sree -- View this message in context: http://www.nabble.com/how-to-set-background-iamge-to-Treeview-tf2043798.html#a5626985 Sent from the Gtk+ - General forum at Nabble.com. From rpmcruz@clix.pt Thu Aug 3 07:23:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 723383B0416 for ; Thu, 3 Aug 2006 07:23:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21826-04 for ; Thu, 3 Aug 2006 07:23:17 -0400 (EDT) Received: from mailrly02.isp.novis.pt (mailrly02.isp.novis.pt [195.23.133.212]) by menubar.gnome.org (Postfix) with ESMTP id B9EC73B03EB for ; Thu, 3 Aug 2006 07:23:06 -0400 (EDT) Received: (qmail 19251 invoked from network); 3 Aug 2006 11:23:05 -0000 Received: from unknown (HELO mailfrt11.isp.novis.pt) ([195.23.133.227]) (envelope-sender ) by mailrly02.isp.novis.pt with compressed SMTP; 3 Aug 2006 11:23:05 -0000 Received: (qmail 16969 invoked from network); 3 Aug 2006 11:23:04 -0000 Received: from unknown (HELO [10.0.0.2]) (Sent_by_authenticated_user_x2476431@[87.196.15.178]) (envelope-sender ) by mailfrt11.isp.novis.pt with SMTP; 3 Aug 2006 11:23:04 -0000 From: Ricardo Cruz To: gtk-list@gnome.org Subject: Re: how to set background iamge to Treeview Date: Thu, 3 Aug 2006 12:34:37 +0100 User-Agent: KMail/1.9.1 References: <5626985.post@talk.nabble.com> In-Reply-To: <5626985.post@talk.nabble.com> X-Face: $29d{(U~(^/X.rR|7i6syM3jeJ}N+*%U-#Bzl5 MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200608031234.37384.rpmcruz@clix.pt> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.52 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.52 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 11:23:21 -0000 Em Quinta, 3 de Agosto de 2006 06:22, o cnu_sree escreveu: > i know using bgcolor we can change the background color. > but how we can set the image as a background to the tree view > please help me, > sree Here goes an adaptation of a function I have to set an image background to= a=20 GtkTextView -- it should work, but if it doesn't, that's the idea. You must= =20 call this after the GtkTreeView widget has been realized. So, if you want t= o=20 set it right at start, you have to delay it with: g_signal_connect (G_OBJECT (tree_view), "realize", G_CALLBACK (set_help_background_cb), NULL); (and call it on a "void set_help_background_cb (GtkWidget *, gpointer)") =AB void gtk_treeview_set_background (GtkTreeView *view, const char *image) { g_return_if_fail (GTK_WIDGET_REALIZED (GTK_WIDGET (view))); GdkWindow *window =3D gtk_tree_view_get_bin_window (view); if (!image) { gdk_window_clear (window); return; } GError *error =3D 0; GdkPixbuf *pixbuf =3D gdk_pixbuf_new_from_file (image, &error); if (!pixbuf) { g_warning ("could not open background image: '%s'" " - %s", image, error->message); return; } GdkPixmap *pixmap; gdk_pixbuf_render_pixmap_and_mask_for_colormap (pixbuf, gdk_drawable_get_colormap (GDK_DRAWABLE (window)), &pixmap, NULL, 0); g_object_unref (G_OBJECT (pixbuf)); gdk_window_set_back_pixmap (window, pixmap, FALSE); } =BB Cheers, Ricardo =2D-=20 Love at first sight is one of the greatest labor-saving devices the world has ever seen. From philip@lawatsch.at Thu Aug 3 08:11:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 830F63B0079 for ; Thu, 3 Aug 2006 08:11:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24062-09 for ; Thu, 3 Aug 2006 08:11:56 -0400 (EDT) Received: from smtp-1.edis.at (mail.customers.edis.at [62.99.242.131]) by menubar.gnome.org (Postfix) with ESMTP id 305343B00E6 for ; Thu, 3 Aug 2006 08:11:56 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by smtp-1.edis.at (Postfix) with ESMTP id 7F2518E015 for ; Thu, 3 Aug 2006 14:11:54 +0200 (CEST) Received: from smtp-1.edis.at ([127.0.0.1]) by localhost (smtp-1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 30331-03-2 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from webmail.waug.at (83-65-233-182.dynamic.xdsl-line.inode.at [83.65.233.182]) by smtp-1.edis.at (Postfix) with ESMTP id 251068D999 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from webmail.waug.at (localhost [127.0.0.1]) by webmail.waug.at (Postfix) with ESMTP id D87E281151D4 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from 157.247.252.14 (SquirrelMail authenticated user nomenquis) by webmail.waug.at with HTTP; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Message-ID: <38058.157.247.252.14.1154607113.squirrel@webmail.waug.at> Date: Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Subject: Windowid of widget From: "Philip Lawatsch" To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by edis.at Virus-Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.992 tagged_above=-999 required=2 tests=[AWL=0.395, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -1.992 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 12:11:59 -0000 Hi, I'm trying to integrate an opengl viewer toolkit into my application. The basic idea is that I'm creating a gtk widget and then let this toolkit draw into my widget. One of the things this toolkit wants to set up it's opengl implementation is the windowid of the widget I'm providing for it. And that's my problem, I could not find any way to get the windowid for my widget in the docs. -> Is there a way to get the windowid at all? (I really hope so) :) Platforms that are interesting for me would be both linux and windows (using the gtk provided by gladewin32.sf.net) Any help would be appreciated. kind regards Philip From root@gateshead-online.co.uk Thu Aug 3 09:08:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 726413B00A8 for ; Thu, 3 Aug 2006 09:08:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26995-08 for ; Thu, 3 Aug 2006 09:08:29 -0400 (EDT) Received: from gateshead-online.co.uk (p15122568.pureserver.info [217.160.177.192]) by menubar.gnome.org (Postfix) with ESMTP id B38E43B0318 for ; Thu, 3 Aug 2006 09:08:28 -0400 (EDT) Received: from root by gateshead-online.co.uk with local (Exim 4.30) id 1G8cw8-00026O-4V for gtk-list@gnome.org; Thu, 03 Aug 2006 14:08:28 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17617.62795.126924.45333@p15122568.pureserver.info> Date: Thu, 3 Aug 2006 14:08:27 +0100 To: gtk-list@gnome.org From: dale@dmellor.dabsol.co.uk Subject: Stock icons in resource files X-Mailer: VM 7.18 under Emacs 21.4.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.503 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -1.503 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 13:08:29 -0000 The following problem is in 2.10.1, and may have been around for some versions previously, although things worked okay in the relatively distant past (2.0?). My gtk.rc file contains =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- pixmap_path "/install/share/lcm-tablet/graphics" style "lcm-tablet-stock" { stock["compass-gps"] = { { "compass-icon.png" } } stock["satellites"] = { { "satellites.png" } } } class "GtkWidget" style "lcm-tablet-stock" =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- as well as some other stuff which works perfectly. I am trying to load the icons into toolbar toggle buttons, but I just see white boxes with red crosses. No error messages anywhere. Snippets of my code include =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- static GtkRadioActionEntry menu_gps_radio [] = { { "Compass", "compass-gps", "_Compass", "C", "Touch the compass rose to move around on the map", 0 }, { "GPS", "satellites", "_GPS", "G", "The map will be centred based on information from the GPS receiver", 2 } }; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- and then =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- gtk_action_group_add_radio_actions (actions, menu_gps_radio, G_N_ELEMENTS (menu_gps_radio), 2, G_CALLBACK (gps_radio_source_changed), tablet); =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- Everything works perfectly apart from the icons not showing up. Any ideas anyone? From ayqazi@gmail.com Thu Aug 3 10:59:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50D483B02C3 for ; Thu, 3 Aug 2006 10:59:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32167-06 for ; Thu, 3 Aug 2006 10:59:15 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by menubar.gnome.org (Postfix) with ESMTP id 751D43B01A0 for ; Thu, 3 Aug 2006 10:59:15 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i23so469148wra for ; Thu, 03 Aug 2006 07:59:15 -0700 (PDT) Received: by 10.78.136.7 with SMTP id j7mr746000hud; Thu, 03 Aug 2006 07:59:14 -0700 (PDT) Received: by 10.78.196.6 with HTTP; Thu, 3 Aug 2006 07:59:14 -0700 (PDT) Message-ID: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> Date: Thu, 3 Aug 2006 15:59:14 +0100 From: "Asfand Yar Qazi" To: gtk-list@gnome.org Subject: Per-host .gtkrc-2.0 file MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.89 tagged_above=-999 required=2 tests=[AWL=-0.503, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -0.89 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 14:59:16 -0000 Hi, At work, I have a home directory shared between several machines. One is a 50" plasma display, and I need to set big fonts for it. Is there a way to put changes in the gtkrc-2.0 file that are hostname-specific? I was hoping something like .gtkrc-2.0-hostname.whatever.net would work - but obviously not :-) Thanks From markus.uhle@synergetik.de Thu Aug 3 11:19:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 837293B0183 for ; Thu, 3 Aug 2006 11:19:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00860-03 for ; Thu, 3 Aug 2006 11:19:28 -0400 (EDT) Received: from server001.webpack.hosteurope.de (server001.webpack.hosteurope.de [80.237.130.9]) by menubar.gnome.org (Postfix) with ESMTP id 75B753B0079 for ; Thu, 3 Aug 2006 11:19:28 -0400 (EDT) Received: by server001.webpack.hosteurope.de running Exim 4.51 using esmtpa from pd9e2cbb0.dip0.t-ipconnect.de ([217.226.203.176] helo=mail.synergetik.de) id 1G8eyt-0004YD-BU; Thu, 03 Aug 2006 17:19:27 +0200 Received: from [192.168.0.31] (192.168.0.31) by mail.synergetik.de with MERCUR Mailserver (v4.03.03 MTI0MDktNjI3NS01NjQ2) for ; Thu, 3 Aug 2006 17:02:18 +0200 Message-ID: <44D21507.2040103@synergetik.de> Date: Thu, 03 Aug 2006 17:23:51 +0200 From: Markus Uhle User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: gtk-list@gnome.org Subject: How to compile theme engine for GTK1.2 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:19:29 -0000 Hi! I have to make some minor changes in the graphical representation of my GTK1.2 embedded application. Therefore, I have coded (got a small existing one and changed it) a small theme-engine. I' m totally innocent to stuff like "makefiles", ... The makefile for my main GTK-application works (its an executable), but I don't know how to compile a gmodule (without automake, autoconf, ...) I want to do something like this (my makefile-style is very ugly): SOURCES= ./thinice_theme_main.c ./thinice_theme_draw.c CC=path_to_embedded_compiler CFLAGS='$(TARGET_BIN)/gtk-config --cflags' -o2 -ggdb -Wall LFLAGS='$(TARGET_BIN)/gtk-config --libs' -Wall OBJECTS=$(SOURCES:.c=.o) all: themeengine themeengine: $(OBJECTS) $(CC) $(LFLAGS) $(CFLAGS) $^ -o $@ For this module, it's even ok, when I compile, link (and whatever is also nessessary) the module with hardcoded lines. The main question is about the right options and tools to use.... Thanks for help, Markus From markus.uhle@synergetik.de Thu Aug 3 11:20:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B6073B019C for ; Thu, 3 Aug 2006 11:20:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00941-04 for ; Thu, 3 Aug 2006 11:20:52 -0400 (EDT) Received: from server001.webpack.hosteurope.de (server001.webpack.hosteurope.de [80.237.130.9]) by menubar.gnome.org (Postfix) with ESMTP id 2A1783B03F2 for ; Thu, 3 Aug 2006 11:20:06 -0400 (EDT) Received: by server001.webpack.hosteurope.de running Exim 4.51 using esmtpa from pd9e2cbb0.dip0.t-ipconnect.de ([217.226.203.176] helo=mail.synergetik.de) id 1G8ezU-0004kb-UB; Thu, 03 Aug 2006 17:20:05 +0200 Received: from [192.168.0.31] (192.168.0.31) by mail.synergetik.de with MERCUR Mailserver (v4.03.03 MTI0MDktNjI3NS01NjQ2) for ; Thu, 3 Aug 2006 17:02:55 +0200 Message-ID: <44D2152C.1080801@synergetik.de> Date: Thu, 03 Aug 2006 17:24:28 +0200 From: Markus Uhle User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Widget focus Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:20:54 -0000 Hi! I have a strange problem with the "moving" of the focus of the widgets in a window (GTK1.2.10 - Embedded System): Let there be 3 push-bottons in a window and the first one has the keyboard focus. Now I press "cursor down" and the next button gets the keyboard focus. Same procedure for the third button. But when I press now "cursor down", the focus goes elsewhere, but not back to the first button. This happens after another "cursor down". It seems, that something like "the window" or "the container" gets the focus. I tried to understand the sourcefiles gtk_window.c and gtk_container.c, but I do not get any simple solution for this problem. Maybe someone can help me.... Thanks, Markus From yeti@physics.muni.cz Thu Aug 3 11:29:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E8E33B036A for ; Thu, 3 Aug 2006 11:29:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01246-05 for ; Thu, 3 Aug 2006 11:29:03 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id EB5193B0187 for ; Thu, 3 Aug 2006 11:29:01 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k73FSu8J022808 for ; Thu, 3 Aug 2006 17:28:57 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id B0B1423D59; Thu, 3 Aug 2006 17:28:56 +0200 (CEST) Date: Thu, 3 Aug 2006 17:29:22 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: Per-host .gtkrc-2.0 file Message-ID: <20060803152922.GA2331@potato.chello.upc.cz> References: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.813 tagged_above=-999 required=2 tests=[AWL=-0.703, BAYES_05=-1.11] X-Spam-Score: -1.813 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:29:04 -0000 On Thu, Aug 03, 2006 at 03:59:14PM +0100, Asfand Yar Qazi wrote: > At work, I have a home directory shared between several machines. One > is a 50" plasma display, and I need to set big fonts for it. The usual method to handle this is to set proper DisplaySize in X server config for each monitor. Proper does not necessarily mean the actual physical size, it should be recalculated for the expected viewing distance. Of course, it does not affect legacy Xlib apps, but it is still much better than fiddling with Gtk+-specific gtkrc. Yeti -- Anonyms eat their boogers. From xtremejames183@msn.com Thu Aug 3 21:11:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4E7C73B010E for ; Thu, 3 Aug 2006 21:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26266-05 for ; Thu, 3 Aug 2006 21:11:46 -0400 (EDT) Received: from bay0-omc3-s20.bay0.hotmail.com (bay0-omc3-s20.bay0.hotmail.com [65.54.246.220]) by menubar.gnome.org (Postfix) with ESMTP id 56DB63B0017 for ; Thu, 3 Aug 2006 21:11:46 -0400 (EDT) Received: from hotmail.com ([65.54.173.2]) by bay0-omc3-s20.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 3 Aug 2006 18:11:46 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 3 Aug 2006 18:11:45 -0700 Message-ID: Received: from 196.203.217.49 by by5fd.bay5.hotmail.msn.com with HTTP; Fri, 04 Aug 2006 01:11:45 GMT X-Originating-IP: [196.203.217.49] X-Originating-Email: [xtremejames183@msn.com] X-Sender: xtremejames183@msn.com From: "Mrad James Deane" To: gtk-list@gnome.org Subject: Understand RadioButtons Date: Fri, 04 Aug 2006 02:11:45 +0100 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 04 Aug 2006 01:11:45.0852 (UTC) FILETIME=[F4365FC0:01C6B762] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.499 tagged_above=-999 required=2 tests=[AWL=0.591, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001] X-Spam-Score: 2.499 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 01:11:47 -0000 Hi, this the matter: i have a GtkEntry set to editable(FALSE) and i want it to be set to TRUE when an user select a radiobutton i've tried with radio_button_toggled , radio_button_change_ group , radio_button_activate without result, What's the signals for the radiobutton to make my entry editable for example , thanks. _________________________________________________________________ MSN Messenger : discutez en direct avec vos amis ! http://www.msn.fr/msger/default.asp From martyn@imendio.com Thu Aug 3 21:33:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5343D3B0097 for ; Thu, 3 Aug 2006 21:33:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27053-04 for ; Thu, 3 Aug 2006 21:33:20 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id 7A71B3B0183 for ; Thu, 3 Aug 2006 21:33:19 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id E470CBA; Fri, 4 Aug 2006 03:33:17 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00816-03; Fri, 4 Aug 2006 03:33:13 +0200 (CEST) Received: from [192.168.0.2] (host86-135-236-112.range86-135.btcentralplus.com [86.135.236.112]) by holken.mikan.net (Postfix) with ESMTP id 6FE5E8F; Fri, 4 Aug 2006 03:33:13 +0200 (CEST) Subject: Re: Understand RadioButtons From: Martyn Russell To: Mrad James Deane In-Reply-To: References: Content-Type: text/plain Organization: Imendio Date: Fri, 04 Aug 2006 02:33:12 +0100 Message-Id: <1154655192.8058.277.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 01:33:25 -0000 On Fri, 2006-08-04 at 02:11 +0100, Mrad James Deane wrote: > Hi, > this the matter: > i have a GtkEntry set to editable(FALSE) and i want it to be set to TRUE > when an user select a radiobutton i've tried with radio_button_toggled , > radio_button_change_ group , radio_button_activate without result, > What's the signals for the radiobutton to make my entry editable for example Try: g_signal_connect (radiobutton, "toggled", G_CALLBACK (toggled_cb), NULL); -- Regards, Martyn From gexlie@gmail.com Fri Aug 4 01:49:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 833F43B0103 for ; Fri, 4 Aug 2006 01:49:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02595-02 for ; Fri, 4 Aug 2006 01:49:29 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by menubar.gnome.org (Postfix) with ESMTP id 97F9A3B0097 for ; Fri, 4 Aug 2006 01:49:28 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id s49so144197pyc for ; Thu, 03 Aug 2006 22:49:28 -0700 (PDT) Received: by 10.35.109.2 with SMTP id l2mr4395527pym; Thu, 03 Aug 2006 22:49:28 -0700 (PDT) Received: by 10.35.98.19 with HTTP; Thu, 3 Aug 2006 22:49:27 -0700 (PDT) Message-ID: <53cc795f0608032249x7579cc3cue9b8082afce19ab4@mail.gmail.com> Date: Fri, 4 Aug 2006 09:49:28 +0400 From: sekes To: gtk-list@gnome.org Subject: Change button positions MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_398_10271663.1154670568000" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.54 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.54 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 05:49:30 -0000 ------=_Part_398_10271663.1154670568000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline i got into the habit of using reverse sequence of "cancel" and "OK" buttons like its took place in the windows(R) interface. When "OK" button is on the left side and the "Cancel" is on the right. Is it possible to change it manually from this: http://beautynn.cololo.com/lj/tupoy/seq.png to this: http://beautynn.cololo.com/lj/tupoy/seq1.png (gimp edited) ? if this is the user-independed option, so will it be changed in a future? i know maybe it's a stupid desire, but i am sure that my variant with improved button positions is more reliable from the design's point of view. Thank you. ------=_Part_398_10271663.1154670568000 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
i got into the habit of using reverse sequence of "cancel" and "OK" buttons like its took place in the windows(R) interface.
When "OK" button is on the left side and the "Cancel" is on the right.

Is it possible to  change it manually from this:
http://beautynn.cololo.com/lj/tupoy/seq.png

to this:
http://beautynn.cololo.com/lj/tupoy/seq1.png (gimp edited)
?

if this is the user-independed option, so will it be changed in a future?

i know maybe it's a stupid desire, but i am sure that my variant with improved button positions
is more reliable from the design's point of view.


Thank you.
------=_Part_398_10271663.1154670568000-- From gygy@cc.gatech.edu Fri Aug 4 09:51:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3483E3B010E for ; Fri, 4 Aug 2006 09:51:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24189-06 for ; Fri, 4 Aug 2006 09:51:01 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 2ABAC3B0111 for ; Fri, 4 Aug 2006 09:51:01 -0400 (EDT) Received: from siwenna.cc.gatech.edu (siwenna.cc.gatech.edu [130.207.7.232]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Dp0H4001777 for ; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Received: (from www@localhost) by siwenna.cc.gatech.edu (8.13.6/8.12.8) id k74Dp0ud029372; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) X-Authentication-Warning: siwenna.cc.gatech.edu: www set sender to gygy@cc.gatech.edu using -f Received: from lawn-199-77-206-16.lawn.gatech.edu ([199.77.206.16]) (SquirrelMail authenticated user gygy) by webmail.cc.gatech.edu with HTTP; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Message-ID: <40147.199.77.206.16.1154699460.squirrel@webmail.cc.gatech.edu> Date: Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Subject: atk compiling problem GLIB_GENMARSHAL From: gygy@cc.gatech.edu To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.88 tagged_above=-999 required=2 tests=[AWL=-0.442, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, NO_REAL_NAME=0.961] X-Spam-Score: -1.88 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 13:51:02 -0000 Hi, I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run configure and make, I got the following error and the part related in Makefile is also shown as attached. It seems that the problem is the path of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can change the definition for GLIB_GENMARSHAL? Thanks Yan p/s 1/2: make output -------------- [root@lawn-199-77-206-16 atk-1.10.3]# make make all-recursive make[1]: Entering directory `/root/atk-1.10.3' Making all in atk make[2]: Entering directory `/root/atk-1.10.3/atk' ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal ./atkmarshal.list --header >> xgen-gmh \ && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ && rm -f xgen-gmh xgen-gmh~ \ && echo timestamp > stamp-atkmarshal.h /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such file or directory make[2]: *** [stamp-atkmarshal.h] Error 127 make[2]: Leaving directory `/root/atk-1.10.3/atk' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/root/atk-1.10.3' make: *** [all] Error 2 ------------------- 2/2: In Makefile, the related part is defined as shown below: ------ 25 top_builddir = . 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 -I$(top_builddir)//root/glib-2.12.0/. - I$(top_builddir)//root/glib-2.12.0/./glib -I$(top_builddir)//root/glib-2.12.0/./gmodule 88 GLIB_GENMARSHAL = $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal ---------------------------------------------Note: this is not right------------ From sergstesh@yahoo.com Fri Aug 4 10:15:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9EDBE3B0070 for ; Fri, 4 Aug 2006 10:15:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25541-08 for ; Fri, 4 Aug 2006 10:15:34 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 6F9B83B00C3 for ; Fri, 4 Aug 2006 10:15:34 -0400 (EDT) Received: (qmail 51922 invoked by uid 60001); 4 Aug 2006 14:15:33 -0000 Message-ID: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> Received: from [84.94.204.73] by web35204.mail.mud.yahoo.com via HTTP; Fri, 04 Aug 2006 07:15:33 PDT Date: Fri, 4 Aug 2006 07:15:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <40147.199.77.206.16.1154699460.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 14:15:35 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > configure and make, I got the following error and the part related in > Makefile is also shown as attached. It seems that the problem is the path > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > change the definition for GLIB_GENMARSHAL? > > Thanks > > Yan > > p/s > 1/2: make output > -------------- > [root@lawn-199-77-206-16 atk-1.10.3]# make > make all-recursive > make[1]: Entering directory `/root/atk-1.10.3' > Making all in atk > make[2]: Entering directory `/root/atk-1.10.3/atk' > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > ./atkmarshal.list --header >> xgen-gmh \ > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > && rm -f xgen-gmh xgen-gmh~ \ > && echo timestamp > stamp-atkmarshal.h > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > file or directory > make[2]: *** [stamp-atkmarshal.h] Error 127 > make[2]: Leaving directory `/root/atk-1.10.3/atk' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/root/atk-1.10.3' > make: *** [all] Error 2 > ------------------- > > 2/2: In Makefile, the related part is defined as shown below: > ------ > 25 top_builddir = . > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > -I$(top_builddir)//root/glib-2.12.0/. - > I$(top_builddir)//root/glib-2.12.0/./glib > -I$(top_builddir)//root/glib-2.12.0/./gmodule > 88 GLIB_GENMARSHAL = > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > ---------------------------------------------Note: this is not > right------------ > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my project - the tool successfully compiles 'atk' among other things. See my signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From salgari2004@hotmail.com Wed Aug 2 05:43:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2A5EC3B0132 for ; Wed, 2 Aug 2006 05:43:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22607-04 for ; Wed, 2 Aug 2006 05:43:08 -0400 (EDT) Received: from bay0-omc3-s22.bay0.hotmail.com (bay0-omc3-s22.bay0.hotmail.com [65.54.246.222]) by menubar.gnome.org (Postfix) with ESMTP id 32E3F3B0002 for ; Wed, 2 Aug 2006 05:43:08 -0400 (EDT) Received: from hotmail.com ([65.54.224.47]) by bay0-omc3-s22.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 2 Aug 2006 02:43:07 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 2 Aug 2006 02:43:07 -0700 Message-ID: Received: from 65.54.224.200 by by105fd.bay105.hotmail.msn.com with HTTP; Wed, 02 Aug 2006 09:43:06 GMT X-Originating-IP: [158.42.214.106] X-Originating-Email: [salgari2004@hotmail.com] X-Sender: salgari2004@hotmail.com From: "Roses Roses" To: gtk-list@gnome.org Subject: Pixmap Date: Wed, 02 Aug 2006 09:43:06 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 02 Aug 2006 09:43:07.0461 (UTC) FILETIME=[0F0CDF50:01C6B618] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.985 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_QH=0.077] X-Spam-Score: 1.985 X-Spam-Level: * X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 09:43:09 -0000 Hi!!! I'm programming a little interface but I have a prblem. The objective of this program is shows a pixmap qhich must ghange qhen the user clicks on a button. How the fuction of the button can change the pixmap assigned? One idea I've is declare the GtkPixmap as a global variable, but I'm not sure if this plan can run. Thank you very much _________________________________________________________________ Descarga gratis la Barra de Herramientas de MSN http://www.msn.es/usuario/busqueda/barra?XAPID=2031&DI=1055&SU=http%3A//www.hotmail.com&HL=LINKTAG1OPENINGTEXT_MSNBH From matthew@jenika.com Fri Aug 4 14:14:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A9C4B3B0076 for ; Fri, 4 Aug 2006 14:14:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03845-06 for ; Fri, 4 Aug 2006 14:14:29 -0400 (EDT) Received: from yellow.jenika.com (yellow.jenika.com [71.39.42.123]) by menubar.gnome.org (Postfix) with ESMTP id 0F7DA3B0072 for ; Fri, 4 Aug 2006 14:14:29 -0400 (EDT) Received: from [192.168.1.7] (silver.jenika.inside [192.168.1.7]) by yellow.jenika.com (8.13.6/8.13.6) with ESMTP id k74ICMLY014691; Fri, 4 Aug 2006 11:12:22 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> Content-Transfer-Encoding: 7bit From: matthew@jenika.com Subject: Compiling with MinGW Date: Fri, 4 Aug 2006 11:12:20 -0700 To: libtool@gnu.org X-Mailer: Apple Mail (2.752.2) X-Scanned-By: MIMEDefang 2.56 on 192.168.1.3 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.253 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_BG=0.077, TW_BX=0.077, TW_IB=0.077, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -1.253 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 Cc: abiword-dev@abisource.com, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 18:14:30 -0000 This is not exactly a bug in a strict since but it is a complication of building software with MinGW. Just a little back ground I was looking to build the latest version of wvware so that I end up with a windows stand alone binary. The environment that I was working on was: Windows 2003 Cygwin Current (make, pkgconfig, autoconf, automake) Installed MingGW using auto installer MinGW-5.0.3 Given the above I downloaded and built each of the following: zlib-1.2.3.tar.gz http://www.zlib.net/zlib-1.2.3.tar.gz libiconv-1.11.tar.gz http://mirrors.usc.edu/pub/gnu/libiconv/ libiconv-1.11.tar.gz libxml2-2.6.26.tar.gz ftp://xmlsoft.org/libxml2/libxml2-2.6.26.tar.gz gettext-0.15.tar.gz http://mirrors.usc.edu/pub/gnu/gettext/ gettext-0.15.tar.gz glib-2.12.1.tar.gz ftp://ftp.gtk.org/pub/gtk/v2.12/glib-2.12.1.tar.gz libgsf-1.14.1.tar.gz http://ftp.gnome.org/pub/GNOME/sources/libgsf/ 1.14/libgsf-1.14.1.tar.gz wv-1.2.1.tar.gz http://prdownloads.sourceforge.net/wvware/ wv-1.2.1.tar.gz?download I was able to get everything to work out in the end however gettext and glib packages both gave me difficulties. The errors they generated are: GETTEXT: Making all in libuniname make[3]: Entering directory `/home/matthew/tmp/wv/gettext-0.15/ gettext-tools/libuniname' /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -Lc:/progra~1/wv -Wl,--disable-auto-import -o test-names.exe test-names.o libuniname.a ../lib/libgettextlib.la gcc -g -O2 -Wl,--disable-auto-import -o .libs/test-names.exe test- names.o -Lc:/progra~1/wv libuniname.a ../lib/.libs/ libgettextlib.dll.a /home/matthew/tmp/wv/gettext-0.15/gettext-tools/ intl/.libs/libintl.dll.a -Lc:/progra~1/wv/lib gcc.exe: /home/matthew/tmp/wv/gettext-0.15/gettext-tools/intl/.libs/ libintl.dll.a: No such file or directory make[3]: *** [test-names.exe] Error 1 make[3]: Leaving directory `/home/matthew/tmp/wv/gettext-0.15/gettext- tools/libuniname' GLIB: Making all in gobject make[2]: Entering directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' make all-am make[3]: Entering directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' /bin/sh ../libtool --mode=link gcc -g -O2 -mms-bitfields -Wall -Lc:/ progra~1/wv/lib -o gobject-query.exe gobject-query.o ./ libgobject-2.0.la ../glib/libglib-2.0.la -lintl gcc -g -O2 -mms-bitfields -Wall -o .libs/gobject-query.exe gobject- query.o -Lc:/progra~1/wv/lib ./.libs/libgobject-2.0.dll.a /home/ matthew/tmp/wv/glib-2.12.1/glib/.libs/libglib-2.0.dll.a ../glib/.libs/ libglib-2.0.dll.a -lws2_32 -lole32 c:/progra~1/wv/lib/libintl.dll.a c:/progra~1/wv/lib/libiconv.dll.a -Lc:/progra~1/wv/lib gcc.exe: /home/matthew/tmp/wv/glib-2.12.1/glib/.libs/ libglib-2.0.dll.a: No such file or directory make[3]: *** [gobject-query.exe] Error 1 make[3]: Leaving directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' Both of the above errors are caused because of the environment the software is being built in and how libtool interacts. The basic problem is gcc for MinGW does not know how to properly handle cygwin paths. libtool is automatically generating a fully qualified path using cygwin based paths. I didn't spend a lot of time digging into what the right solution for libtool might be but found that by simply editing the libtool used in both of the above cases and adding: case $deplib in /home*) deplib="c:/cygwin"$deplib;; esac just after the for loop on line 2459 gettext and line 2363 of glib (that area looks something like this) if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do # right after this line. lib= found=no case $deplib in I was able to complete the compiles and generate a version of wvware-1.2.1 that worked standalone on windows. If a good option can be found to make this issue go away it would be nice but it is a somewhat unusual configuration. But, I thought I would pass it along just in case someone else might be interested. Matthew McGillis From root@gateshead-online.co.uk Thu Aug 3 08:15:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6C34F3B01DF for ; Thu, 3 Aug 2006 08:15:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24409-04 for ; Thu, 3 Aug 2006 08:15:58 -0400 (EDT) Received: from gateshead-online.co.uk (p15122568.pureserver.info [217.160.177.192]) by menubar.gnome.org (Postfix) with ESMTP id BBB3C3B00AC for ; Thu, 3 Aug 2006 08:15:55 -0400 (EDT) Received: from root by gateshead-online.co.uk with local (Exim 4.30) id 1G8c7G-00022j-DE for gtk-list@gnome.org; Thu, 03 Aug 2006 13:15:54 +0100 From: root MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17617.59642.387149.247953@p15122568.pureserver.info> Date: Thu, 3 Aug 2006 13:15:54 +0100 To: gtk-list@gnome.org Subject: Stock icons in resource files X-Mailer: VM 7.18 under Emacs 21.4.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.05 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, FORGED_RCVD_HELO=0.135] X-Spam-Score: -0.05 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:52 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 12:15:59 -0000 The following problem is in 2.10.1, and may have been around for some versions previously, although things worked okay in the relatively distant past (2.0?). My gtk.rc file contains =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- pixmap_path "/install/share/lcm-tablet/graphics" style "lcm-tablet-stock" { stock["compass-gps"] = { { "compass-icon.png" } } stock["satellites"] = { { "satellites.png" } } } class "GtkWidget" style "lcm-tablet-stock" =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- as well as some other stuff which works perfectly. I am trying to load the icons into toolbar toggle buttons, but I just see white boxes with red crosses. No error messages anywhere. Snippets of my code include =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- static GtkRadioActionEntry menu_gps_radio [] = { { "Compass", "compass-gps", "_Compass", "C", "Touch the compass rose to move around on the map", 0 }, { "GPS", "satellites", "_GPS", "G", "The map will be centred based on information from the GPS receiver", 2 } }; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- and then =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- gtk_action_group_add_radio_actions (actions, menu_gps_radio, G_N_ELEMENTS (menu_gps_radio), 2, G_CALLBACK (gps_radio_source_changed), tablet); =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- Everything works perfectly apart from the icons not showing up. Any ideas anyone? From Ralf.Wildenhues@gmx.de Fri Aug 4 14:54:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D3C943B024B for ; Fri, 4 Aug 2006 14:54:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05677-10 for ; Fri, 4 Aug 2006 14:54:16 -0400 (EDT) Received: from smtp3.netcologne.de (smtp3.netcologne.de [194.8.194.66]) by menubar.gnome.org (Postfix) with ESMTP id 8B5CE3B0095 for ; Fri, 4 Aug 2006 14:54:16 -0400 (EDT) Received: from localhost.localdomain (xdsl-81-173-177-253.netcologne.de [81.173.177.253]) by smtp3.netcologne.de (Postfix) with ESMTP id 6085867446; Fri, 4 Aug 2006 20:54:15 +0200 (CEST) Received: from ralf by localhost.localdomain with local (Exim 4.50) id 1G94oG-0004ZO-Au; Fri, 04 Aug 2006 20:54:12 +0200 Date: Fri, 4 Aug 2006 20:54:12 +0200 From: Ralf Wildenhues To: matthew@jenika.com Subject: Re: Compiling with MinGW Message-ID: <20060804185411.GE15973@iam.uni-bonn.de> Mail-Followup-To: matthew@jenika.com, libtool@gnu.org, abiword-dev@abisource.com, bug-gnu-gettext@gnu.org, gtk-list@gnome.org References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> Organization: Department of Numerical Simulation, University of Bonn User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.322 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_FAIL=1.142] X-Spam-Score: -1.322 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 Cc: abiword-dev@abisource.com, libtool@gnu.org, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 18:54:18 -0000 Hello Matthew, * matthew@jenika.com wrote on Fri, Aug 04, 2006 at 08:12:20PM CEST: > > This is not exactly a bug in a strict since but it is a complication > of building software with MinGW. > gcc -g -O2 -Wl,--disable-auto-import -o .libs/test-names.exe test- > names.o -Lc:/progra~1/wv libuniname.a ../lib/.libs/ > libgettextlib.dll.a /home/matthew/tmp/wv/gettext-0.15/gettext-tools/ > intl/.libs/libintl.dll.a -Lc:/progra~1/wv/lib > gcc.exe: /home/matthew/tmp/wv/gettext-0.15/gettext-tools/intl/.libs/ > libintl.dll.a: No such file or directory This isn't a Libtool bug at all, but rather an installation bug, I believe. > Both of the above errors are caused because of the environment the > software is being built in and how libtool interacts. The basic > problem is gcc for MinGW does not know how to properly handle cygwin > paths. Exactly. Did you compile GCC yourself but installed it in MSYS /bin? I think that was the thing not to do, as it inhibits the automatic path translation. See http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. If that wasn't the case, then I'd like more information, such as how and where you installed GCC, its version, and '../libtool --version'. Cheers, Ralf From matthew@jenika.com Fri Aug 4 15:31:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A69CD3B051C for ; Fri, 4 Aug 2006 15:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07303-04 for ; Fri, 4 Aug 2006 15:31:11 -0400 (EDT) Received: from yellow.jenika.com (yellow.jenika.com [71.39.42.123]) by menubar.gnome.org (Postfix) with ESMTP id 2FE383B0382 for ; Fri, 4 Aug 2006 15:31:09 -0400 (EDT) Received: from [192.168.1.7] (silver.jenika.inside [192.168.1.7]) by yellow.jenika.com (8.13.6/8.13.6) with ESMTP id k74JT3oE015136; Fri, 4 Aug 2006 12:29:03 -0700 In-Reply-To: <20060804185411.GE15973@iam.uni-bonn.de> References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <20060804185411.GE15973@iam.uni-bonn.de> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> Content-Transfer-Encoding: 7bit From: matthew@jenika.com Subject: Re: Compiling with MinGW Date: Fri, 4 Aug 2006 12:29:01 -0700 To: Ralf Wildenhues X-Mailer: Apple Mail (2.752.2) X-Scanned-By: MIMEDefang 2.56 on 192.168.1.3 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.292 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_CX=0.077, TW_DC=0.077, TW_GC=0.077, TW_JL=0.077] X-Spam-Score: -1.292 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:39:17 -0400 Cc: abiword-dev@abisource.com, libtool@gnu.org, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 19:31:14 -0000 > Exactly. Did you compile GCC yourself but installed it in MSYS /bin? > I think that was the thing not to do, as it inhibits the automatic > path translation. See > http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. The gcc used comes from mingw. I installed MinGW by Downloading the auto installer at http:// prdownloads.sourceforge.net/mingw/MinGW-5.0.3.exe?download: Ran program and installed mingw and c++ support. By default this places gcc in c:/mingw/bin . I'm not using MSYS at all. I'm using MinGW for the compilers and cygwin for the shell and basic tools. In my path I have added / cygdrive/c/mingw/bin as the first item in my PATH. > If that wasn't the case, then I'd like more information, such as > how and > where you installed GCC, its version, and '../libtool --version'. gcc -v Reading specs from c:/mingw/bin/../lib/gcc/mingw32/3.4.2/specs Configured with: ../gcc/configure --with-gcc --with-gnu-ld --with-gnu- as --host=mingw32 --target=mingw32 --prefix=/mingw --enable-threads -- disable-nls --enable-languages=c,c++,f77,ada,objc,java --disable- win32-registry --disable-shared --enable-sjlj-exceptions --enable- libgcj --disable-java-awt --without-x --enable-java-gc=boehm -- disable-libgcj-debug --enable-interpreter --enable-hash- synchronization --enable-libstdcxx-debug Thread model: win32 gcc version 3.4.2 (mingw-special) For my compiles: gettext-0.15/gettext-tools/libtool --version ltmain.sh (GNU libtool) 1.5.22 (1.1220.2.365 2005/12/18 22:14:06) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. glib-2.12.1/libtool --version ltmain.sh (GNU libtool) 1.5.18 (1.1220.2.245 2005/05/16 08:55:27) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Matthew From gygy@cc.gatech.edu Fri Aug 4 17:52:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A773B01D8 for ; Fri, 4 Aug 2006 17:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14272-03 for ; Fri, 4 Aug 2006 17:52:07 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 8E0663B0072 for ; Fri, 4 Aug 2006 17:52:06 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Lq3D3024838; Fri, 4 Aug 2006 17:52:05 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Lq22F025534; Fri, 4 Aug 2006 17:52:02 -0400 (EDT) Date: Fri, 4 Aug 2006 17:52:02 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL In-Reply-To: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> Message-ID: References: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.101 tagged_above=-999 required=2 tests=[AWL=0.221, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.101 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 21:52:08 -0000 Hi Sergei, Thanks for your reply. I tried your software but ran into the same error. Finally I figured out that I just set PKG_CONFIG_PATH=../GLIB-2.12.0 instead of /root/GLIB-2.12.0 and that solves my problem with the Makefile. I wonder if that could be a bug in the atk and pango software configure file itself. Your software seems to be a very nice software but would be even better if I could use the default script but specify what software package I could install and their version number as command line parameters. Thanks and have a nice weekend! Yan -Yan Gu (gygy@cc.gatech.edu) On Fri, 4 Aug 2006, Sergei Steshenko wrote: > > > --- gygy@cc.gatech.edu wrote: > > > Hi, > > > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > > configure and make, I got the following error and the part related in > > Makefile is also shown as attached. It seems that the problem is the path > > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > > change the definition for GLIB_GENMARSHAL? > > > > Thanks > > > > Yan > > > > p/s > > 1/2: make output > > -------------- > > [root@lawn-199-77-206-16 atk-1.10.3]# make > > make all-recursive > > make[1]: Entering directory `/root/atk-1.10.3' > > Making all in atk > > make[2]: Entering directory `/root/atk-1.10.3/atk' > > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > > ./atkmarshal.list --header >> xgen-gmh \ > > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > > && rm -f xgen-gmh xgen-gmh~ \ > > && echo timestamp > stamp-atkmarshal.h > > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > > file or directory > > make[2]: *** [stamp-atkmarshal.h] Error 127 > > make[2]: Leaving directory `/root/atk-1.10.3/atk' > > make[1]: *** [all-recursive] Error 1 > > make[1]: Leaving directory `/root/atk-1.10.3' > > make: *** [all] Error 2 > > ------------------- > > > > 2/2: In Makefile, the related part is defined as shown below: > > ------ > > 25 top_builddir = . > > > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > > -I$(top_builddir)//root/glib-2.12.0/. - > > I$(top_builddir)//root/glib-2.12.0/./glib > > -I$(top_builddir)//root/glib-2.12.0/./gmodule > > 88 GLIB_GENMARSHAL = > > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > > ---------------------------------------------Note: this is not > > right------------ > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > Try my project - the tool successfully compiles 'atk' among other things. > > See my signature. > > --Sergei. > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > From sergstesh@yahoo.com Fri Aug 4 18:12:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CBDD3B00C6 for ; Fri, 4 Aug 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15142-04 for ; Fri, 4 Aug 2006 18:12:24 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id 0E5583B009A for ; Fri, 4 Aug 2006 18:12:24 -0400 (EDT) Received: (qmail 42369 invoked by uid 60001); 4 Aug 2006 22:12:23 -0000 Message-ID: <20060804221223.42367.qmail@web35205.mail.mud.yahoo.com> Received: from [84.94.204.73] by web35205.mail.mud.yahoo.com via HTTP; Fri, 04 Aug 2006 15:12:23 PDT Date: Fri, 4 Aug 2006 15:12:23 -0700 (PDT) From: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 22:12:25 -0000 --- Yan Gu wrote: > Hi Sergei, > > Thanks for your reply. I tried your software but ran into the same error. > Finally I figured out that I just set PKG_CONFIG_PATH=../GLIB-2.12.0 > instead of /root/GLIB-2.12.0 and that solves my problem with the Makefile. > I wonder if that could be a bug in the atk and pango software > configure file itself. > > Your software seems to be a very nice software but would be even better if > I could use the default script but specify what software package I could > install and their version number as command line parameters. > > Thanks and have a nice weekend! > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Fri, 4 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- gygy@cc.gatech.edu wrote: > > > > > Hi, > > > > > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > > > configure and make, I got the following error and the part related in > > > Makefile is also shown as attached. It seems that the problem is the path > > > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > > > change the definition for GLIB_GENMARSHAL? > > > > > > Thanks > > > > > > Yan > > > > > > p/s > > > 1/2: make output > > > -------------- > > > [root@lawn-199-77-206-16 atk-1.10.3]# make > > > make all-recursive > > > make[1]: Entering directory `/root/atk-1.10.3' > > > Making all in atk > > > make[2]: Entering directory `/root/atk-1.10.3/atk' > > > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > > > ./atkmarshal.list --header >> xgen-gmh \ > > > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > > > && rm -f xgen-gmh xgen-gmh~ \ > > > && echo timestamp > stamp-atkmarshal.h > > > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > > > file or directory > > > make[2]: *** [stamp-atkmarshal.h] Error 127 > > > make[2]: Leaving directory `/root/atk-1.10.3/atk' > > > make[1]: *** [all-recursive] Error 1 > > > make[1]: Leaving directory `/root/atk-1.10.3' > > > make: *** [all] Error 2 > > > ------------------- > > > > > > 2/2: In Makefile, the related part is defined as shown below: > > > ------ > > > 25 top_builddir = . > > > > > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > > > -I$(top_builddir)//root/glib-2.12.0/. - > > > I$(top_builddir)//root/glib-2.12.0/./glib > > > -I$(top_builddir)//root/glib-2.12.0/./gmodule > > > 88 GLIB_GENMARSHAL = > > > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > > > ---------------------------------------------Note: this is not > > > right------------ > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > Try my project - the tool successfully compiles 'atk' among other things. > > > > See my signature. > > > > --Sergei. > > > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > The whole idea my tool is that configuration is provided in a file, not on command line. This is because any complex real target depends on others, so you can't just say that you want to compile a target without specifying other targets on which it depends. That is why config file reflects hierarchical data describing the dependencies. Command line is quite inconvenient for specifying nested dependencies. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From godlygeek@gmail.com Fri Aug 4 19:25:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FBD23B009A for ; Fri, 4 Aug 2006 19:25:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18055-09 for ; Fri, 4 Aug 2006 19:25:48 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.234]) by menubar.gnome.org (Postfix) with ESMTP id CFB0A3B010D for ; Fri, 4 Aug 2006 19:25:47 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so251619wxd for ; Fri, 04 Aug 2006 16:25:47 -0700 (PDT) Received: by 10.70.38.9 with SMTP id l9mr5198032wxl; Fri, 04 Aug 2006 16:25:47 -0700 (PDT) Received: by 10.70.124.6 with HTTP; Fri, 4 Aug 2006 16:25:46 -0700 (PDT) Message-ID: <17393e3e0608041625s13f08032t69ee55f17b426bd5@mail.gmail.com> Date: Fri, 4 Aug 2006 19:25:46 -0400 From: "Matt Wozniski" Sender: godlygeek@gmail.com To: gtk-list@gnome.org Subject: Gtk 2.6 GtkTextTag invisible property: Implemented? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: d75e6dbbe82b0189 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.4 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 23:25:48 -0000 The gtk.org docs for GTK 2.6's GtkTextTag say: The "invisible" property "invisible" gboolean : Read / Write Whether this text is hidden. Not implemented in GTK 2.0. Has this been implemented yet in GTK 2.6? That is, is it just GTK 2.0 that it is unimplemented in, or all of GTK to present? ~Matt Wozniski From kyndig@gmail.com Fri Aug 4 20:17:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 439203B04E4 for ; Fri, 4 Aug 2006 20:17:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20337-04 for ; Fri, 4 Aug 2006 20:17:17 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.229]) by menubar.gnome.org (Postfix) with ESMTP id 949683B02BB for ; Fri, 4 Aug 2006 20:17:17 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so257267wxd for ; Fri, 04 Aug 2006 17:17:17 -0700 (PDT) Received: by 10.70.38.12 with SMTP id l12mr3107749wxl; Fri, 04 Aug 2006 17:17:16 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Fri, 4 Aug 2006 17:17:16 -0700 (PDT) Message-ID: Date: Fri, 4 Aug 2006 20:17:16 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: Compiling with MinGW In-Reply-To: <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_86288_27991697.1154737036908" References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <20060804185411.GE15973@iam.uni-bonn.de> <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.04 tagged_above=-999 required=2 tests=[AWL=0.359, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.04 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 00:17:20 -0000 ------=_Part_86288_27991697.1154737036908 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 8/4/06, matthew@jenika.com wrote: > > > Exactly. Did you compile GCC yourself but installed it in MSYS /bin? > > I think that was the thing not to do, as it inhibits the automatic > > path translation. See > > http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. > FWIW - I wrote up a step-by-step using MinGW ( MSYS ) on WinXP. http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4 Calvin ------=_Part_86288_27991697.1154737036908 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
On 8/4/06, matthew@jenika.com < matthew@jenika.com> wrote:
> Exactly.  Did you compile GCC yourself but installed it in MSYS /bin?
> I think that was the thing not to do, as it inhibits the automatic
> path translation.  See
> http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info.

FWIW - I wrote up a step-by-step using MinGW ( MSYS ) on WinXP.
http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4

Calvin

------=_Part_86288_27991697.1154737036908-- From tml@iki.fi Sat Aug 5 03:18:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2195E3B00E9 for ; Sat, 5 Aug 2006 03:18:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01195-01 for ; Sat, 5 Aug 2006 03:18:44 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id 5E7A43B0076 for ; Sat, 5 Aug 2006 03:18:44 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 307F0151493; Sat, 5 Aug 2006 10:18:36 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17620.17889.531000.626427@gargle.gargle.HOWL> Date: Sat, 5 Aug 2006 10:16:49 +0300 To: Bruno Haible Subject: Re: Compiling with MinGW In-Reply-To: <200608042212.43008.bruno@clisp.org> References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: libtool@gnu.org, gtk-list@gnome.org, bug-gnu-gettext@gnu.org, matthew@jenika.com, abiword-dev@abisource.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 07:18:46 -0000 Bruno Haible writes: > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. If with mingw one combines MSYS, it certainly does. Using MSYS with auto* and libtool is IMHO much more reliable than using Cygwin, MSYS gets less in the way and causes less confusion. > I use a recent cygwin as the development environment, and mingw only as > the deployment environment. How can mingw be a *deployment* environment (with which I assume you mean what end-users have), why would end-users of some native Win32 application need a compiler and linker? --tml From tml@iki.fi Sat Aug 5 03:21:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F00563B042A for ; Sat, 5 Aug 2006 03:21:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00908-09 for ; Sat, 5 Aug 2006 03:21:17 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id AF0393B0076 for ; Sat, 5 Aug 2006 03:21:16 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 6D33615109B; Sat, 5 Aug 2006 10:21:07 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17620.18041.546000.489601@gargle.gargle.HOWL> Date: Sat, 5 Aug 2006 10:19:21 +0300 To: Bob Friesenhahn Subject: Re: Compiling with MinGW In-Reply-To: References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: abiword-dev@abisource.com, libtool@gnu.org, matthew@jenika.com, bug-gnu-gettext@gnu.org, Bruno Haible , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 07:21:18 -0000 Bob Friesenhahn writes: > Libtool does support using the MinGW compiler via Cygwin or > MSYS (I have only tried MSYS). Both of these support Unix type paths > and automatically convert to Windows paths for MinGW. I don't think Cygwin does that to the same extent as MSYS. Isn't that the exact reason why MSYS was developed (as a fork of Cygwin), to get automatic translation of Unix type paths passed on the command line or as environment variables to non-Cygwin/MSYS programs? --tml From riboaz@xs4all.nl Sat Aug 5 04:33:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ABB43B0076 for ; Sat, 5 Aug 2006 04:33:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04031-06 for ; Sat, 5 Aug 2006 04:33:57 -0400 (EDT) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by menubar.gnome.org (Postfix) with ESMTP id 70AFF3B0071 for ; Sat, 5 Aug 2006 04:33:56 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr5.xs4all.nl (8.13.6/8.13.6) with ESMTP id k758Xsdb019348; Sat, 5 Aug 2006 10:33:55 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <229D14E2-9C13-4101-8FAD-D41918E948FD@xs4all.nl> Content-Transfer-Encoding: 7bit From: Richard Boaz Subject: Re: Pixmap Date: Sat, 5 Aug 2006 10:33:55 +0200 To: "Roses Roses" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.438 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, TW_GT=0.077, TW_QH=0.077] X-Spam-Score: -2.438 X-Spam-Level: Cc: GTK dev list X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 08:33:58 -0000 hi, one possible paradigm is to adhere to the following guidelines: 1) the configure event callback is responsible for calling all routines responsible for "drawing" the pixmap for ultimate display, but does NOT do the actual display to the screen; 2) the expose event callback is responsible for rendering the current pixmap to be displayed to the screen, but does NO "drawing" here, only render the pixmap to the screen via gdk_draw_drawable() or equivalent; 3.1) the drawing routine(s) are responsible for creating the pixmap for ultimate display; 3.2) store the address of the pixmap in a variable that the expose event callback also has access to (global or otherwise) 3.3) the last command as part of the drawing routine is to call gtk_widget_queue_draw_area() on the widget used to display the pixmap; this will force an expose event in this manner, your drawing routine is called on all configure events followed immediately by the expose event rendering the pixmap to the screen. while calling your drawing routine via a user-event, or some other event internal to the program, will also result in the expose event being called to render the newly made pixmap to the screen. so, in your case, you would attach the button-click to a callback ultimately calling your pixmap drawing routine. the drawing routine will then be called on button-click and your new pixmap will be rendered via the expose event. cheers, richard On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: > Hi!!! > > I'm programming a little interface but I have a prblem. The > objective of > this program is shows a pixmap qhich must ghange qhen the user > clicks on a > button. How the fuction of the button can change the pixmap assigned? > > One idea I've is declare the GtkPixmap as a global variable, but > I'm not > sure if this plan can run. > > Thank you very much > > _________________________________________________________________ > Descarga gratis la Barra de Herramientas de MSN > http://www.msn.es/usuario/busqueda/barra?XAPID=2031&DI=1055&SU=http% > 3A//www.hotmail.com&HL=LINKTAG1OPENINGTEXT_MSNBH > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > From jayarajuc@mic.co.in Sat Aug 5 08:25:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DD5233B0071 for ; Sat, 5 Aug 2006 08:25:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13281-01 for ; Sat, 5 Aug 2006 08:25:33 -0400 (EDT) Received: from ecm.mic.co.in (mail.mic.co.in [220.227.243.139]) by menubar.gnome.org (Postfix) with ESMTP id D6CBD3B00B3 for ; Sat, 5 Aug 2006 08:25:32 -0400 (EDT) Received: from mail.mic.co.in (unknown [192.168.1.8]) by ecm.mic.co.in (Postfix) with ESMTP id 6FC3F774C2 for ; Sat, 5 Aug 2006 17:58:49 +0530 (IST) Received: from NMSServer (unknown [192.168.1.227]) by mail.mic.co.in (Postfix) with ESMTP id 137EA48048 for ; Sat, 5 Aug 2006 17:54:40 +0530 (IST) Message-ID: <000701c6b88a$7d2c9830$e301a8c0@NMSServer> From: "jayarajuc" To: Subject: enroling into your gtk mail list Date: Sat, 5 Aug 2006 17:57:17 +0530 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.3790.1830 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1830 X-MailServ-MailFilter-MailScanner-Information: Please contact the ISP for more information X-MailServ-MailFilter-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-Information: Please contact us for more information X-NetcoreSpam2-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-SpamCheck: X-MailScanner-From: jayarajuc@mic.co.in X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.077 tagged_above=-999 required=2 tests=[BAYES_80=2, TW_GT=0.077] X-Spam-Score: 2.077 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 12:25:36 -0000 kindly accept my request in gtk mailing list jayarajuc jayarajuc@mic.co.in ------------------------------------------------------------------------ Confidentiality Notice The information contained in this Electronic Message and any ATTACHMENTs to this message are intended for the EXCLUSIVE USE of the ADDRESSEE(s) and may contain CONFIDENTIAL or PRIVILEGED information. If you are not the intended recipient, please notify the SENDER at MIC or itsupport@mic.co.in immediately and DESTROY all copies of this message and any attachmeents. ------------------------------------------------------------------------ From gygy@cc.gatech.edu Sat Aug 5 10:39:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5010F3B008D for ; Sat, 5 Aug 2006 10:39:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18650-01 for ; Sat, 5 Aug 2006 10:39:32 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 121253B00B3 for ; Sat, 5 Aug 2006 10:39:32 -0400 (EDT) Received: from siwenna.cc.gatech.edu (siwenna.cc.gatech.edu [130.207.7.232]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75EdVC1028011 for ; Sat, 5 Aug 2006 10:39:31 -0400 (EDT) Received: (from www@localhost) by siwenna.cc.gatech.edu (8.13.6/8.12.8) id k75EdShC005123; Sat, 5 Aug 2006 10:39:28 -0400 (EDT) X-Authentication-Warning: siwenna.cc.gatech.edu: www set sender to gygy@cc.gatech.edu using -f Received: from lawn-199-77-206-16.lawn.gatech.edu ([199.77.206.16]) (SquirrelMail authenticated user gygy) by webmail.cc.gatech.edu with HTTP; Sat, 5 Aug 2006 10:39:28 -0400 (EDT) Message-ID: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> Date: Sat, 5 Aug 2006 10:39:28 -0400 (EDT) Subject: missing libpangocairo-1.0.la From: gygy@cc.gatech.edu To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.694 tagged_above=-999 required=2 tests=[AWL=-0.333, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, NO_REAL_NAME=0.961, TW_XF=0.077] X-Spam-Score: -1.694 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 14:39:33 -0000 Hi, While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: libtool: link: cannot find the library `../../pango-1.12.3/pango/libpangocairo-1.0.la' while in pango-1.12.3/pango, I can only find the following .la files libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la I did not change anything in pango or gtk. Can anyone tell me why the libpangocairo-1.0.la does not exist in pango? Thanks Yan From sergstesh@yahoo.com Sat Aug 5 12:33:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E0DA3B00B9 for ; Sat, 5 Aug 2006 12:33:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23184-10 for ; Sat, 5 Aug 2006 12:33:20 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id D67683B016D for ; Sat, 5 Aug 2006 12:33:19 -0400 (EDT) Received: (qmail 52246 invoked by uid 60001); 5 Aug 2006 16:33:19 -0000 Message-ID: <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35212.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 09:33:19 PDT Date: Sat, 5 Aug 2006 09:33:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.064 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077, TW_XV=0.077, TW_ZX=0.077] X-Spam-Score: 1.064 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 16:33:22 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > libtool: link: cannot find the library > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > while in pango-1.12.3/pango, I can only find the following .la files > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > I did not change anything in pango or gtk. Can anyone tell me why the > libpangocairo-1.0.la does not exist in pango? > > Thanks > > Yan > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is how my tool builds gtk+-2.8.19 (the same goes for 2.8.20; if you wish, I can try gtk+-2.10.1): " build.pl :INFO: using default target build sub for 'gtk+' target build.pl :INFO: checking what 'gtk+' target ($versioned_target=gtk+-2.8.19) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 build.pl :INFO: 'gtk+' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: starting sanity check for 'atk' target - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: sanity of 'atk' target appears to be reasonable - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: starting sanity check for 'pango' target - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: sanity of 'pango' target appears to be reasonable - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: using default target build sub for 'atk' target build.pl :INFO: checking what 'atk' target ($versioned_target=atk-1.10.3) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: 'atk' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: using default target build sub for 'glib' target build.pl :INFO: doing nothing to build 'glib' target since it has already been built and installed build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: returned from recursion for 'atk' target ($versioned_target=atk-1.10.3) with $recursion_result=0 build.pl :INFO: building 'atk' target ($versioned_target=atk-1.10.3) proper because it hasn't been built yet build.pl :INFO: going to download 'atk-1.10.3.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.dit.upm.es/pub/GNOME/sources/atk/1.10/atk-1.10.3.tar.gz 19:32:04 URL: ftp://ftp.dit.upm.es/pub/GNOME/sources/atk/1.10/atk-1.10.3.tar.gz [722185] -> "atk-1.10.3.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/atk-1.10.3 build.pl :INFO: unpackaging atk-1.10.3.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf atk-1.10.3.tar.gz 1>atk-1.10.3.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'atk' target depends on the following targets: glib build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: 'configure' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/atk-1.10.3 1>configure.log 2>&1 build.pl :INFO: 'make' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'atk' target ($versioned_target=atk-1.10.3) build.pl :INFO: using default target build sub for 'cairo' target build.pl :INFO: doing nothing to build 'cairo' target since it has already been built and installed build.pl :INFO: using default target build sub for 'pango' target build.pl :INFO: checking what 'pango' target ($versioned_target=pango-1.12.1) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: 'pango' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: using default target build sub for 'cairo' target build.pl :INFO: doing nothing to build 'cairo' target since it has already been built and installed build.pl :INFO: using default target build sub for 'glib' target build.pl :INFO: doing nothing to build 'glib' target since it has already been built and installed build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: returned from recursion for 'pango' target ($versioned_target=pango-1.12.1) with $recursion_result=0 build.pl :INFO: building 'pango' target ($versioned_target=pango-1.12.1) proper because it hasn't been built yet build.pl :INFO: going to download 'pango-1.12.1.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.dataplus.se/pub/GNOME/sources/pango/1.12/pango-1.12.1.tar.gz 19:32:51 URL: ftp://ftp.dataplus.se/pub/GNOME/sources/pango/1.12/pango-1.12.1.tar.gz [1777935] -> "pango-1.12.1.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/pango-1.12.1 build.pl :INFO: unpackaging pango-1.12.1.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf pango-1.12.1.tar.gz 1>pango-1.12.1.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'pango' target depends on the following targets: cairo glib build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig for $next_level_target=cairo build.pl :INFO: found 'cairo.pc' file, assuming 'cairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L cairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/usr/X11R6/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: 'configure' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/pango-1.12.1 1>configure.log 2>&1 build.pl :INFO: 'make' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'pango' target ($versioned_target=pango-1.12.1) build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: returned from recursion for 'gtk+' target ($versioned_target=gtk+-2.8.19) with $recursion_result=0 build.pl :INFO: building 'gtk+' target ($versioned_target=gtk+-2.8.19) proper because it hasn't been built yet build.pl :INFO: going to download 'gtk+-2.8.19.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.no.gnome.org/pub/GNOME/sources/gtk+/2.8/gtk+-2.8.19.tar.gz 19:37:18 URL: ftp://ftp.no.gnome.org/pub/GNOME/sources/gtk+/2.8/gtk+-2.8.19.tar.gz [18222104] -> "gtk+-2.8.19.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/gtk+-2.8.19 build.pl :INFO: unpackaging gtk+-2.8.19.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf gtk+-2.8.19.tar.gz 1>gtk+-2.8.19.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'gtk+' target depends on the following targets: atk cairo glib pango build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig for $next_level_target=atk build.pl :INFO: found 'atk.pc' file, assuming 'atk' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L atk' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig for $next_level_target=cairo build.pl :INFO: found 'cairo.pc' file, assuming 'cairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L cairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/usr/X11R6/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig for $next_level_target=pango build.pl :INFO: found 'pango.pc' file, assuming 'pango' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pango' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangocairo.pc' file, assuming 'pangocairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangocairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6/lib build.pl :INFO: found 'pangox.pc' file, assuming 'pangox' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangox' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangoxft.pc' file, assuming 'pangoxft' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoxft' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangoft2.pc' file, assuming 'pangoft2' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoft2' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: 'configure' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/gtk+-2.8.19 1>configure.log 2>&1 build.pl :INFO: 'make' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'gtk+' target ($versioned_target=gtk+-2.8.19) ". If you are interested, visit the URL in my signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sat Aug 5 13:33:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C1A743B0012 for ; Sat, 5 Aug 2006 13:33:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26008-10 for ; Sat, 5 Aug 2006 13:33:06 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 2DC5B3B000B for ; Sat, 5 Aug 2006 13:33:06 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k75HX4U9012751 for ; Sat, 5 Aug 2006 19:33:05 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 76B0E23D87; Sat, 5 Aug 2006 19:33:04 +0200 (CEST) Date: Sat, 5 Aug 2006 19:33:08 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: missing libpangocairo-1.0.la Message-ID: <20060805173307.GK16209@potato.chello.upc.cz> References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_XF=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 17:33:09 -0000 On Sat, Aug 05, 2006 at 09:33:19AM -0700, Sergei Steshenko wrote: > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > libtool: link: cannot find the library > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > libpangocairo-1.0.la does not exist in pango? > > > > This is how my tool builds gtk+-2.8.19 (the same goes for 2.8.20; if you wish, > I can try gtk+-2.10.1): I wonder how is one supposed to infer the answer from the ugly list of commands and debug prints of your amazing tool. To the original poster: Pango can be built with various backends (Xft, Win32, ...), Cairo is one of them. So while Pango itself can be built (and was built) without Cairo support, Gtk+ 2.10 requires Cairo. Therefore you have to install Cairo and rebuild Pango. Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sat Aug 5 14:06:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 271C53B0008 for ; Sat, 5 Aug 2006 14:06:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28498-06 for ; Sat, 5 Aug 2006 14:06:00 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 0C9823B0012 for ; Sat, 5 Aug 2006 14:06:00 -0400 (EDT) Received: (qmail 963 invoked by uid 60001); 5 Aug 2006 18:05:59 -0000 Message-ID: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35203.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 11:05:59 PDT Date: Sat, 5 Aug 2006 11:05:59 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.987 tagged_above=-999 required=2 tests=[AWL=0.077, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: 0.987 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:06:03 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > libtool: link: cannot find the library > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > while in pango-1.12.3/pango, I can only find the following .la files > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > I did not change anything in pango or gtk. Can anyone tell me why the > libpangocairo-1.0.la does not exist in pango? > > Thanks > > Yan > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I have checked my tool with gtk+-2.10.1 - compiles OK. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Sat Aug 5 14:18:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099433B002B for ; Sat, 5 Aug 2006 14:18:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28906-03 for ; Sat, 5 Aug 2006 14:17:59 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id BD7AB3B000B for ; Sat, 5 Aug 2006 14:17:58 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75IHwu4018397; Sat, 5 Aug 2006 14:17:58 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75IHvOo001908; Sat, 5 Aug 2006 14:17:57 -0400 (EDT) Date: Sat, 5 Aug 2006 14:17:57 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> Message-ID: References: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=0.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: -2.053 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:18:00 -0000 That's great. May I have a copy of the script file for gtk 2.10.1? Thanks Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > --- gygy@cc.gatech.edu wrote: > > > Hi, > > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > libtool: link: cannot find the library > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > libpangocairo-1.0.la does not exist in pango? > > > > Thanks > > > > Yan > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > I have checked my tool with gtk+-2.10.1 - compiles OK. > > --Sergei. > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > From sergstesh@yahoo.com Sat Aug 5 14:29:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 63B653B000B for ; Sat, 5 Aug 2006 14:29:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29255-07 for ; Sat, 5 Aug 2006 14:29:09 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 0F6503B007A for ; Sat, 5 Aug 2006 14:29:09 -0400 (EDT) Received: (qmail 95842 invoked by uid 60001); 5 Aug 2006 18:29:08 -0000 Message-ID: <20060805182908.95840.qmail@web35212.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35212.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 11:29:08 PDT Date: Sat, 5 Aug 2006 11:29:08 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.948 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: 0.948 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:29:10 -0000 --- Yan Gu wrote: > That's great. May I have a copy of the script file for gtk 2.10.1? > > Thanks > > Yan > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- gygy@cc.gatech.edu wrote: > > > > > Hi, > > > > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > > > libtool: link: cannot find the library > > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > > libpangocairo-1.0.la does not exist in pango? > > > > > > Thanks > > > > > > Yan > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > I have checked my tool with gtk+-2.10.1 - compiles OK. > > > > --Sergei. > > > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > You have to change three lines - this is from the document: http://appsfromscratch.berlios.de/README : " 3. FOR THE IMPATIENT: CHANGING VERSIONS OF TARGETS TO BE BUILT. --------------------------------------------------------------- If a newer version of a target is available, for example, if there is gtk+-2.8.19 -> gtk+-2.8.20 transition, do the following: 1) open build data subroutine file in your favorite editor; 2) locate the piece of code describing the target, for 'gtk+' the piece looks looks this: ... targets => { 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '19', ... 3) locate the lines describing major, minor and micro versions, in the above example they are: my $major_ver = '2'; my $minor_ver = '8'; ... micro_ver => '19', 4) change the version (for gtk+-2.8.19 -> gtk+-2.8.20 transition) replace micro_ver => '19', with micro_ver => '20', . 5) rerun the build. ". Anything unclear in the above piece ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sat Aug 5 15:18:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3792B3B002C for ; Sat, 5 Aug 2006 15:18:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31550-01 for ; Sat, 5 Aug 2006 15:18:45 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 52C3B3B01E3 for ; Sat, 5 Aug 2006 15:18:43 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k75JIf1j022392 for ; Sat, 5 Aug 2006 21:18:42 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 8DE2E23D87; Sat, 5 Aug 2006 21:18:41 +0200 (CEST) Date: Sat, 5 Aug 2006 21:18:45 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: missing libpangocairo-1.0.la Message-ID: <20060805191845.GL16209@potato.chello.upc.cz> References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> <20060805173307.GK16209@potato.chello.upc.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 19:18:49 -0000 Please stay on the list. On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > I tried to install cairo and rebuild pango but it is still the same thing. > Do I need to do something in pango to let it build with cairo when > rebuilding it? All I do is > "configure;make;make install" Does Pango's ./configure print Cairo among the backends? You need to do exactly the same as with all the other libraries (have PKG_CONFIG_PATH set, etc.). Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sat Aug 5 15:29:51 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13BAE3B000B for ; Sat, 5 Aug 2006 15:29:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31686-10 for ; Sat, 5 Aug 2006 15:29:50 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id CBB733B0008 for ; Sat, 5 Aug 2006 15:29:49 -0400 (EDT) Received: (qmail 44062 invoked by uid 60001); 5 Aug 2006 19:29:49 -0000 Message-ID: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35205.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 12:29:49 PDT Date: Sat, 5 Aug 2006 12:29:49 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060805191845.GL16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 19:29:51 -0000 --- David Neèas (Yeti) wrote: > > Please stay on the list. > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > I tried to install cairo and rebuild pango but it is still the same thing. > > Do I need to do something in pango to let it build with cairo when > > rebuilding it? All I do is > > "configure;make;make install" > > Does Pango's ./configure print Cairo among the backends? > > You need to do exactly the same as with all the other > libraries (have PKG_CONFIG_PATH set, etc.). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > In the earlier published by myself excerpt from build log file one can see exactly what the dependencies are, including values of PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed at each step. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Sat Aug 5 16:00:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BDBE63B000A for ; Sat, 5 Aug 2006 16:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00676-09 for ; Sat, 5 Aug 2006 16:00:34 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 60F9E3B0012 for ; Sat, 5 Aug 2006 16:00:27 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K0Q2n027116; Sat, 5 Aug 2006 16:00:26 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K0QMB012961; Sat, 5 Aug 2006 16:00:26 -0400 (EDT) Date: Sat, 5 Aug 2006 16:00:26 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> Message-ID: References: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.13 tagged_above=-999 required=2 tests=[AWL=0.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.13 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:00:35 -0000 Hi Sergei, the PKG_CONFIG_PATH in your build log file is PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib= /pkgconfig but there seems to be no lib/pkgconfig under my cairo directory (cairo-1.2.0) Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > --- David Ne=E8as (Yeti) wrote: > > > > > Please stay on the list. > > > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > > I tried to install cairo and rebuild pango but it is still the same t= hing. > > > Do I need to do something in pango to let it build with cairo when > > > rebuilding it? All I do is > > > "configure;make;make install" > > > > Does Pango's ./configure print Cairo among the backends? > > > > You need to do exactly the same as with all the other > > libraries (have PKG_CONFIG_PATH set, etc.). > > > > Yeti > > > > > > -- > > Anonyms eat their boogers. > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > In the earlier published by myself excerpt from build log file one > can see exactly what the dependencies are, including values of > PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed > at each step. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > > From gygy@cc.gatech.edu Sat Aug 5 16:01:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 635023B006D for ; Sat, 5 Aug 2006 16:01:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00768-02 for ; Sat, 5 Aug 2006 16:01:42 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 8F9CC3B0012 for ; Sat, 5 Aug 2006 16:01:41 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K1fop027225; Sat, 5 Aug 2006 16:01:41 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K1ecM013139; Sat, 5 Aug 2006 16:01:40 -0400 (EDT) Date: Sat, 5 Aug 2006 16:01:40 -0400 (EDT) From: Yan Gu To: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805191845.GL16209@potato.chello.upc.cz> Message-ID: References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> <20060805173307.GK16209@potato.chello.upc.cz> <20060805191845.GL16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.162 tagged_above=-999 required=2 tests=[AWL=0.160, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.162 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:01:42 -0000 Hi David, it seems that cairo is not in the backend list of pango. I have set the PKG_CONFIG_PATH=3D/root/cairo-1.2.0, but it does not work. May I take a loo= k at your setup of PKG_CONFIG_PATH? Thanks Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, David [iso-8859-2] Ne=E8as (Yeti) wrote: > > Please stay on the list. > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > I tried to install cairo and rebuild pango but it is still the same thi= ng. > > Do I need to do something in pango to let it build with cairo when > > rebuilding it? All I do is > > "configure;make;make install" > > Does Pango's ./configure print Cairo among the backends? > > You need to do exactly the same as with all the other > libraries (have PKG_CONFIG_PATH set, etc.). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > From sergstesh@yahoo.com Sat Aug 5 16:08:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 172743B000A for ; Sat, 5 Aug 2006 16:08:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01078-05 for ; Sat, 5 Aug 2006 16:08:17 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 0D0E63B006E for ; Sat, 5 Aug 2006 16:08:17 -0400 (EDT) Received: (qmail 43584 invoked by uid 60001); 5 Aug 2006 20:08:16 -0000 Message-ID: <20060805200816.43578.qmail@web35211.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35211.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 13:08:16 PDT Date: Sat, 5 Aug 2006 13:08:16 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'Cc': Cc: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:08:18 -0000 --- Yan Gu wrote: > Hi Sergei, > > the PKG_CONFIG_PATH in your build log file is > > PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig > > but there seems to be no lib/pkgconfig under my cairo directory > (cairo-1.2.0) > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- David Neèas (Yeti) wrote: > > > > > > > > Please stay on the list. > > > > > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > > > I tried to install cairo and rebuild pango but it is still the same thing. > > > > Do I need to do something in pango to let it build with cairo when > > > > rebuilding it? All I do is > > > > "configure;make;make install" > > > > > > Does Pango's ./configure print Cairo among the backends? > > > > > > You need to do exactly the same as with all the other > > > libraries (have PKG_CONFIG_PATH set, etc.). > > > > > > Yeti > > > > > > > > > -- > > > Anonyms eat their boogers. > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > In the earlier published by myself excerpt from build log file one > > can see exactly what the dependencies are, including values of > > PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed > > at each step. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > Could attach the build log file ? It's impossible to devug this not seeing it. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bonefry@gmail.com Sat Aug 5 19:11:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A66583B00C9 for ; Sat, 5 Aug 2006 19:11:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07979-03 for ; Sat, 5 Aug 2006 19:11:39 -0400 (EDT) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.197]) by menubar.gnome.org (Postfix) with ESMTP id 5DD663B000A for ; Sat, 5 Aug 2006 19:11:38 -0400 (EDT) Received: by hu-out-0102.google.com with SMTP id 24so424886hud for ; Sat, 05 Aug 2006 16:11:37 -0700 (PDT) Received: by 10.78.147.19 with SMTP id u19mr2000739hud; Sat, 05 Aug 2006 16:11:36 -0700 (PDT) Received: from 198-122-35-89-cable.canals.ro ( [89.35.122.198]) by mx.gmail.com with ESMTP id 33sm1048486hue.2006.08.05.16.11.35; Sat, 05 Aug 2006 16:11:36 -0700 (PDT) Subject: help a newbie with GObject To: gtk-list@gnome.org Content-Type: text/plain Date: Sun, 06 Aug 2006 02:11:51 +0300 Message-Id: <1154819511.11924.12.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit From: Alex Nedelcu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.4 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 23:11:39 -0000 Hello, I am trying to wrap my head around the GObject/GType system, but because of the lack of good documentation I am having trouble understanding it. Do you know any good tutorial on GObject ? I found the tutorial available on developer.gnome.org (http://www.le-hacker.org/papers/gobject/) not for newbies. So I figured that the best way to understand anything is too have a working equivalent of something I can understand. Can someone be kind and translate the following Java classes in C using GObject ? (I am guessing that it should be a trivial task for someone experienced with the GObject system) Thanks in advance ... abstract class Animal { void feed() { print("Feeding some animal"); } } class Dog extends Animal { static int legs = 4; String name; int age; public Dog(String name, int age) { this.name = name; this.age = age; } void feed() { print("Feeding a canine named " + this.name); } } // ....... Animal animals[] = { new Dog("Bella", 2), new Dog("Toto", 3) }; for (int i=0; i X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 688883B0283 for ; Sat, 5 Aug 2006 20:51:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11197-05 for ; Sat, 5 Aug 2006 20:51:24 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 456103B0008 for ; Sat, 5 Aug 2006 20:51:23 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k760pLq1003766 for ; Sun, 6 Aug 2006 02:51:22 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 660AD23E10; Sun, 6 Aug 2006 02:51:21 +0200 (CEST) Date: Sun, 6 Aug 2006 02:51:27 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: help a newbie with GObject Message-ID: <20060806005127.GR16209@potato.chello.upc.cz> References: <1154819511.11924.12.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1154819511.11924.12.camel@localhost> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 00:51:26 -0000 On Sun, Aug 06, 2006 at 02:11:51AM +0300, Alex Nedelcu wrote: > I am trying to wrap my head around the GObject/GType system, but because > of the lack of good documentation I am having trouble understanding it. > > Do you know any good tutorial on GObject ? > I found the tutorial available on developer.gnome.org > (http://www.le-hacker.org/papers/gobject/) not for newbies. The tutorial is now a part of GObject API documentation -- and it is good if you ask. In fact I cannot imagine what do you mean by the `lack of good documentation'. > So I figured that the best way to understand anything is too have a > working equivalent of something I can understand. In my opinion to understand GObject one should forget the object oriented mumbo jumbo for a while and view both classes and instances and the plain C structs they physically are and how they contain their parents like a matryoshka. That is to imagine what struct _Child { Parent parent_instance; gint data_member; }; and struct _ChildClass { ParentClass parent_class; void (*method)(Child *child); }; actually means. How [almost] everything else works clearly follows from that. The syntax is kind of baroque but a user of Gtk+ should be already trained to it. > Can someone be kind and translate the following Java classes in C using > GObject ? > > (I am guessing that it should be a trivial task for someone experienced > with the GObject system) > > Thanks in advance ... I'm leaving out the boilerplate, it is well described in the tutorial and it adds lots of code to read without any value (I doubt I have ever written it manually, I just take it from anotehr file and use s/// to change names). I'm also prefixing everything with my- (which is how namespaces are made in C). Also see Gtk+ source code -- Gtk+ is nothing more than a large collection of GObject examples... > > abstract class Animal > { > void feed() > { > print("Feeding some animal"); > } > } myanimal.h ================================================ struct _MyAnimalClass { GObjectClass parent_class; void (*feed)(MyAnimal *animal); }; struct _MyAnimal { GObject parent_instance; /* empty */ }; void my_animal_feed(MyAnimal *animal); myanimal.c ================================================ static void my_animal_feed_real(MyAnimal *animal); G_DEFINE_ABSTRACT_TYPE(MyAnimal, my_animal, G_TYPE_OBJECT) static void my_animal_class_init(MyAnimalClass *klass) { klass->feed = &my_animal_feed_real; } static void my_animal_init(MyAnimal *animal) { /* empty */ } void my_animal_feed(MyAnimal *animal) { /* Generally the method must be tested for NULL, but * here we know it always exists */ MY_ANIMAL_GET_CLASS(animal)->feed(animal); } static void my_animal_feed_real(MyAnimal *animal) { printf("Feeding some animal\n"); } > class Dog extends Animal > { > static int legs = 4; > > String name; > int age; > > public Dog(String name, int age) > { > this.name = name; > this.age = age; > } > > void feed() > { > print("Feeding a canine named " + this.name); > } > } mydog.h ================================================ struct _MyDogClass { MyAnimalClass parent_class; gint legs; }; struct _MyDog { MyAnimal parent_instance; GString *name; gint age; } MyDog* my_dog_new(const gchar *name, gint age); mydog.c ================================================ static void my_dog_finalize(GObject *object); static void my_dog_feed(MyAnimal *animal); G_DEFINE_TYPE(MyDog, my_dog, MY_TYPE_DOG) static void my_dog_class_init(MyDogClass *klass) { GObjectClass gobject_class = G_OBJECT_CLASS(klass); MyAnimalClass animal_class = MY_ANIMAL_CLASS(klass); gobject_class->finalize = &my_dog_finalize; animal_class->feed = &my_dog_feed; /* The semantics is not exactly the same */ klass->legs = 4; } static void my_dog_init(MyDog *dog) { dog->name = g_string_new(""); } static void my_dog_finalize(GObject *object) { MyDog *dog; dog = MY_DOG(object); g_string_free(dog->name, TRUE); /* Generally the method must be tested for NULL, but * here we know it always exists */ G_OBJECT_CLASS(my_dog_parent_class)->finalize(object); } MyDog* my_dog_new(const gchar *name, gint age) { MyDog *dog; dog = g_object_new(MY_TYPE_DOG, NULL); g_string_assign(dog->name, name); dog->age = age; /* If MyDog registered name and age as properties we * could also do * dog = g_object_new(MY_TYPE_DOG, "name", name, "age", age, NULL); */ return dog; } static void my_dog_feed(MyAnimal *animal) { MyDog *dog; dog = MY_DOG(animal); printf("Feeding a canine named %s\n", dog->name->str); } > // ....... > > Animal animals[] = { > new Dog("Bella", 2), > new Dog("Toto", 3) > }; > > for (int i=0; i animals[i].feed(); /* The array initialization above is too dynamic plain * old C, so just make two animals to demonstrate feed(). * * Also, it is impossible to work with GObjects by _value_, * use pointers. */ static MyAnimal *animals[2]; animals[0] = MY_ANIMAL(my_dog_new("Bella", 2)); animals[1] = MY_ANIMAL(my_dog_new("Toto", 3)); for (i = 0; i < G_N_ELEMENTS(animals); i++) my_animal_feed(animals[i]); Yeti -- Anonyms eat their boogers. From bonefry@gmail.com Sun Aug 6 01:19:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2153D3B007A for ; Sun, 6 Aug 2006 01:19:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20616-01 for ; Sun, 6 Aug 2006 01:19:37 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by menubar.gnome.org (Postfix) with ESMTP id 80E0A3B002C for ; Sun, 6 Aug 2006 01:19:36 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x29so628978nfb for ; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Received: by 10.78.136.7 with SMTP id j7mr2034279hud; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Received: from 198-122-35-89-cable.canals.ro ( [89.35.122.198]) by mx.gmail.com with ESMTP id 28sm987253hua.2006.08.05.22.19.34; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Subject: Re: help a newbie with GObject From: Alex Nedelcu To: gtk-list@gnome.org In-Reply-To: <20060806005127.GR16209@potato.chello.upc.cz> References: <1154819511.11924.12.camel@localhost> <20060806005127.GR16209@potato.chello.upc.cz> Content-Type: text/plain; charset=UTF-8 Date: Sun, 06 Aug 2006 08:19:51 +0300 Message-Id: <1154841592.5499.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.361 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.361 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 05:19:40 -0000 Thank you, your translation really helped. Sorry about some of my remarks ... I am not a C programmer (although I do know C) and all this looks a little foreign to me. I don't even know how to use GTK, but I want to learn how, and my way of learning is bottom-up, that's why I started with GLib, although that's not the recommended path of a newbie. All things are clearer since yesterday, and I'm slowly getting used to the syntax. I'm not scared because it is baroque, I'm scared because there are things that I do not understand how they work ... but I'll figure it out. Thanks again, On Sun, 2006-08-06 at 02:51 +0200, David NeÄas (Yeti) wrote: > On Sun, Aug 06, 2006 at 02:11:51AM +0300, Alex Nedelcu wrote: > > I am trying to wrap my head around the GObject/GType system, but because > > of the lack of good documentation I am having trouble understanding it. > > > > Do you know any good tutorial on GObject ? > > I found the tutorial available on developer.gnome.org > > (http://www.le-hacker.org/papers/gobject/) not for newbies. > > The tutorial is now a part of GObject API documentation -- > and it is good if you ask. In fact I cannot imagine what do > you mean by the `lack of good documentation'. > > > So I figured that the best way to understand anything is too have a > > working equivalent of something I can understand. > > In my opinion to understand GObject one should forget the > object oriented mumbo jumbo for a while and view both > classes and instances and the plain C structs they > physically are and how they contain their parents like > a matryoshka. That is to imagine what > > struct _Child { > Parent parent_instance; > > gint data_member; > }; > > and > > struct _ChildClass { > ParentClass parent_class; > > void (*method)(Child *child); > }; > > actually means. How [almost] everything else works clearly > follows from that. The syntax is kind of baroque but a user > of Gtk+ should be already trained to it. > > > Can someone be kind and translate the following Java classes in C using > > GObject ? > > > > (I am guessing that it should be a trivial task for someone experienced > > with the GObject system) > > > > Thanks in advance ... > > I'm leaving out the boilerplate, it is well described in the > tutorial and it adds lots of code to read without any value > (I doubt I have ever written it manually, I just take it > from anotehr file and use s/// to change names). I'm also > prefixing everything with my- (which is how namespaces are > made in C). > > Also see Gtk+ source code -- Gtk+ is nothing more than > a large collection of GObject examples... > > > > > abstract class Animal > > { > > void feed() > > { > > print("Feeding some animal"); > > } > > } > > myanimal.h ================================================ > > struct _MyAnimalClass { > GObjectClass parent_class; > > void (*feed)(MyAnimal *animal); > }; > > struct _MyAnimal { > GObject parent_instance; > > /* empty */ > }; > > > void my_animal_feed(MyAnimal *animal); > > > myanimal.c ================================================ > > static void my_animal_feed_real(MyAnimal *animal); > > G_DEFINE_ABSTRACT_TYPE(MyAnimal, my_animal, G_TYPE_OBJECT) > > static void > my_animal_class_init(MyAnimalClass *klass) > { > klass->feed = &my_animal_feed_real; > } > > static void > my_animal_init(MyAnimal *animal) > { > /* empty */ > } > > void > my_animal_feed(MyAnimal *animal) > { > /* Generally the method must be tested for NULL, but > * here we know it always exists */ > MY_ANIMAL_GET_CLASS(animal)->feed(animal); > } > > static void > my_animal_feed_real(MyAnimal *animal) > { > printf("Feeding some animal\n"); > } > > > class Dog extends Animal > > { > > static int legs = 4; > > > > String name; > > int age; > > > > public Dog(String name, int age) > > { > > this.name = name; > > this.age = age; > > } > > > > void feed() > > { > > print("Feeding a canine named " + this.name); > > } > > } > > mydog.h ================================================ > > struct _MyDogClass { > MyAnimalClass parent_class; > > gint legs; > }; > > struct _MyDog { > MyAnimal parent_instance; > > GString *name; > gint age; > } > > MyDog* my_dog_new(const gchar *name, gint age); > > > mydog.c ================================================ > > static void my_dog_finalize(GObject *object); > static void my_dog_feed(MyAnimal *animal); > > G_DEFINE_TYPE(MyDog, my_dog, MY_TYPE_DOG) > > static void > my_dog_class_init(MyDogClass *klass) > { > GObjectClass gobject_class = G_OBJECT_CLASS(klass); > MyAnimalClass animal_class = MY_ANIMAL_CLASS(klass); > > gobject_class->finalize = &my_dog_finalize; > animal_class->feed = &my_dog_feed; > /* The semantics is not exactly the same */ > klass->legs = 4; > } > > static void > my_dog_init(MyDog *dog) > { > dog->name = g_string_new(""); > } > > static void > my_dog_finalize(GObject *object) > { > MyDog *dog; > > dog = MY_DOG(object); > g_string_free(dog->name, TRUE); > > /* Generally the method must be tested for NULL, but > * here we know it always exists */ > G_OBJECT_CLASS(my_dog_parent_class)->finalize(object); > } > > MyDog* > my_dog_new(const gchar *name, > gint age) > { > MyDog *dog; > > dog = g_object_new(MY_TYPE_DOG, NULL); > g_string_assign(dog->name, name); > dog->age = age; > /* If MyDog registered name and age as properties we > * could also do > * dog = g_object_new(MY_TYPE_DOG, "name", name, "age", age, NULL); > */ > > return dog; > } > > static void > my_dog_feed(MyAnimal *animal) > { > MyDog *dog; > > dog = MY_DOG(animal); > printf("Feeding a canine named %s\n", dog->name->str); > } > > > // ....... > > > > Animal animals[] = { > > new Dog("Bella", 2), > > new Dog("Toto", 3) > > }; > > > > for (int i=0; i > animals[i].feed(); > > /* The array initialization above is too dynamic plain > * old C, so just make two animals to demonstrate feed(). > * > * Also, it is impossible to work with GObjects by _value_, > * use pointers. */ > > static MyAnimal *animals[2]; > > animals[0] = MY_ANIMAL(my_dog_new("Bella", 2)); > animals[1] = MY_ANIMAL(my_dog_new("Toto", 3)); > > for (i = 0; i < G_N_ELEMENTS(animals); i++) > my_animal_feed(animals[i]); > > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From rmy@tigress.co.uk Sun Aug 6 07:10:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09BDA3B0091 for ; Sun, 6 Aug 2006 07:10:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19509-01 for ; Sun, 6 Aug 2006 07:10:36 -0400 (EDT) Received: from intgat.tigress.co.uk (mail.tigress.co.uk [195.172.168.163]) by menubar.gnome.org (Postfix) with ESMTP id 3DE3B3B0014 for ; Sun, 6 Aug 2006 07:10:35 -0400 (EDT) Received: (from uucp@localhost) by intgat.tigress.co.uk (8.12.11.20060308/8.11.6) id k76BAX04017275 for ; Sun, 6 Aug 2006 12:10:33 +0100 Received: from marvin.tigress.co.uk(195.172.168.164) by intgat.tigress.co.uk via smap (V2.1) id xma017270; Sun, 6 Aug 06 12:09:40 +0100 Received: from tiffany.internal.tigress.co.uk (tiffany [157.147.97.76]) by tigress.co.uk (8.11.6/8.11.6) with ESMTP id k76B9eB13994 for ; Sun, 6 Aug 2006 12:09:40 +0100 Received: from tiffany.internal.tigress.co.uk (localhost [127.0.0.1]) by tiffany.internal.tigress.co.uk (8.12.10+Sun/8.12.2) with ESMTP id k76B9dvj007223 for ; Sun, 6 Aug 2006 12:09:40 +0100 (BST) Received: (from rmy@localhost) by tiffany.internal.tigress.co.uk (8.12.10+Sun/8.12.2/Submit) id k76B9cTi007222 for gtk-list@gnome.org; Sun, 6 Aug 2006 12:09:38 +0100 (BST) From: Ron Yorston Message-Id: <200608061109.k76B9cTi007222@tiffany.internal.tigress.co.uk> Date: Sun, 06 Aug 2006 12:09:38 +0100 To: gtk-list@gnome.org Subject: Editres support for GTK+ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.299 tagged_above=-999 required=2 tests=[AWL=-1.300, BAYES_50=0.001] X-Spam-Score: -1.299 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 11:10:40 -0000 I've written a client event handler and supporting functions so that GTK+ applications can understand the editres protocol. More information and source code is available here: http://intgat.tigress.co.uk/rmy/gtk_editres/index.html Ron From bruno@clisp.org Fri Aug 4 16:22:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09A063B025F for ; Fri, 4 Aug 2006 16:22:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09590-05 for ; Fri, 4 Aug 2006 16:22:18 -0400 (EDT) Received: from ftp.ilog.fr (ftp.ilog.fr [81.80.162.195]) by menubar.gnome.org (Postfix) with ESMTP id B30EB3B0085 for ; Fri, 4 Aug 2006 16:22:16 -0400 (EDT) Received: from laposte.ilog.fr (cerbere-qfe0 [81.80.162.193]) by ftp.ilog.fr (8.13.1/8.13.1) with ESMTP id k74KFdvh023738; Fri, 4 Aug 2006 22:15:44 +0200 Received: from marbore.ilog.biz (marbore.ilog.biz [172.17.2.61]) by laposte.ilog.fr (8.13.1/8.13.1) with ESMTP id k74KFX8p023113; Fri, 4 Aug 2006 22:15:33 +0200 Received: from honolulu.ilog.fr ([172.16.15.4]) by marbore.ilog.biz with Microsoft SMTPSVC(6.0.3790.1830); Fri, 4 Aug 2006 22:16:44 +0200 Received: by honolulu.ilog.fr (Postfix, from userid 1001) id 2AB0EF142A; Fri, 4 Aug 2006 22:12:43 +0200 (CEST) From: Bruno Haible To: matthew@jenika.com Subject: Re: Compiling with MinGW Date: Fri, 4 Aug 2006 22:12:42 +0200 User-Agent: KMail/1.9.1 References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> In-Reply-To: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608042212.43008.bruno@clisp.org> X-OriginalArrivalTime: 04 Aug 2006 20:16:44.0283 (UTC) FILETIME=[E7AB0CB0:01C6B802] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.49 tagged_above=-999 required=2 tests=[AWL=-0.045, BAYES_00=-2.599, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -2.49 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 11:37:09 -0400 Cc: bug-gnu-gettext@gnu.org, libtool@gnu.org, abiword-dev@abisource.com, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 20:22:19 -0000 Matthew McGillis wrote: > found that by simply > editing the libtool used in both of the above cases and adding: > > case $deplib in > /home*) deplib="c:/cygwin"$deplib;; > esac > > ... > I was able to complete the compiles and generate a version of > wvware-1.2.1 that worked standalone on windows. You appear to be using mingw as a development environment. I don't know whether libtool supports that. I use a recent cygwin as the development environment, and mingw only as the deployment environment. In this setting, I can build gettext-0.15 out of the box, without problems. Here is the command that I use: CPPFLAGS="-mno-cygwin -Wall -I/usr/local/mingw/include" \ CFLAGS="-mno-cygwin -O2 -g" \ CXXFLAGS="-mno-cygwin -O2 -g" \ LDFLAGS="-mno-cygwin -L/usr/local/mingw/lib" \ ./configure --host=i586-pc-mingw32 --prefix=/usr/local/mingw Why would anyone want to use mingw as a development environment? Maybe end-users cannot learn to write "/cygdrive/c/" for "c:\". But developers certainly can. Apologies for having used the term "mingw development environment" in gettext/README.woe32; I didn't know that mingw as a development environment has problems like the one you cite. Bruno From bfriesen@simple.dallas.tx.us Fri Aug 4 18:57:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EDCDD3B03C5 for ; Fri, 4 Aug 2006 18:57:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17176-10 for ; Fri, 4 Aug 2006 18:57:55 -0400 (EDT) Received: from scooby.simplesystems.org (scooby.simplesystems.org [65.66.246.67]) by menubar.gnome.org (Postfix) with ESMTP id A0FDB3B010D for ; Fri, 4 Aug 2006 18:57:54 -0400 (EDT) Received: from blade.simplesystems.org (blade.simplesystems.org [65.66.246.74]) by scooby.simplesystems.org (8.12.10+Sun/8.12.10) with ESMTP id k74MoJR7024416; Fri, 4 Aug 2006 17:50:19 -0500 (CDT) Date: Fri, 4 Aug 2006 17:50:19 -0500 (CDT) From: Bob Friesenhahn X-X-Sender: bfriesen@blade.simplesystems.org To: Bruno Haible Subject: Re: Compiling with MinGW In-Reply-To: <200608042212.43008.bruno@clisp.org> Message-ID: References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.004, BAYES_00=-2.599, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 11:37:09 -0400 Cc: libtool@gnu.org, gtk-list@gnome.org, bug-gnu-gettext@gnu.org, matthew@jenika.com, abiword-dev@abisource.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 22:57:57 -0000 On Fri, 4 Aug 2006, Bruno Haible wrote: >> ... >> I was able to complete the compiles and generate a version of >> wvware-1.2.1 that worked standalone on windows. > > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. MinGW is not a development environment. It is only a compiler and linker. Libtool does support using the MinGW compiler via Cygwin or MSYS (I have only tried MSYS). Both of these support Unix type paths and automatically convert to Windows paths for MinGW. The development (CVS head) version of libtool works best with MinGW. Bob ====================================== Bob Friesenhahn bfriesen@simple.dallas.tx.us, http://www.simplesystems.org/users/bfriesen/ GraphicsMagick Maintainer, http://www.GraphicsMagick.org/ From rshepard@appl-ecosys.com Sun Aug 6 15:21:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9DE4C3B0125 for ; Sun, 6 Aug 2006 15:21:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10000-01 for ; Sun, 6 Aug 2006 15:21:05 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id F2B703B009F for ; Sun, 6 Aug 2006 15:21:04 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 7BD748E23; Sun, 6 Aug 2006 12:20:54 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6D19A66EC for ; Sun, 6 Aug 2006 12:20:54 -0700 (PDT) Date: Sun, 6 Aug 2006 12:20:54 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Problems Building GTK2+2.10.1 and Dependencies Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.959 tagged_above=-999 required=2 tests=[AWL=0.565, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_JP=0.077] X-Spam-Score: -1.959 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Rich Shepard List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 19:21:10 -0000 Over the years I've always had major problems building gtk+ on my linux boxes. Whether I was running Red Hat (which I did until 7.3) or Slackware (currently 10.2), it's a major PITA. The only reason I'm trying to upgrade is to see if the latest version fixes a bug in the calendar widget. With gtk2+ versions more recent than 2.8.6, the calendar on jpilot starts the week on Monday rather than Sunday. I'm trying to determine if the latest versions of everything fix this problem. Here's where I am: The downloads page of the web site does not contain the latest versions of glib, pango, atk, or cairo. After searching with Google, and rummaging around the ftp server I was able to find: atk-1.10.3.tar.bz2, gtk+-2.10.1.tar.bz2, glib-2.12.1.tar.bz2, pango-1.13.5.tar.bz2, and cairo-1.2.0.tar.gz. Configured, built, and installed (several times trying to get the sequence correct): atk, cairo, glib, and pango. Still cannot successfully configure gtk+. Pango-1.12.1 configured and built just fine, but trying to configure gtk2+-2.10.1 I saw that pango had to be built with cairo support. So, I tried to re-build pango-1.13.5. Configure did not have an explicit directive, so I used './configure --with-cairo=yes', and that ran to completion. Then I tried to build it, but ... gcc -g -O2 -Wall -o .libs/pango-view renderdemo.o viewer-x.o viewer-main.o pango-view.o viewer-pangox.o viewer-pangoft2.o viewer-pangoxft.o viewer-cairo.o viewer-pangocairo.o -Wl,--rpath -Wl,/usr/local/lib ../pango/.libs/libpango-1.0.so -L/usr/local/lib ../pango/.libs/libpangox-1.0.so -L/usr/X11R6/lib ../pango/.libs/libpangoft2-1.0.so ../pango/.libs/libpangoxft-1.0.so -lXft ../pango/.libs/libpangocairo-1.0.so /usr/local/pango-1.13.5/pango/.libs/libpangoft2-1.0.so /usr/local/pango-1.13.5/pango/.libs/libpango-1.0.so /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgmodule-2.0.so -ldl /usr/local/lib/libglib-2.0.so /usr/local/lib/libcairo.so -lSM -lICE /usr/X11R6/lib/libfontconfig.so /usr/lib/libfreetype.so -lXrender -lXext -lpng12 -lm /usr/local/lib/libfontconfig.so /usr/local/lib/libfreetype.so -lz /usr/lib/libexpat.so -lX11 /usr/local/lib/libcairo.so: undefined reference to T_GlyphSlot_Embolden' collect2: ld returned 1 exit status make[3]: *** [pango-view] Error 1 make[3]: Leaving directory /usr/local/pango-1.13.5/examples' make[2]: *** [all] Error 2 make[2]: Leaving directory /usr/local/pango-1.13.5/examples' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory /usr/local/pango-1.13.5' make: *** [all] Error 2 I don't know what to do to fix this error. When the only dependency not at the latest version was cairo, trying to configure gtk+ resulted in a statement that _all_ dependencies were too old. That's not true. I seem to be stuck in an endless loop: pango builds fine without cairo, but gtk+ wants pango to include cairo support. But, pango with cairo support won't finish compiling. Suggestions? Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From sergstesh@yahoo.com Sun Aug 6 16:13:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E554C3B009F for ; Sun, 6 Aug 2006 16:13:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11920-01 for ; Sun, 6 Aug 2006 16:13:34 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 54B763B0010 for ; Sun, 6 Aug 2006 16:13:34 -0400 (EDT) Received: (qmail 68841 invoked by uid 60001); 6 Aug 2006 20:13:33 -0000 Message-ID: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35212.mail.mud.yahoo.com via HTTP; Sun, 06 Aug 2006 13:13:33 PDT Date: Sun, 6 Aug 2006 13:13:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problems Building GTK2+2.10.1 and Dependencies To: Rich Shepard , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.668 tagged_above=-999 required=2 tests=[AWL=-1.578, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_JP=0.077] X-Spam-Score: -0.668 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 20:13:38 -0000 --- Rich Shepard wrote: > Over the years I've always had major problems building gtk+ on my linux > boxes. Whether I was running Red Hat (which I did until 7.3) or Slackware > (currently 10.2), it's a major PITA. The only reason I'm trying to upgrade > is to see if the latest version fixes a bug in the calendar widget. > > With gtk2+ versions more recent than 2.8.6, the calendar on jpilot starts > the week on Monday rather than Sunday. I'm trying to determine if the latest > versions of everything fix this problem. Here's where I am: > > The downloads page of the web site does not contain the latest versions of > glib, pango, atk, or cairo. After searching with Google, and rummaging > around the ftp server I was able to find: > > atk-1.10.3.tar.bz2, gtk+-2.10.1.tar.bz2, glib-2.12.1.tar.bz2, > pango-1.13.5.tar.bz2, and cairo-1.2.0.tar.gz. > > Configured, built, and installed (several times trying to get the sequence > correct): atk, cairo, glib, and pango. Still cannot successfully configure > gtk+. Pango-1.12.1 configured and built just fine, but trying to configure > gtk2+-2.10.1 I saw that pango had to be built with cairo support. > > So, I tried to re-build pango-1.13.5. Configure did not have an explicit > directive, so I used './configure --with-cairo=yes', and that ran to > completion. Then I tried to build it, but ... > > gcc -g -O2 -Wall -o .libs/pango-view renderdemo.o viewer-x.o viewer-main.o > pango-view.o viewer-pangox.o viewer-pangoft2.o viewer-pangoxft.o > viewer-cairo.o viewer-pangocairo.o -Wl,--rpath -Wl,/usr/local/lib > ../pango/.libs/libpango-1.0.so -L/usr/local/lib > ../pango/.libs/libpangox-1.0.so -L/usr/X11R6/lib > ../pango/.libs/libpangoft2-1.0.so ../pango/.libs/libpangoxft-1.0.so -lXft > ../pango/.libs/libpangocairo-1.0.so > /usr/local/pango-1.13.5/pango/.libs/libpangoft2-1.0.so > /usr/local/pango-1.13.5/pango/.libs/libpango-1.0.so > /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgmodule-2.0.so -ldl > /usr/local/lib/libglib-2.0.so /usr/local/lib/libcairo.so -lSM -lICE > /usr/X11R6/lib/libfontconfig.so /usr/lib/libfreetype.so -lXrender -lXext > -lpng12 -lm /usr/local/lib/libfontconfig.so /usr/local/lib/libfreetype.so > -lz /usr/lib/libexpat.so -lX11 > /usr/local/lib/libcairo.so: undefined reference to T_GlyphSlot_Embolden' > collect2: ld returned 1 exit status > make[3]: *** [pango-view] Error 1 > make[3]: Leaving directory /usr/local/pango-1.13.5/examples' > make[2]: *** [all] Error 2 > make[2]: Leaving directory /usr/local/pango-1.13.5/examples' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory /usr/local/pango-1.13.5' > make: *** [all] Error 2 > > I don't know what to do to fix this error. > > When the only dependency not at the latest version was cairo, trying to > configure gtk+ resulted in a statement that _all_ dependencies were too old. > That's not true. > > I seem to be stuck in an endless loop: pango builds fine without cairo, > but gtk+ wants pango to include cairo support. But, pango with cairo support > won't finish compiling. > > Suggestions? > > Rich > > -- > Richard B. Shepard, Ph.D. | The Environmental Permitting > Applied Ecosystem Services, Inc.(TM) | Accelerator > Voice: 503-667-4517 Fax: 503-667-8863 > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > My tool (see signature) does build gtk+-2.10.1. Download it, read the README files - available on the project page, modify the versions where necessary and run it. Let me know if you have any problems. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From dragzhb@yahoo.com.cn Sun Aug 6 22:54:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 027BB3B0018 for ; Sun, 6 Aug 2006 22:54:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26908-09 for ; Sun, 6 Aug 2006 22:54:29 -0400 (EDT) Received: from web15109.mail.cnb.yahoo.com (web15109.mail.cnb.yahoo.com [202.165.103.78]) by menubar.gnome.org (Postfix) with SMTP id 4AA753B0003 for ; Sun, 6 Aug 2006 22:54:28 -0400 (EDT) Received: (qmail 81363 invoked by uid 60001); 7 Aug 2006 02:54:26 -0000 Message-ID: <20060807025426.81361.qmail@web15109.mail.cnb.yahoo.com> Received: from [210.21.200.99] by web15109.mail.cnb.yahoo.com via HTTP; Mon, 07 Aug 2006 10:54:26 CST Date: Mon, 7 Aug 2006 10:54:26 +0800 (CST) From: haibin zhang Subject: Re: Compiling with MinGW To: Tor Lillqvist , Bruno Haible In-Reply-To: <17620.17889.531000.626427@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-759150386-1154919266=:76786" Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.453 tagged_above=-999 required=2 tests=[BAYES_50=0.001, HTML_30_40=0.374, HTML_MESSAGE=0.001, TW_LQ=0.077] X-Spam-Score: 0.453 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 23:11:14 -0400 Cc: bug-gnu-gettext@gnu.org, abiword-dev@abisource.com, libtool@gnu.org, matthew@jenika.com, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 02:54:32 -0000 --0-759150386-1154919266=:76786 Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 8bit Tor Lillqvist дµÀ£º Bruno Haible writes: > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. If with mingw one combines MSYS, it certainly does. Using MSYS with auto* and libtool is IMHO much more reliable than using Cygwin, MSYS gets less in the way and causes less confusion. > I use a recent cygwin as the development environment, and mingw only as > the deployment environment. you can try this environment , it inlcude the last packages of autotools : http://sourceforge.net/projects/mingw-install How can mingw be a *deployment* environment (with which I assume you mean what end-users have), why would end-users of some native Win32 application need a compiler and linker? --tml _______________________________________________ http://lists.gnu.org/mailman/listinfo/libtool --------------------------------- ÑÅ»¢Ãâ·ÑÓÊÏä-3.5GÈÝÁ¿£¬20M¸½¼þ --0-759150386-1154919266=:76786 Content-Type: text/html; charset=gb2312 Content-Transfer-Encoding: 8bit

Tor Lillqvist <tml@iki.fi> дµÀ£º
Bruno Haible writes:
> You appear to be using mingw as a development environment. I don't know
> whether libtool supports that.

If with mingw one combines MSYS, it certainly does. Using MSYS with
auto* and libtool is IMHO much more reliable than using Cygwin, MSYS
gets less in the way and causes less confusion.

> I use a recent cygwin as the development environment, and mingw only as
> the deployment environment.

you can try this environment , it inlcude the last packages of autotools :

http://sourceforge.net/projects/mingw-install


How can mingw be a *deployment* environment (with which I assume you
mean what end-users have), why would end-users of some native Win32
application need a compiler and linker?

--tml



_______________________________________________
http://lists.gnu.org/mailman/listinfo/libtool


ÑÅ»¢Ãâ·ÑÓÊÏä-3.5GÈÝÁ¿£¬20M¸½¼þ --0-759150386-1154919266=:76786-- From lists@nabble.com Mon Aug 7 02:38:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5A32C3B0116 for ; Mon, 7 Aug 2006 02:38:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03483-04 for ; Mon, 7 Aug 2006 02:38:08 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 7CD023B00F3 for ; Mon, 7 Aug 2006 02:38:08 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1G9yka-0000fU-4P for gtk-list@gnome.org; Sun, 06 Aug 2006 23:38:08 -0700 Message-ID: <5680166.post@talk.nabble.com> Date: Sun, 6 Aug 2006 23:38:08 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we can change the title bar color MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.079 tagged_above=-999 required=2 tests=[AWL=-1.054, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.079 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 06:38:09 -0000 how we can change a title bar color of our window using Gtkrc. thank u,for reading sree -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5680166 Sent from the Gtk+ - General forum at Nabble.com. From yeti@physics.muni.cz Mon Aug 7 03:44:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E51333B0214 for ; Mon, 7 Aug 2006 03:44:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05892-03 for ; Mon, 7 Aug 2006 03:44:44 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id AC3693B00C7 for ; Mon, 7 Aug 2006 03:44:43 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k777ifaj017993 for ; Mon, 7 Aug 2006 09:44:42 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 7F68623E0E; Mon, 7 Aug 2006 09:44:41 +0200 (CEST) Date: Mon, 7 Aug 2006 09:44:42 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: how we can change the title bar color Message-ID: <20060807074442.GX16209@potato.chello.upc.cz> References: <5680166.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5680166.post@talk.nabble.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 07:44:46 -0000 On Sun, Aug 06, 2006 at 11:38:08PM -0700, cnu_sree wrote: > > how we can change a title bar color of our window using Gtkrc. gtkrc affects only things drawn by Gtk+. Yeti -- Anonyms eat their boogers. From chris@cvine.freeserve.co.uk Mon Aug 7 04:11:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D5103B034D for ; Mon, 7 Aug 2006 04:11:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07856-01 for ; Mon, 7 Aug 2006 04:11:07 -0400 (EDT) Received: from smtp3.freeserve.com (smtp3.wanadoo.co.uk [193.252.22.156]) by menubar.gnome.org (Postfix) with ESMTP id D303E3B034A for ; Mon, 7 Aug 2006 04:11:06 -0400 (EDT) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3212.me.freeserve.com (SMTP Server) with ESMTP id 44BE53C00089; Mon, 7 Aug 2006 10:11:05 +0200 (CEST) Received: from laptop.homenet (modem-1340.kawau.dialup.pol.co.uk [81.78.149.60]) by mwinf3212.me.freeserve.com (SMTP Server) with ESMTP id 814F13C00085; Mon, 7 Aug 2006 10:11:04 +0200 (CEST) X-ME-UUID: 20060807081104529.814F13C00085@mwinf3212.me.freeserve.com Received: from localhost (IDENT:1000@localhost [127.0.0.1]) by laptop.homenet (8.12.10/8.12.10) with ESMTP id k76AkSH8002539; Sun, 6 Aug 2006 11:46:28 +0100 From: Chris Vine To: gtk-list@gnome.org Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') Date: Sun, 6 Aug 2006 11:46:27 +0100 User-Agent: KMail/1.9.3 References: <44CF8F0E.6040709@ti.com> In-Reply-To: <44CF8F0E.6040709@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608061146.28310.chris@cvine.freeserve.co.uk> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.302 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.302 X-Spam-Level: Cc: Olivier Kaloudoff X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 08:11:08 -0000 On Tuesday 01 August 2006 18:27, Olivier Kaloudoff wrote: > Hello, > > using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following > error message when compiling gtk+ on linux32, gcc-4.1.1; [snip] I am surprised that the GtkPrinter stuff was included in GTK+-2.10 because it has all sorts of issues. This was one of the ones I came across and in this case it is because the configure scripts have not been written correctly to detect the required version of CUPS. GTK+-2.10 will appear to configure correctly without the required CUPS version but will then not compile if CUPS is not of a sufficiently recent version. I found GTK+ fails to compile with CUPS 1.1.19, but will compile with CUPS 1.1.23. I do not know at what version between those GTK+ will compile. Chris From lists@nabble.com Mon Aug 7 06:19:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C3C903B053E for ; Mon, 7 Aug 2006 06:19:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13777-10 for ; Mon, 7 Aug 2006 06:19:27 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id C64B03B03F5 for ; Mon, 7 Aug 2006 06:19:26 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GA2Ch-0006Bt-W6 for gtk-list@gnome.org; Mon, 07 Aug 2006 03:19:24 -0700 Message-ID: <5682514.post@talk.nabble.com> Date: Mon, 7 Aug 2006 03:19:23 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: Re: how we can change the title bar color In-Reply-To: <20060807074442.GX16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.271 tagged_above=-999 required=2 tests=[AWL=0.168, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.271 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 10:19:28 -0000 then please tell me how we can change the title bar color. -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5682514 Sent from the Gtk+ - General forum at Nabble.com. From me.erudite@gmail.com Mon Aug 7 07:28:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15043B06B1 for ; Mon, 7 Aug 2006 07:28:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18155-04 for ; Mon, 7 Aug 2006 07:28:26 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by menubar.gnome.org (Postfix) with ESMTP id E5A093B06A8 for ; Mon, 7 Aug 2006 07:28:25 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so34904pyg for ; Mon, 07 Aug 2006 04:28:25 -0700 (PDT) Received: by 10.35.94.2 with SMTP id w2mr12031261pyl; Mon, 07 Aug 2006 04:28:25 -0700 (PDT) Received: by 10.35.117.14 with HTTP; Mon, 7 Aug 2006 04:28:25 -0700 (PDT) Message-ID: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> Date: Mon, 7 Aug 2006 16:58:25 +0530 From: "sachin kamat" To: gtk-list Subject: color fill in text box MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_48783_15025734.1154950105397" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.922 tagged_above=-999 required=2 tests=[AWL=-0.382, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.922 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 11:28:26 -0000 ------=_Part_48783_15025734.1154950105397 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Is there a way to fill/set background color in a gtk+ text entry box. Thanks ------=_Part_48783_15025734.1154950105397 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,
Is there a way to fill/set background color in a gtk+ text entry box.
 
Thanks

------=_Part_48783_15025734.1154950105397-- From billcu1@verizon.net Mon Aug 7 08:04:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C7C263B070B for ; Mon, 7 Aug 2006 08:04:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20613-10 for ; Mon, 7 Aug 2006 08:04:57 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 3B0A73B01D9 for ; Mon, 7 Aug 2006 08:04:57 -0400 (EDT) Received: from win98 ([71.251.250.182]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3M002UVMW7PI44@vms042.mailsrvcs.net> for gtk-list@gnome.org; Mon, 07 Aug 2006 07:04:56 -0500 (CDT) Date: Mon, 07 Aug 2006 08:03:37 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.985 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.985 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:04:59 -0000 Ok in what order exactly do you install the stuff needed to compile gtk? I've had nothing but trouble. I have libiconv libtool and atk pango cairo glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty long list. Bill From michael@elehack.net Mon Aug 7 08:20:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 385B93B06F2 for ; Mon, 7 Aug 2006 08:20:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21212-10 for ; Mon, 7 Aug 2006 08:20:49 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id CC9E73B027D for ; Mon, 7 Aug 2006 08:20:48 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=[192.168.1.100]) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GA46B-0007iJ-Cx; Mon, 07 Aug 2006 07:20:47 -0500 Subject: Re: how we can change the title bar color From: Michael Ekstrand To: cnu_sree In-Reply-To: <5682514.post@talk.nabble.com> References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> Content-Type: text/plain Date: Mon, 07 Aug 2006 07:20:45 -0500 Message-Id: <1154953245.15368.4.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.459 tagged_above=-999 required=2 tests=[AWL=0.140, BAYES_00=-2.599] X-Spam-Score: -2.459 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:20:50 -0000 On Mon, 2006-08-07 at 03:19 -0700, cnu_sree wrote: > then please tell me how we can change the title bar color. His point was, you can't. The title bar is drawn by something outside of GTK, that is, the window manager (or Windows, when you're running on Win32). While that window manager may use GTK (Metacity and Sawfish both do), it's outside the control of your application, and therefore cannot be changed. - Michael From tml@iki.fi Mon Aug 7 08:21:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B50FF3B0723 for ; Mon, 7 Aug 2006 08:21:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21501-02 for ; Mon, 7 Aug 2006 08:21:16 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 1A8DB3B027D for ; Mon, 7 Aug 2006 08:21:16 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 9E32E21687F; Mon, 7 Aug 2006 15:21:12 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17623.12266.625000.494933@gargle.gargle.HOWL> Date: Mon, 7 Aug 2006 15:19:54 +0300 To: "Bill Cunningham" Subject: Re: gtk In-Reply-To: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:21:17 -0000 Bill Cunningham writes: > I've had nothing but trouble. I have libiconv libtool and atk pango cairo > glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty > long list. Yes, but if you have gone through those, surely you must by now notice you are getting closer? Doesn't the configure script(s) and/or output from pkg-config that they run tell you what's still missing? Can you give any more details on your build and target environment? It must be somewhat special if you need to handle dependencies like this "by hand" without the help of a package management system, jhbuild, or something similar? --tml From sergstesh@yahoo.com Mon Aug 7 08:35:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2C3B0745 for ; Mon, 7 Aug 2006 08:35:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22095-09 for ; Mon, 7 Aug 2006 08:35:11 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 9ED113B0744 for ; Mon, 7 Aug 2006 08:35:10 -0400 (EDT) Received: (qmail 61182 invoked by uid 60001); 7 Aug 2006 12:35:10 -0000 Message-ID: <20060807123510.61180.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35210.mail.mud.yahoo.com via HTTP; Mon, 07 Aug 2006 05:35:10 PDT Date: Mon, 7 Aug 2006 05:35:10 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.697 tagged_above=-999 required=2 tests=[AWL=-1.530, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.697 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:35:11 -0000 --- Bill Cunningham wrote: > Ok in what order exactly do you install the stuff needed to compile gtk? > I've had nothing but trouble. I have libiconv libtool and atk pango cairo > glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty > long list. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool - see signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From murrayc@murrayc.com Mon Aug 7 08:36:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062DF3B0761 for ; Mon, 7 Aug 2006 08:36:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22099-07 for ; Mon, 7 Aug 2006 08:35:59 -0400 (EDT) Received: from webmail2.sd.dreamhost.com (webmail2.sd.dreamhost.com [66.33.201.157]) by menubar.gnome.org (Postfix) with ESMTP id E004B3B0744 for ; Mon, 7 Aug 2006 08:35:56 -0400 (EDT) Received: from webmail.murrayc.com (localhost [127.0.0.1]) by webmail2.sd.dreamhost.com (Postfix) with ESMTP id 29975DC6FE; Mon, 7 Aug 2006 05:35:56 -0700 (PDT) Received: from 194.138.18.131 (proxying for unknown) (SquirrelMail authenticated user murrayc@murrayc.com) by webmail.murrayc.com with HTTP; Mon, 7 Aug 2006 14:35:56 +0200 (CEST) Message-ID: <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> In-Reply-To: <1154953245.15368.4.camel@localhost.localdomain> References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> <1154953245.15368.4.camel@localhost.localdomain> Date: Mon, 7 Aug 2006 14:35:56 +0200 (CEST) Subject: Re: how we can change the title bar color From: "Murray Cumming" To: "Michael Ekstrand" User-Agent: SquirrelMail/1.4.6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: Cc: cnu_sree , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:36:01 -0000 > On Mon, 2006-08-07 at 03:19 -0700, cnu_sree wrote: >> then please tell me how we can change the title bar color. > > His point was, you can't. The title bar is drawn by something outside > of GTK, that is, the window manager (or Windows, when you're running on > Win32). While that window manager may use GTK (Metacity and Sawfish > both do), it's outside the control of your application, and therefore > cannot be changed. Of course, it's difficult to know what he wants from such a short question. cnu_sree, do you want to make a desktop theme for the whole desktop? Or are you really asking about changing the title bar color for just one window? Murray Cumming murrayc@murrayc.com www.murrayc.com www.openismus.com From christophe.dehais@gmail.com Mon Aug 7 09:13:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7FC193B0775 for ; Mon, 7 Aug 2006 09:13:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24414-01 for ; Mon, 7 Aug 2006 09:13:40 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 056963B0763 for ; Mon, 7 Aug 2006 09:13:40 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so122054ugf for ; Mon, 07 Aug 2006 06:13:39 -0700 (PDT) Received: by 10.67.93.6 with SMTP id v6mr7973851ugl; Mon, 07 Aug 2006 06:13:39 -0700 (PDT) Received: by 10.67.92.17 with HTTP; Mon, 7 Aug 2006 06:13:39 -0700 (PDT) Message-ID: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> Date: Mon, 7 Aug 2006 15:13:39 +0200 From: "Christophe Dehais" To: gtk-list@gnome.org Subject: Where are the pixels ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_76333_6861366.1154956419050" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.842 tagged_above=-999 required=2 tests=[AWL=-0.238, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.842 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 13:13:41 -0000 ------=_Part_76333_6861366.1154956419050 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline hi list! So in gtk, a UI is a hierarchy of nested widgets, and the nodes of this "tree" are container elements. Some widgets have an associated GdkWindow, some don't. What is not clear to me is whether or not a GdkWindow contains the real pixels in some way. Let's assume this scenario: a window is created and its size is computed through size negociation, then a pixel buffer containing all pixels for the window is allocated. So all nested widgets could be NO_WINDOW, they could use the portion of the big pixel buffer corresponding to their position in the window. But this is not the case (for what I understand), and if GdkWindow does allocate the real pixels, I figure there is some sort of over-coverage of the window. Is there any guru that could explains me how that works or points me a good link to help me clarify this. The thing is that I plan to write a custom Container widget that composites its childrens and also adds some decorations, and I don't know if I have to claim its parent window for the drawing or if I have to allocate the (possibly multiple) GdkWindow I need. thanks in advance, Christophe. ------=_Part_76333_6861366.1154956419050 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline hi list!

So in gtk, a UI is a hierarchy of nested widgets, and the nodes of this "tree" are container elements. Some widgets have an associated GdkWindow, some don't.

What is not clear to me is whether or not a GdkWindow contains the real pixels in some way. Let's assume this scenario: a window is created and its size is computed through size negociation, then a pixel buffer containing all pixels for the window is allocated. So all nested widgets could be NO_WINDOW, they could use the portion of the big pixel buffer corresponding to their position in the window. But this is not the case (for what I understand), and if GdkWindow does allocate the real pixels, I figure there is some sort of over-coverage of the window.

Is there any guru that could explains me how that works or points me a good link to help me clarify this.

The thing is that I plan to write a custom Container widget that composites its childrens and also adds some decorations, and I don't know if I have to claim its parent window for the drawing or if I have to allocate the (possibly multiple) GdkWindow I need.


thanks in advance,
Christophe.
------=_Part_76333_6861366.1154956419050-- From rpmcruz@clix.pt Mon Aug 7 09:42:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 050023B077D for ; Mon, 7 Aug 2006 09:42:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25850-04 for ; Mon, 7 Aug 2006 09:42:19 -0400 (EDT) Received: from mailrly07.isp.novis.pt (mailrly07.isp.novis.pt [195.23.133.217]) by menubar.gnome.org (Postfix) with ESMTP id DF3423B0353 for ; Mon, 7 Aug 2006 09:42:15 -0400 (EDT) Received: (qmail 24838 invoked from network); 7 Aug 2006 13:42:14 -0000 Received: from unknown (HELO mailfrt11.isp.novis.pt) ([195.23.133.227]) (envelope-sender ) by mailrly07.isp.novis.pt with compressed SMTP; 7 Aug 2006 13:42:14 -0000 Received: (qmail 12999 invoked from network); 7 Aug 2006 13:42:14 -0000 Received: from unknown (HELO [10.0.0.2]) (Sent_by_authenticated_user_x2476431@[87.196.7.183]) (envelope-sender ) by mailfrt11.isp.novis.pt with SMTP; 7 Aug 2006 13:42:14 -0000 From: Ricardo Cruz To: gtk-list@gnome.org Subject: Re: color fill in text box Date: Mon, 7 Aug 2006 14:54:03 +0100 User-Agent: KMail/1.9.1 References: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> In-Reply-To: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> X-Face: $29d{(U~(^/X.rR|7i6syM3jeJ}N+*%U-#Bzl5 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608071454.03729.rpmcruz@clix.pt> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.595 tagged_above=-999 required=2 tests=[AWL=-0.854, BAYES_20=-0.74, SPF_PASS=-0.001] X-Spam-Score: -1.595 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 13:42:22 -0000 Hi Sachin, For either GtkEntry or GtkTextiView, use gtk_widget_modify_base(): http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#gtk-widget-modify-base Cheers Ricardo Em Segunda, 7 de Agosto de 2006 12:28, o sachin kamat escreveu: > Hi, > Is there a way to fill/set background color in a gtk+ text entry box. > > Thanks -- Please ignore previous fortune. From rshepard@appl-ecosys.com Mon Aug 7 11:31:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0E4C03B0802 for ; Mon, 7 Aug 2006 11:31:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32004-05 for ; Mon, 7 Aug 2006 11:31:40 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id CAAD93B0859 for ; Mon, 7 Aug 2006 11:31:39 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 6AAE4154E; Mon, 7 Aug 2006 08:31:29 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6A1E4154A for ; Mon, 7 Aug 2006 08:31:29 -0700 (PDT) Date: Mon, 7 Aug 2006 08:31:29 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Re: Problems Building GTK2+2.10.1 and Dependencies In-Reply-To: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> Message-ID: References: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.147 tagged_above=-999 required=2 tests=[AWL=0.377, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_JP=0.077] X-Spam-Score: -2.147 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:31:45 -0000 On Sun, 6 Aug 2006, Sergei Steshenko wrote: > My tool (see signature) does build gtk+-2.10.1. Sergei, I see that this version has some unresolved issues that I don't want to cause problems here. So, I have dropped back to where I was before. All that remains is to get jpilot running again. Something broke while I tried yesterday to upgrade gtk+2 and all its dependencies. Jpilot will not load this morning: [rshepard@salmo ~]$ jpilot removing stale pidfile *** glibc detected *** free(): invalid pointer: 0x0810b2e8 *** Aborted You have mail in /var/spool/mail/rshepard Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From ibr@radix50.net Mon Aug 7 11:37:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51B3D3B08A0 for ; Mon, 7 Aug 2006 11:37:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32496-07 for ; Mon, 7 Aug 2006 11:37:47 -0400 (EDT) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by menubar.gnome.org (Postfix) with ESMTP id 21C883B089C for ; Mon, 7 Aug 2006 11:37:46 -0400 (EDT) Received: from mail-in-08-z2.arcor-online.net (mail-in-08-z2.arcor-online.net [151.189.8.20]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id AD12E45D462; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mail-in-08-z2.arcor-online.net (Postfix) with ESMTP id 9283355A9B; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 38005166AEF; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77Fb7cb017620; Mon, 7 Aug 2006 17:37:07 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77Fb7Rk017619; Mon, 7 Aug 2006 17:37:07 +0200 Date: Mon, 7 Aug 2006 17:37:07 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807153707.GE4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.07 tagged_above=-999 required=2 tests=[AWL=0.317, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.07 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:37:50 -0000 Hello Harsha, On Mon, Aug 07, 2006 at 08:58:30AM -0600, harshavardhanreddy mandeepala wrote: > I saw your posting in gtk list regarding this. > I followed the same way to cross compile the glib package. Great, you searched the archives! Would you mind if we take this discussion to gtk-list so that others could potentially use it? > It cross compiled perfectly but i have one doubt. > I used > ./configure --cache-file=arm-linux.cache --host=arm-linux > I kept same thing in arm-linux.cache file as specified in the > > http://developer.gnome.org/doc/API/2.0/glib/glib-cross-compiling.html > > It compiled and created library also. > The thing is which C library it will take. > Because i didn't specifie CC=arm-linux-gcc in ./configure . > But if i run using CC=arm-linux-gcc it is creating error saying that > " cannot run test program while cross compiling." > So is it necessary to put CC=arm-linux-gcc or not. Hmm, I would say specifying --host should be enough, but different results are really strange; which compiler does configure choose if you don't specify CC? > If not my library created is currect. if require what is the problem for the > error. Just link against it and run the program on the target. Or check with the file command. For a dynamic lib: ibr@medeu:~$ file libglib-2.0.so.0.400.8 libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 (ARM), stripped For a static lib: ibr@medeu:~$ ar x libglib-2.0.a ibr@medeu:~$ file gmem.o gmem.o: ELF 32-bit LSB relocatable, ARM, version 1 (ARM), not stripped I guess your libraries are built for i386 (or whatever your $build is). With kind regards, Baurzhan. From sergstesh@yahoo.com Mon Aug 7 11:59:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 11E733B0802 for ; Mon, 7 Aug 2006 11:59:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01272-06 for ; Mon, 7 Aug 2006 11:58:59 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 83F3D3B090A for ; Mon, 7 Aug 2006 11:58:57 -0400 (EDT) Received: (qmail 28567 invoked by uid 60001); 7 Aug 2006 15:58:57 -0000 Message-ID: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35209.mail.mud.yahoo.com via HTTP; Mon, 07 Aug 2006 08:58:57 PDT Date: Mon, 7 Aug 2006 08:58:57 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problems Building GTK2+2.10.1 and Dependencies To: Rich Shepard , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.649 tagged_above=-999 required=2 tests=[AWL=-1.559, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_JP=0.077] X-Spam-Score: -0.649 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:59:02 -0000 --- Rich Shepard wrote: > On Sun, 6 Aug 2006, Sergei Steshenko wrote: > > > My tool (see signature) does build gtk+-2.10.1. > > Sergei, > > I see that this version has some unresolved issues that I don't want to > cause problems here. So, I have dropped back to where I was before. All that > remains is to get jpilot running again. Something broke while I tried > yesterday to upgrade gtk+2 and all its dependencies. Jpilot will not load > this morning: > > [rshepard@salmo ~]$ jpilot > removing stale pidfile > *** glibc detected *** free(): invalid pointer: 0x0810b2e8 *** > Aborted > You have mail in /var/spool/mail/rshepard > > Rich > > -- > Richard B. Shepard, Ph.D. | The Environmental Permitting > Applied Ecosystem Services, Inc.(TM) | Accelerator > Voice: 503-667-4517 Fax: 503-667-8863 > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I can't help you with 'jpilot'. My tool builds gtk+2.8.18-gtk+2.8.20, that is, I checked these versions myself. Regarding gtk+-2.10.1 - did I also mention http://bugzilla.gnome.org/show_bug.cgi?id=350163 ? I reverted to gtk+2.8.20. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From rshepard@appl-ecosys.com Mon Aug 7 12:09:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8173A3B07AC for ; Mon, 7 Aug 2006 12:09:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01533-09 for ; Mon, 7 Aug 2006 12:09:28 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id DD4BE3B07DD for ; Mon, 7 Aug 2006 12:09:27 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 769B1D0D; Mon, 7 Aug 2006 09:09:17 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6864F5A3 for ; Mon, 7 Aug 2006 09:09:17 -0700 (PDT) Date: Mon, 7 Aug 2006 09:09:17 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Re: Problems Building GTK2+2.10.1 and Dependencies In-Reply-To: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> Message-ID: References: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.28 tagged_above=-999 required=2 tests=[AWL=0.321, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.28 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 16:09:29 -0000 On Mon, 7 Aug 2006, Sergei Steshenko wrote: > I can't help you with 'jpilot'. Sergei, I did not expect you to. It's more than puzzling because I dropped back to gtk+2-2.8.12, which is what worked just fine before. Of course, glibc-2.3.5 hasn't changed > Regarding gtk+-2.10.1 - did I also mention > http://bugzilla.gnome.org/show_bug.cgi?id=350163 Yes, you did. Thanks, Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From tml@iki.fi Mon Aug 7 12:36:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DAE943B08EF for ; Mon, 7 Aug 2006 12:36:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03061-06 for ; Mon, 7 Aug 2006 12:36:42 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 57D713B0911 for ; Mon, 7 Aug 2006 12:36:42 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 6AAD5216221; Mon, 7 Aug 2006 19:36:39 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17623.27599.953000.77450@gargle.gargle.HOWL> Date: Mon, 7 Aug 2006 19:35:27 +0300 To: "Bill Cunningham" Subject: Re: gtk In-Reply-To: <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 16:36:47 -0000 (Please keep the discussion on the list, don't mail me personally.) Bill Cunningham writes: > pkg-config doesn't help me much. I'm not quite sure how to use it. I > know there is the PKG_CONFIG variable. Do you set that in bash_profile ? I > must confess I can't figure out how to use the package. You still didn't tell your development and target environment... As far as we know, you might for instance be using Cygwin (a Linux emulation package for Windows), OpenVMS, Ultrix, or some embedded environment. Setting an environment variable can be done in several files, or interactively. How to do it depends on how persistent you want it to be, and whether for all users or just you. What your shell setup files are called and where they are depends much on your operating system, shell, and local system administration procedures. And how to set environment variables has nothing to do with gtk as such... --tml From ibr@radix50.net Mon Aug 7 13:17:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0F1313B08D9 for ; Mon, 7 Aug 2006 13:17:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05118-10 for ; Mon, 7 Aug 2006 13:17:19 -0400 (EDT) Received: from mail-in-07.arcor-online.net (mail-in-07.arcor-online.net [151.189.21.47]) by menubar.gnome.org (Postfix) with ESMTP id 75D863B0913 for ; Mon, 7 Aug 2006 13:17:19 -0400 (EDT) Received: from mail-in-03-z2.arcor-online.net (mail-in-03-z2.arcor-online.net [151.189.8.15]) by mail-in-07.arcor-online.net (Postfix) with ESMTP id 1F91B1C905C; Mon, 7 Aug 2006 19:17:18 +0200 (CEST) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-03-z2.arcor-online.net (Postfix) with ESMTP id 03DD227B783; Mon, 7 Aug 2006 19:17:18 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id A48AD26CABF; Mon, 7 Aug 2006 19:17:17 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77HGliO020423; Mon, 7 Aug 2006 19:16:47 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77HGlHA020422; Mon, 7 Aug 2006 19:16:47 +0200 Date: Mon, 7 Aug 2006 19:16:47 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807171647.GF4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.131 tagged_above=-999 required=2 tests=[AWL=0.333, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.131 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 17:17:26 -0000 On Mon, Aug 07, 2006 at 10:48:26AM -0600, harshavardhanreddy mandeepala wrote: > Infact after compilation it has created the > libglib-2.0.la > libglib-2.0.lai > libglib-2.0.so > libglib-2.0.so.0 > libglib-2.0.so.0.400.7 > > But i don't know these are for i386 ot for arm-linx. > Any suggestion how to find . So what does "file libglib-2.0.so.0.400.7" say? > On 8/7/06, Baurzhan Ismagulov wrote: > > > >ibr@medeu:~$ file libglib-2.0.so.0.400.8 > >libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 > >(ARM), stripped With kind regards, Baurzhan. From rick.jones2@hp.com Mon Aug 7 13:54:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B198B3B0280 for ; Mon, 7 Aug 2006 13:54:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06882-08 for ; Mon, 7 Aug 2006 13:54:49 -0400 (EDT) Received: from palrel11.hp.com (palrel11.hp.com [156.153.255.246]) by menubar.gnome.org (Postfix) with ESMTP id 281173B08E0 for ; Mon, 7 Aug 2006 13:54:49 -0400 (EDT) Received: from tardy.cup.hp.com (tardy.cup.hp.com [15.244.56.217]) by palrel11.hp.com (Postfix) with ESMTP id A05C734A3E; Mon, 7 Aug 2006 10:54:48 -0700 (PDT) Received: from hp.com (localhost [127.0.0.1]) by tardy.cup.hp.com (8.9.3 (PHNE_28810)/8.9.3 SMKit7.02) with ESMTP id KAA06627; Mon, 7 Aug 2006 10:54:47 -0700 (PDT) Message-ID: <44D77E67.6010202@hp.com> Date: Mon, 07 Aug 2006 10:54:47 -0700 From: Rick Jones User-Agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.6) Gecko/20040304 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Nedelcu Subject: Re: help a newbie with GObject References: <1154819511.11924.12.camel@localhost> In-Reply-To: <1154819511.11924.12.camel@localhost> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.803 tagged_above=-999 required=2 tests=[AWL=-0.693, BAYES_05=-1.11] X-Spam-Score: -1.803 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 17:54:50 -0000 I forget who pointed me at this, but I found: http://mail.gnome.org/archives/gtk-devel-list/2004-August/msg00120.html somewhat helpful to me coming from a C but not OO background. I only wish it included signals. My recollection is that this is not the same as what made it into the docs. rick jones From ibr@radix50.net Mon Aug 7 16:21:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1793B0AAC for ; Mon, 7 Aug 2006 16:21:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14296-10 for ; Mon, 7 Aug 2006 16:21:17 -0400 (EDT) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by menubar.gnome.org (Postfix) with ESMTP id B55633B0A93 for ; Mon, 7 Aug 2006 16:21:16 -0400 (EDT) Received: from mail-in-10-z2.arcor-so.net (mail-in-10-z2.arcor-online.net [151.189.8.27]) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 3209A18A876 for ; Mon, 7 Aug 2006 22:21:15 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-10-z2.arcor-so.net (Postfix) with ESMTP id 23A12232E7E for ; Mon, 7 Aug 2006 22:21:15 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id DB6F419C8D7 for ; Mon, 7 Aug 2006 22:21:14 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77KKjfw026064 for ; Mon, 7 Aug 2006 22:20:45 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77KKi5f026063 for gtk-list@gnome.org; Mon, 7 Aug 2006 22:20:44 +0200 Date: Mon, 7 Aug 2006 22:20:44 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807202044.GH4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> <20060807171647.GF4137@radix50.net> <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.153 tagged_above=-999 required=2 tests=[AWL=0.311, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.153 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 20:21:20 -0000 On Mon, Aug 07, 2006 at 12:05:49PM -0600, harshavardhanreddy mandeepala wrote: > So ,libglib-2.0.so.0.400.7 means it is for i386? > then how u did for ARM?If u don't mind can u send the steps? 1. Type "file libglib-2.0.so.0.400.7". Press Enter. 2. Paste the command output to the list. > On 8/7/06, Baurzhan Ismagulov wrote: > >So what does "file libglib-2.0.so.0.400.7" say? > > > >> On 8/7/06, Baurzhan Ismagulov wrote: > >> > > >> >ibr@medeu:~$ file libglib-2.0.so.0.400.8 > >> >libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 > >> >(ARM), stripped With kind regards, Baurzhan. From kyndig@gmail.com Mon Aug 7 22:43:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 95B013B0CFD for ; Mon, 7 Aug 2006 22:43:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30366-09 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.229]) by menubar.gnome.org (Postfix) with ESMTP id 6D9F23B0CF6 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so444225qba for ; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.99.11 with SMTP id w11mr99523wxb; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Mon, 7 Aug 2006 19:42:54 -0700 (PDT) Message-ID: Date: Mon, 7 Aug 2006 22:42:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Mac OS X: error: X development libraries not found MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1361_9686339.1155004974618" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.971 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.971 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 02:43:03 -0000 ------=_Part_1361_9686339.1155004974618 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list - I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error: X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env. Looking at configure.in I see: else have_base_x_pc=false AC_PATH_XTRA if test x$no_x = xyes ; then AC_MSG_ERROR([X development libraries not found]) fi There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software. I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software. Thank you, Calvin ------=_Part_1361_9686339.1155004974618 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list -

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

Looking at configure.in I see:
   else
    have_base_x_pc=false  
    AC_PATH_XTRA
    if test x$no_x = xyes ; then
      AC_MSG_ERROR([X development libraries not found])
    fi
There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software.

I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software.


Thank you,
Calvin

------=_Part_1361_9686339.1155004974618-- From kyndig@gmail.com Mon Aug 7 22:43:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0ED513B0CFD for ; Mon, 7 Aug 2006 22:43:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30137-09 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.230]) by menubar.gnome.org (Postfix) with ESMTP id 6D9CF3B0CF4 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so444226qba for ; Mon, 07 Aug 2006 19:43:02 -0700 (PDT) Received: by 10.70.103.12 with SMTP id a12mr37411wxc; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Mon, 7 Aug 2006 19:42:54 -0700 (PDT) Message-ID: Date: Mon, 7 Aug 2006 22:42:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Mac OS X: error: X development libraries not found MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1361_9686339.1155004974618" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.971 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.971 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 02:43:05 -0000 ------=_Part_1361_9686339.1155004974618 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list - I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error: X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env. Looking at configure.in I see: else have_base_x_pc=false AC_PATH_XTRA if test x$no_x = xyes ; then AC_MSG_ERROR([X development libraries not found]) fi There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software. I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software. Thank you, Calvin ------=_Part_1361_9686339.1155004974618 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list -

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

Looking at configure.in I see:
   else
    have_base_x_pc=false  
    AC_PATH_XTRA
    if test x$no_x = xyes ; then
      AC_MSG_ERROR([X development libraries not found])
    fi
There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software.

I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software.


Thank you,
Calvin

------=_Part_1361_9686339.1155004974618-- From lists@nabble.com Tue Aug 8 01:10:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D580D3B0D6A for ; Tue, 8 Aug 2006 01:10:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03733-08 for ; Tue, 8 Aug 2006 01:10:35 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id B314D3B0D67 for ; Tue, 8 Aug 2006 01:10:35 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GAJrP-0004Ny-BE for gtk-list@gnome.org; Mon, 07 Aug 2006 22:10:35 -0700 Message-ID: <5700555.post@talk.nabble.com> Date: Mon, 7 Aug 2006 22:10:35 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: Re: how we can change the title bar color In-Reply-To: <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> <1154953245.15368.4.camel@localhost.localdomain> <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.274 tagged_above=-999 required=2 tests=[AWL=0.165, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.274 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 05:10:38 -0000 i working with glade+gtk and i wnat to change the tilte bar of a single window. thanks for u r reply. sree. -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5700555 Sent from the Gtk+ - General forum at Nabble.com. From lists@nabble.com Tue Aug 8 02:11:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D26E83B0CF0 for ; Tue, 8 Aug 2006 02:11:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06090-05 for ; Tue, 8 Aug 2006 02:11:21 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id EA8C23B0DB8 for ; Tue, 8 Aug 2006 02:11:09 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GAKo1-0005Xn-Jj for gtk-list@gnome.org; Mon, 07 Aug 2006 23:11:09 -0700 Message-ID: <5700973.post@talk.nabble.com> Date: Mon, 7 Aug 2006 23:11:09 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we can run wav files in Gtk MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.531 tagged_above=-999 required=2 tests=[AWL=-0.581, BAYES_05=-1.11, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.531 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 06:11:24 -0000 i ahve to run a wav file in gtk. means for example if u click any button it should play some songs . sree -- View this message in context: http://www.nabble.com/how-we-can-run-wav-files-in-Gtk-tf2070786.html#a5700973 Sent from the Gtk+ - General forum at Nabble.com. From yeti@physics.muni.cz Tue Aug 8 03:08:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7934D3B0DD9 for ; Tue, 8 Aug 2006 03:08:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08172-10 for ; Tue, 8 Aug 2006 03:08:09 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 1AD743B0DF1 for ; Tue, 8 Aug 2006 03:08:08 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k78786ul006457 for ; Tue, 8 Aug 2006 09:08:07 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 01DCB23D9A; Tue, 8 Aug 2006 09:08:06 +0200 (CEST) Date: Tue, 8 Aug 2006 09:08:06 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: how we can run wav files in Gtk Message-ID: <20060808070806.GD5553@potato.chello.upc.cz> References: <5700973.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5700973.post@talk.nabble.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.812 tagged_above=-999 required=2 tests=[AWL=-0.702, BAYES_05=-1.11] X-Spam-Score: -1.812 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 07:08:10 -0000 On Mon, Aug 07, 2006 at 11:11:09PM -0700, cnu_sree wrote: > > i ahve to run a wav file in gtk. http://catb.org/~esr/faqs/smart-questions.html#id265951 Yeti -- Anonyms eat their boogers. From ibr@radix50.net Tue Aug 8 04:39:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 035EF3B0E3A for ; Tue, 8 Aug 2006 04:39:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12947-05 for ; Tue, 8 Aug 2006 04:39:45 -0400 (EDT) Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by menubar.gnome.org (Postfix) with ESMTP id 88BD63B0DF6 for ; Tue, 8 Aug 2006 04:39:44 -0400 (EDT) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 665A3236A32; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 56F4CCE647; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-004-078.pools.arcor-ip.net [88.64.4.78]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 1474819D567; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k788dDMM013980; Tue, 8 Aug 2006 10:39:13 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k788dDeP013979; Tue, 8 Aug 2006 10:39:13 +0200 Date: Tue, 8 Aug 2006 10:39:13 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060808083913.GA11899@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> <20060807171647.GF4137@radix50.net> <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> <20060807202044.GH4137@radix50.net> <1dd596080608080122p21d5abddk1339e363d9638f3c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608080122p21d5abddk1339e363d9638f3c@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.173 tagged_above=-999 required=2 tests=[AWL=0.291, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.173 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 08:39:48 -0000 Harsha, please spend two minutes and subscribe to the list. I won't answer further private e-mails. On Tue, Aug 08, 2006 at 02:22:52AM -0600, harshavardhanreddy mandeepala wrote: > >1. Type "file libglib-2.0.so.0.400.7". Press Enter. > A. ibglib-2.0.so.0.400.7: ELF 32-bit LSB shared object, Intel 80386, > version 1 (SYSV), not stripped > So it is not cross compiled. > > >2. Paste the command output to the list. > What does it mean? > Can u tell me the steps how to cross compile it for my ARM processor.I > am stuck here.If u provide the steps that will be very helpful to me. The steps are provided in your first e-mail. You need to build with CC set, I don't know why. You have the problem that configure can't start the binary. 1. What version of glib are you using? 2. Copy the output of the configure command and send it to the list. With kind regards, Baurzhan. From gnome-gtk-list@m.gmane.org Tue Aug 8 05:40:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F59C3B0005 for ; Tue, 8 Aug 2006 05:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15726-03 for ; Tue, 8 Aug 2006 05:40:19 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id CAFAC3B0010 for ; Tue, 8 Aug 2006 05:40:18 -0400 (EDT) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1GAO4A-00021S-A0 for gtk-list@gnome.org; Tue, 08 Aug 2006 11:40:02 +0200 Received: from h73.244.159.dialup.iptcom.net ([213.159.244.73]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 08 Aug 2006 11:40:02 +0200 Received: from kv11111 by h73.244.159.dialup.iptcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 08 Aug 2006 11:40:02 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Vladimir Subject: Threads, sockets and windows Date: Mon, 07 Aug 2006 21:44:06 +0300 Organization: MIPT Lines: 18 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: h73.244.159.dialup.iptcom.net User-Agent: KNode/0.10.2 Sender: news X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.354 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DATE_IN_PAST_12_24=1.247, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.354 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 09:40:20 -0000 Hello, I'm trying to write two-threaded program: one thread for GUI and the other for network. The network thread needs to poll network socket and to receive messages from the GUI thread (such as commands to send something to network or to disconnect). I've used pipe for commands, so in the network thread I can simply poll() network socket and pipe together. But on windows there is no poll() function. Of course I can use g_async_queue, but doing so I can't poll queue and network socket simultaneously. Are there any method to poll g_async_queue and network socket or pipe and network socket on windows simultaneously ? Or may be, is there something in the GTK/Glib for this kind of situations ? -- Vladimir From tml@iki.fi Tue Aug 8 06:10:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F3FF83B000D for ; Tue, 8 Aug 2006 06:10:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17236-04 for ; Tue, 8 Aug 2006 06:10:14 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id B37593B0011 for ; Tue, 8 Aug 2006 06:10:13 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id CA54B2164FA for ; Tue, 8 Aug 2006 13:10:11 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17624.25275.921000.427269@gargle.gargle.HOWL> Date: Tue, 8 Aug 2006 13:08:59 +0300 To: gtk-list@gnome.org Subject: Re: gtk In-Reply-To: <000d01c6ba48$0a1fb6a0$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6ba48$0a1fb6a0$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:10:17 -0000 Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > now I'm running the old 2.2 kernel but I have the source to compile the > 2.6.17 kernel. I'll let somebody else answer... --tml From hvreddy1110@gmail.com Tue Aug 8 06:23:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 105693B0011 for ; Tue, 8 Aug 2006 06:23:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18052-02 for ; Tue, 8 Aug 2006 06:23:43 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by menubar.gnome.org (Postfix) with ESMTP id 0FFAE3B0005 for ; Tue, 8 Aug 2006 06:23:43 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so451676pyg for ; Tue, 08 Aug 2006 03:23:42 -0700 (PDT) Received: by 10.35.98.6 with SMTP id a6mr14342936pym; Tue, 08 Aug 2006 03:23:42 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Tue, 8 Aug 2006 03:23:42 -0700 (PDT) Message-ID: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> Date: Tue, 8 Aug 2006 04:23:42 -0600 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: glib cross compilation error MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.742 tagged_above=-999 required=2 tests=[AWL=0.658, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.742 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:23:47 -0000 Hi , I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. I configured using the following configure command. ./configure --cache-file=arm-linux.cache --host=arm-linux CC=/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc I have cross compiled libraries for arm processor in the .../arm-linux/bin directory. but it has given the following error message. configure: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used. configure: loading cache arm-linux.cache checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for arm-linux-strip... no checking for strip... strip checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... i686-pc-linux-gnu checking host system type... arm-unknown-linux-gnu checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for arm-linux-gcc... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... yes checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc accepts -g... yes checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc... gcc3 checking for c++... c++ checking for arm-linux-g++... (cached) c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... 64 checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /usr/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... no checking for perl... perl checking for indent... indent checking for perl... /usr/bin/perl checking for iconv_open... yes checking how to run the C preprocessor... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... /usr/bin/msgfmt checking for dcgettext... yes checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... no checking for catalogs to be installed... am ar az be bg bn bs ca cs cy da de el en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hr id is it ja ko lt lv mk mn ms nb ne nl nn no or pa pl pt pt_BR ro ru sk sl sq sr sr@ije sr@Latn sv ta tr uk vi wa yi zh_CN zh_TW checking for a sed that does not truncate output... /usr/bin/sed checking for ld used by /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld checking if the linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) is GNU ld... yes checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld option to reload object files... -r checking for BSD-compatible nm... nm checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking how to run the C++ preprocessor... c++ -E checking for arm-linux-g77... no checking for arm-linux-f77... no checking for arm-linux-xlf... no checking for arm-linux-frt... no checking for arm-linux-pgf77... no checking for arm-linux-fort77... no checking for arm-linux-fl32... no checking for arm-linux-af77... no checking for arm-linux-f90... no checking for arm-linux-xlf90... no checking for arm-linux-pgf90... no checking for arm-linux-epcf90... no checking for arm-linux-f95... no checking for arm-linux-fort... no checking for arm-linux-xlf95... no checking for arm-linux-ifc... no checking for arm-linux-efc... no checking for arm-linux-pgf95... no checking for arm-linux-lf95... no checking for arm-linux-gfortran... no checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for epcf90... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for gfortran... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse nm output from /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc object... ok checking for objdir... .libs checking for arm-linux-ar... no checking for ar... ar checking for arm-linux-ranlib... no checking for ranlib... ranlib checking for arm-linux-strip... strip checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc static flag works... yes checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc supports -fno-rtti -fno-exceptions... no checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to produce PIC... -fPIC checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc PIC flag -fPIC works... yes checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc supports -c -o file.o... yes checking whether the /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld checking if the linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) is GNU ld... yes checking whether the c++ linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes appending configuration tag "F77" to libtool checking for extra flags for POSIX compliance... none needed checking for ANSI C header files... (cached) yes checking for vprintf... yes checking for _doprnt... no checking for working alloca.h... yes checking for alloca... yes checking for atexit... yes checking for on_exit... yes checking for char... yes checking size of char... 1 checking for short... yes checking size of short... 2 checking for long... yes checking size of long... 4 checking for int... yes checking size of int... 4 checking for void *... yes checking size of void *... 4 checking for long long... yes checking size of long long... 8 checking for __int64... no checking size of __int64... 0 checking for format to printf and scanf a guint64... (cached) %llu checking for an ANSI C-conforming const... yes checking if malloc() and friends prototypes are gmem.h compatible... yes checking for growing stack pointer... (cached) no checking for __inline... yes checking for __inline__... yes checking for inline... yes checking for ISO C99 varargs macros in C... yes checking for ISO C99 varargs macros in C++... yes checking for GNUC varargs macros... yes checking whether byte ordering is bigendian... no checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/poll.h usability... yes checking sys/poll.h presence... yes checking for sys/poll.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for sys/types.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/times.h usability... yes checking sys/times.h presence... yes checking for sys/times.h... yes checking for unistd.h... (cached) yes checking values.h usability... yes checking values.h presence... yes checking for values.h... yes checking for stdint.h... (cached) yes checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking langinfo.h usability... yes checking langinfo.h presence... yes checking for langinfo.h... yes checking for nl_langinfo... yes checking for nl_langinfo and CODESET... yes checking whether we are using the GNU C Library 2.1 or newer... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for setlocale... yes checking for size_t... yes checking size of size_t... 4 checking for the appropriate definition for size_t... unsigned int checking for lstat... yes checking for strerror... yes checking for strsignal... yes checking for memmove... yes checking for mkstemp... yes checking for vsnprintf... yes checking for stpcpy... yes checking for strcasecmp... yes checking for strncasecmp... yes checking for poll... yes checking for getcwd... yes checking for nanosleep... yes checking for vasprintf... yes checking for setenv... yes checking for unsetenv... yes checking for getc_unlocked... yes checking for readlink... yes checking for symlink... yes checking for C99 vsnprintf... no checking whether printf supports positional parameters... no checking for signed... yes checking for long long... (cached) yes checking for long double... yes checking for wchar_t... yes checking for wint_t... yes checking for size_t... (cached) yes checking for ptrdiff_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for snprintf... yes checking for C99 snprintf... no checking for sys_errlist... yes checking for sys_siglist... yes checking for sys_siglist declaration... yes checking for fd_set... yes, found in sys/types.h checking whether realloc (NULL,) will work... yes checking for nl_langinfo (CODESET)... yes checking for OpenBSD strlcpy/strlcat... no checking for an implementation of va_copy()... yes checking for an implementation of __va_copy()... yes checking whether va_lists can be copied by value... yes checking for dlopen... no checking for NSLinkModule... no checking for dlopen in -ldl... yes checking for dlsym in -ldl... yes checking for RTLD_GLOBAL brokenness... no checking for preceeding underscore in symbols... configure: error: cannot run test program while cross compiling See `config.log' for more details. Any idea why it is not compiling? Thanks in advance. Regards, Harsha From billcu1@verizon.net Tue Aug 8 06:42:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71E033B0002 for ; Tue, 8 Aug 2006 06:42:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18798-05 for ; Tue, 8 Aug 2006 06:42:26 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id A99353B0080 for ; Tue, 8 Aug 2006 06:42:26 -0400 (EDT) Received: from win98 ([71.251.252.138]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3O00A36DQG98IL@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 08 Aug 2006 05:42:17 -0500 (CDT) Date: Tue, 08 Aug 2006 06:40:57 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <001701c6bad7$228033c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.892 tagged_above=-999 required=2 tests=[AWL=0.093, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.892 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:42:29 -0000 Sorry. I just hit reply. Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > now I'm running the old 2.2 kernel but I have the source to compile the > 2.6.17 kernel. I'll let somebody else answer... --tml _______________________________________________ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list From sergstesh@yahoo.com Tue Aug 8 07:44:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6F01B3B0005 for ; Tue, 8 Aug 2006 07:44:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21754-05 for ; Tue, 8 Aug 2006 07:44:33 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 3F04A3B0002 for ; Tue, 8 Aug 2006 07:44:33 -0400 (EDT) Received: (qmail 4490 invoked by uid 60001); 8 Aug 2006 11:44:32 -0000 Message-ID: <20060808114432.4488.qmail@web35212.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35212.mail.mud.yahoo.com via HTTP; Tue, 08 Aug 2006 04:44:32 PDT Date: Tue, 8 Aug 2006 04:44:32 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Tor Lillqvist , gtk-list@gnome.org In-Reply-To: <17624.25275.921000.427269@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.639 tagged_above=-999 required=2 tests=[AWL=-1.549, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_LQ=0.077] X-Spam-Score: -0.639 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 11:44:34 -0000 --- Tor Lillqvist wrote: > Bill Cunningham writes, again in a personal mail to me, despite being > asked to keep this discussion on the list: > > i686 Rh linux 7.0 without any special package groups installed because > > I install everything from scratch. I have the Xfree 86 binaries and right > > now I'm running the old 2.2 kernel but I have the source to compile the > > 2.6.17 kernel. > > I'll let somebody else answer... > > --tml > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > "I install everything from scratch", "I'll let somebody else answer..." - :-) - visit my project - see signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From fnaumann@boerde.de Tue Aug 8 07:56:15 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBBB3B00F0 for ; Tue, 8 Aug 2006 07:56:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22422-06 for ; Tue, 8 Aug 2006 07:56:13 -0400 (EDT) Received: from mail.uni-magdeburg.de (mail.uni-magdeburg.de [141.44.1.10]) by menubar.gnome.org (Postfix) with ESMTP id 3AAE03B000D for ; Tue, 8 Aug 2006 07:56:13 -0400 (EDT) Received: from wh58-508.st.uni-magdeburg.de ([141.44.198.58]) by mail.uni-magdeburg.de with esmtp (EXIM Version 4.62) id 1GAQBs-0006wm-3Z; Tue, 08 Aug 2006 13:56:12 +0200 Date: Tue, 8 Aug 2006 13:56:03 +0200 (CEST) From: Frank Naumann X-X-Sender: fnaumann@wh58-508.st.uni-magdeburg.de To: Vladimir Subject: Re: Threads, sockets and windows In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scan-Signature: fc25c1e7842d1e3cee0362d8cda57710 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.523 tagged_above=-999 required=2 tests=[AWL=0.076, BAYES_00=-2.599] X-Spam-Score: -2.523 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 11:56:15 -0000 Hello! > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. Under Window you can use select(). For myself I've written for Win32 a poll() function that internally use select() (so the code remains clean and portable). Regards, Frank From armin@arbur.net Tue Aug 8 08:03:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C3D533B000D for ; Tue, 8 Aug 2006 08:03:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22497-10 for ; Tue, 8 Aug 2006 08:03:48 -0400 (EDT) Received: from dd1222.kasserver.com (dd1222.kasserver.com [81.209.148.151]) by menubar.gnome.org (Postfix) with ESMTP id 80C4B3B00AC for ; Tue, 8 Aug 2006 08:03:47 -0400 (EDT) Received: from iroquois.wlan (pD9E39B21.dip.t-dialin.net [217.227.155.33]) by dd1222.kasserver.com (Postfix) with ESMTP id 8FA0B172D73; Tue, 8 Aug 2006 14:03:41 +0200 (CEST) Subject: Re: Threads, sockets and windows From: Armin Burgmeier To: Frank Naumann In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Hf4SUNZYDMLmz60XQ2nF" Date: Tue, 08 Aug 2006 14:03:31 +0200 Message-Id: <1155038611.8194.6.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: Vladimir , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:03:51 -0000 --=-Hf4SUNZYDMLmz60XQ2nF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable > > But on windows there is no poll() function. Of course I can use > > g_async_queue, but doing so I can't poll queue and network socket > > simultaneously. >=20 > Under Window you can use select(). For myself I've written for Win32 a=20 > poll() function that internally use select() (so the code remains clean=20 > and portable). (Whoops. I should have pressed reply to all. Sorry for the inconvenience, Frank.) The Windows select() function only works for sockets. One cannot give it a regular file descriptor (like a pipe). Note that sockets are no file descriptors on windows. --=-Hf4SUNZYDMLmz60XQ2nF Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2H2ThOtxKlDYm6cRAi5AAJ42AHu08XT+RFqNAVh0JgRy76JawACeKYyv TcVFPx7xBPgGlGeGEvZMf1w= =rueU -----END PGP SIGNATURE----- --=-Hf4SUNZYDMLmz60XQ2nF-- From ibr@radix50.net Tue Aug 8 08:06:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BCAB13B0096 for ; Tue, 8 Aug 2006 08:06:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22526-09 for ; Tue, 8 Aug 2006 08:06:31 -0400 (EDT) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by menubar.gnome.org (Postfix) with ESMTP id 45A993B008A for ; Tue, 8 Aug 2006 08:06:30 -0400 (EDT) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 49E5F18B7A9 for ; Tue, 8 Aug 2006 14:06:29 +0200 (CEST) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 3B8D7CBED6 for ; Tue, 8 Aug 2006 14:06:29 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-004-078.pools.arcor-ip.net [88.64.4.78]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id DE01326D827 for ; Tue, 8 Aug 2006 14:06:28 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k78C5xLj019755 for ; Tue, 8 Aug 2006 14:05:59 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k78C5xAN019754 for gtk-list@gnome.org; Tue, 8 Aug 2006 14:05:59 +0200 Date: Tue, 8 Aug 2006 14:05:59 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: glib cross compilation error Message-ID: <20060808120559.GB11899@radix50.net> References: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.19 tagged_above=-999 required=2 tests=[AWL=0.274, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.19 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:06:33 -0000 On Tue, Aug 08, 2006 at 04:23:42AM -0600, harshavardhanreddy mandeepala wrote: > I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. Any reason for not using a more recent version? > checking for preceeding underscore in symbols... configure: error: > cannot run test program while cross compiling > See `config.log' for more details. > > Any idea why it is not compiling? Try setting glib_cv_uscore=no in your cache file. With kind regards, Baurzhan. From armin@arbur.net Tue Aug 8 08:17:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F5693B0018 for ; Tue, 8 Aug 2006 08:17:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23906-03 for ; Tue, 8 Aug 2006 08:17:47 -0400 (EDT) Received: from dd1222.kasserver.com (dd1222.kasserver.com [81.209.148.151]) by menubar.gnome.org (Postfix) with ESMTP id 753D43B0084 for ; Tue, 8 Aug 2006 08:17:47 -0400 (EDT) Received: from iroquois.wlan (pD9E39B21.dip.t-dialin.net [217.227.155.33]) by dd1222.kasserver.com (Postfix) with ESMTP id 39B41171F4E; Tue, 8 Aug 2006 14:17:46 +0200 (CEST) Subject: Re: Threads, sockets and windows From: Armin Burgmeier To: Vladimir In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-yVu7pXDJDxE0ZFfEM1zE" Date: Tue, 08 Aug 2006 14:17:35 +0200 Message-Id: <1155039455.8194.15.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:17:48 -0000 --=-yVu7pXDJDxE0ZFfEM1zE Content-Type: text/plain Content-Transfer-Encoding: quoted-printable > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. You can associate WSAEvents to your socket via WSAEventSelect and then wait for the events to become signaled using WSAWaitForMultipleObjects. Using a further event may be used to signal that new data is available in the g_async_queue. Extended documentation to the mentioned functions is available in the MSDN (http://msdn.microsoft.com). A probably better approach would be to let glib poll your sockets via creating GIOChannels and using g_io_add_watch to watch for events to occur. This way, you could get completely rid of an extra networking thread. --=-yVu7pXDJDxE0ZFfEM1zE Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2IDfhOtxKlDYm6cRArS9AJ9xg5sAsRaJOqENcIo+TFXnxomLowCfZYqz X0xYKj03MIADrN+JIOzah0o= =kr4S -----END PGP SIGNATURE----- --=-yVu7pXDJDxE0ZFfEM1zE-- From fnaumann@boerde.de Tue Aug 8 08:31:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 61CEF3B0125 for ; Tue, 8 Aug 2006 08:31:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24528-03 for ; Tue, 8 Aug 2006 08:31:01 -0400 (EDT) Received: from mail.uni-magdeburg.de (mail.uni-magdeburg.de [141.44.1.10]) by menubar.gnome.org (Postfix) with ESMTP id 50B1E3B00F3 for ; Tue, 8 Aug 2006 08:31:01 -0400 (EDT) Received: from wh58-508.st.uni-magdeburg.de ([141.44.198.58]) by mail.uni-magdeburg.de with esmtp (EXIM Version 4.62) id 1GAQja-0000xZ-QS; Tue, 08 Aug 2006 14:31:00 +0200 Date: Tue, 8 Aug 2006 14:30:58 +0200 (CEST) From: Frank Naumann X-X-Sender: fnaumann@wh58-508.st.uni-magdeburg.de To: Armin Burgmeier Subject: Re: Threads, sockets and windows In-Reply-To: <1155038611.8194.6.camel@localhost> Message-ID: References: <1155038611.8194.6.camel@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scan-Signature: a6013c0e33abd25698719c75475606ab X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599] X-Spam-Score: -2.524 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:31:02 -0000 Hello! >> Under Window you can use select(). For myself I've written for Win32 a >> poll() function that internally use select() (so the code remains clean >> and portable). > (Whoops. I should have pressed reply to all. Sorry for the > inconvenience, Frank.) No problem. > The Windows select() function only works for sockets. One cannot give it > a regular file descriptor (like a pipe). Note that sockets are no file > descriptors on windows. Yes, right. I overseen the pipe. Regards, Frank From hvreddy1110@gmail.com Tue Aug 8 09:00:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EF5D33B00F0 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26078-01 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by menubar.gnome.org (Postfix) with ESMTP id 20F363B00E7 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so501676pyg for ; Tue, 08 Aug 2006 06:00:24 -0700 (PDT) Received: by 10.35.126.7 with SMTP id d7mr14616700pyn; Tue, 08 Aug 2006 06:00:24 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Tue, 8 Aug 2006 06:00:24 -0700 (PDT) Message-ID: <1dd596080608080600g28a40b80p3a0d2b2eb7a98312@mail.gmail.com> Date: Tue, 8 Aug 2006 07:00:24 -0600 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Re.Glib compilation problem MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.93 tagged_above=-999 required=2 tests=[AWL=0.470, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.93 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:00:28 -0000 Hi, Finally i cross compiled glib successfully. Thanks to every body. Regards Harsha From mekstran@scl.ameslab.gov Tue Aug 8 09:27:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F6353B0114 for ; Tue, 8 Aug 2006 09:27:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27084-08 for ; Tue, 8 Aug 2006 09:27:05 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 9D2203B0084 for ; Tue, 8 Aug 2006 09:27:05 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 08:27:05 -0500 id 000677BA.44D89129.00000A79 To: Bill Cunningham Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Resent-Date: Tue, 8 Aug 2006 08:26:34 -0500 Message-Id: <4D8F5EE8-2A69-4736-9E16-1902751005A1@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: gtk Resent-From: Michael Ekstrand Resent-Message-Id: Date: Tue, 8 Aug 2006 08:24:34 -0500 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.383 tagged_above=-999 required=2 tests=[AWL=-0.015, BAYES_00=-2.599, TW_GT=0.077, TW_LQ=0.077, TW_TK=0.077] X-Spam-Score: -2.383 X-Spam-Level: Cc: gtkmm-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:27:06 -0000 On Aug 7, 2006, at 11:35 AM, Tor Lillqvist wrote: > Bill Cunningham writes: >> pkg-config doesn't help me much. I'm not quite sure how to use it. I >> know there is the PKG_CONFIG variable. Do you set that in >> bash_profile ? I >> must confess I can't figure out how to use the package. You don't really use pkg-config directly; the configure scripts for what you're installing use it. You merely provide some external direction for it. Basic idea: packages provided pkg-config files (for example, gtk +-2.0.pc). These files tell pkg-config how to tell the build system for another package how to build and link against the first package. Now, to find those files, pkg-config must know where they are. They're installed to $PREFIX/pkgconfig by packages. So, if glib is installed in /opt/gtk2, and you want to link GTK against that glib, you'd run GTK's configure script like so: $ PKG_CONFIG_PATH="/opt/gtk2/lib/pkgconfig:$PKG_CONFIG_PATH" ./ configure thereby setting the environment variable on the command line. Optionally, you can set it in your .bashrc, .bash_profile, or whatever the initialization script for your shell is. - Michael P.S. Hit Reply to All rather than Reply to keep the discussion on the list and avoid the problem Tor's brought to your attention. _______________________________________________ gtkmm-list mailing list gtkmm-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtkmm-list From johannes_vuori@web.de Tue Aug 8 09:41:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 898363B008A for ; Tue, 8 Aug 2006 09:41:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27766-09 for ; Tue, 8 Aug 2006 09:41:25 -0400 (EDT) Received: from fmmailgate05.web.de (fmmailgate05.web.de [217.72.192.243]) by menubar.gnome.org (Postfix) with ESMTP id DFC803B02A3 for ; Tue, 8 Aug 2006 09:41:10 -0400 (EDT) Reveived: from web.de by fmmailgate05.web.de (Postfix) with SMTP id AAFB310D3AE for ; Tue, 8 Aug 2006 15:41:09 +0200 (CEST) Received: from [85.156.188.122] by freemailng1802.web.de with HTTP; Tue, 08 Aug 2006 15:41:07 +0200 Date: Tue, 08 Aug 2006 15:41:07 +0200 Message-Id: <902259177@web.de> MIME-Version: 1.0 From: johannes_vuori@web.de To: gtk-list@gnome.org Subject: Problem installing Precedence: fm-user Organization: http://freemail.web.de/ Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.456 tagged_above=-999 required=2 tests=[AWL=0.028, BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_DK=0.077, TW_GD=0.077] X-Spam-Score: -1.456 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:41:27 -0000 Hi, I am trying to install the gtk+ library. The configure file runs nicely, and also the makefile - for a minute. Till this comes: #################################################################################################### gcc -DHAVE_CONFIG_H -I. -I. -I../.. -DG_LOG_DOMAIN=\"Gdk\" -DGDK_COMPILATION -I../.. -I../../gdk -I../../gdk -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_CAST_CHECKS -pthread -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pango-1.0 -I/usr/local/include/cairo -I/usr/X11R6/include -I/usr/X11R6/include -g -O2 -Wall -MT gdkdrawable-x11.lo -MD -MP -MF .deps/gdkdrawable-x11.Tpo -c gdkdrawable-x11.c -fPIC -DPIC -o .libs/gdkdrawable-x11.o In file included from /usr/local/include/pango-1.0/pango/pangofc-font.h:25, from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/include/ft2build.h:56:38: freetype/config/ftheader.h: No such file or directory In file included from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangofc-font.h:26:10: #include expects "FILENAME" or In file included from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangofc-font.h:147: error: syntax error before "pango_fc_font_lock_face" /usr/local/include/pango-1.0/pango/pangofc-font.h:147: warning: type defaults to `int' in declaration of `pango_fc_font_lock_face' /usr/local/include/pango-1.0/pango/pangofc-font.h:147: warning: data definition has no type or storage class In file included from /usr/local/include/pango-1.0/pango/pangoxft-render.h:31, from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/X11R6/include/X11/Xft/Xft.h:41:10: #include expects "FILENAME" or In file included from /usr/local/include/pango-1.0/pango/pangoxft-render.h:31, from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/X11R6/include/X11/Xft/Xft.h:64: error: syntax error before "_XftFTlibrary" /usr/X11R6/include/X11/Xft/Xft.h:64: warning: type defaults to `int' in declaration of `_XftFTlibrary' /usr/X11R6/include/X11/Xft/Xft.h:64: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:98: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:98: warning: no semicolon at end of struct or union /usr/X11R6/include/X11/Xft/Xft.h:101: error: syntax error before '}' token /usr/X11R6/include/X11/Xft/Xft.h:101: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:101: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:105: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:105: warning: no semicolon at end of struct or union /usr/X11R6/include/X11/Xft/Xft.h:108: error: syntax error before '}' token /usr/X11R6/include/X11/Xft/Xft.h:108: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:108: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:202: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:202: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:268: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:268: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:274: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:274: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:307: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:307: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:366: error: syntax error before "XftLockFace" /usr/X11R6/include/X11/Xft/Xft.h:366: warning: type defaults to `int' in declaration of `XftLockFace' /usr/X11R6/include/X11/Xft/Xft.h:366: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:405: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:405: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:411: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:411: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:420: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:430: error: syntax error before "XftCharIndex" /usr/X11R6/include/X11/Xft/Xft.h:432: warning: type defaults to `int' in declaration of `XftCharIndex' /usr/X11R6/include/X11/Xft/Xft.h:432: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:473: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:473: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:484: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:484: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:505: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:505: error: syntax error before '*' token In file included from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangoxft-render.h:94: error: syntax error before "XftGlyphSpec" make[4]: *** [gdkdrawable-x11.lo] Error 1 make[4]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk/x11' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk' make: *** [all] Error 2 #########################################################################################3 Sorry that this I can't say more to this, but hopefully somebody can help me. Johannes P.S: I have the file ftheader.h in freetype2/freetype/config/ P.S.S: I tried sending the same e-mail when I wasn't yet suscribed a week or two ago already. After waiting for some time, I decided to subscribe to the list and try again. _____________________________________________________________________ Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! http://smartsurfer.web.de/?mc=100071&distributionid=000000000071 From tml@iki.fi Tue Aug 8 09:52:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B43963B0018 for ; Tue, 8 Aug 2006 09:52:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28397-04 for ; Tue, 8 Aug 2006 09:52:24 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 04C5B3B000D for ; Tue, 8 Aug 2006 09:52:22 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id C1716216278 for ; Tue, 8 Aug 2006 16:52:19 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17624.38603.671000.937545@gargle.gargle.HOWL> Date: Tue, 8 Aug 2006 16:51:07 +0300 To: gtk-list@gnome.org Subject: Re: Threads, sockets and windows In-Reply-To: <1155039455.8194.15.camel@localhost> References: <1155039455.8194.15.camel@localhost> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:52:25 -0000 Armin Burgmeier writes: > A probably better approach would be to let glib poll your sockets via > creating GIOChannels and using g_io_add_watch to watch for events to > occur. Yep, and this then will in fact use the WSAEventSelect mechanism on Windows. (In GLib >= 2.8) Please note, though, that there are slight differences in semantic details when watching socket events using GLib on Unix vs Windows. For instance watched sockets automatically become non-blocking on Windows. (This is a side-effect of using the WSAEventSelect mechanism.) Code that works (at least most of the time...) on Linux doesn't necessarily work on Windows, and vice versa. It's best to test continuously on both platforms during development, and not just attempty a port to Windows after having done all the coding and design decisions. If I recall correctly, one good rule of thumb is to read as much can from a GIOChannel when you get the callback that it is readable, until you get G_IO_STATUS_AGAIN. And, use the GIOChannel API to read/write from them, don't use read()/write()/send()/recv() directly. (Especially so as read()/write() don't work on sockets in Windows, they work only on the "file descriptors" returbned by open().) --tml From lists@nabble.com Tue Aug 8 10:10:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D96803B0236 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29346-05 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0E6B33B01C0 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GASI7-0001H9-Hq for gtk-list@gnome.org; Tue, 08 Aug 2006 07:10:43 -0700 Message-ID: <5707260.post@talk.nabble.com> Date: Tue, 8 Aug 2006 07:10:43 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding sound files MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.523 tagged_above=-999 required=2 tests=[AWL=-0.573, BAYES_05=-1.11, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.523 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 14:10:46 -0000 is there any way to play a sound file using Gtk. is there any class in Gtk for this task. thank u, sree. -- View this message in context: http://www.nabble.com/regarding-sound-files-tf2072925.html#a5707260 Sent from the Gtk+ - General forum at Nabble.com. From mekstran@scl.ameslab.gov Tue Aug 8 14:12:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB1643B0102 for ; Tue, 8 Aug 2006 14:12:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08541-06 for ; Tue, 8 Aug 2006 14:12:37 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 72F353B02F3 for ; Tue, 8 Aug 2006 14:12:37 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 13:12:36 -0500 id 0000C03F.44D8D414.00003AEF In-Reply-To: <5707260.post@talk.nabble.com> References: <5707260.post@talk.nabble.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: regarding sound files Date: Tue, 8 Aug 2006 13:12:05 -0500 To: cnu_sree X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.493 tagged_above=-999 required=2 tests=[AWL=0.106, BAYES_00=-2.599] X-Spam-Score: -2.493 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 18:12:39 -0000 On Aug 8, 2006, at 9:10 AM, cnu_sree wrote: > is there any way to play a sound file using Gtk. > is there any class in Gtk for this task. Not in GTK directly. You'll need another sound library (such as esound, the alsa libraries, gstreamer, or SDL if you want more cross- platform support). GStreamer uses glib, so it should integrate well with your GTK program (haven't used it myself though). - Michael From mekstran@scl.ameslab.gov Tue Aug 8 15:59:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2FC8B3B0382 for ; Tue, 8 Aug 2006 15:59:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13310-08 for ; Tue, 8 Aug 2006 15:59:38 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 50B523B02FE for ; Tue, 8 Aug 2006 15:59:38 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 14:59:37 -0500 id 0000C03F.44D8ED29.00004B0A In-Reply-To: <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6baf8$fda14c20$2f01a8c0@myhome.westell.com> <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <3CBD176D-5F7F-4E51-8B60-6E292C00442E@scl.ameslab.gov> Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: gtk Date: Tue, 8 Aug 2006 14:59:07 -0500 To: Bill Cunningham , gtk-list@gnome.org X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.378 tagged_above=-999 required=2 tests=[AWL=-0.010, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077, TW_XX=0.077] X-Spam-Score: -2.378 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 19:59:39 -0000 OK, after enough cross-posting madness due to my silly mistake earlier (mailing gtkmm-list rather than gtk-list), hopefully this will put this thread back where it belongs. On Aug 8, 2006, at 2:53 PM, Michael Ekstrand wrote: > On Aug 8, 2006, at 9:43 AM, Bill Cunningham wrote: >> Ok I used reply all this time. :) The options at compile time >> that I >> ususally use is really only --prefix=/usr maybe some other switches >> with --x-includes if that option is available. I tried compiling >> all this >> stuff without XFree and I don't think it worked because I'm >> assuming XFree >> provides frame buffer support. I want to compile xxms and firefox >> and maybe >> work on some basic packages of the gnome desktop. > > A few things: one, you do need to build with XFree - otherwise it > won't do anything useful. Also, installing to /usr is stepping on > your distro's domain, and quite susceptible to problems. Installing > to /usr/local puts stuff in a location the distro has actually > reserved (or should reserve) for you to use for your own software. > > IIRC, XMMS uses GTK 1.2. You'll need to install that separately. > beep-media-player is based on the XMMS source code and does use GTK2 > though. > > If you install pkg-config and all the glib/gtk stuff to the same > prefix, as long as pkg-config is in your PATH, you won't have any > problems with needing to set PKG_CONFIG_PATH (unless you somehow > override the default pkg-config search path. > > - Michael > _______________________________________________ > gtkmm-list mailing list > gtkmm-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtkmm-list From ben@benjohnson.net Tue Aug 8 17:35:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7EC373B00A2 for ; Tue, 8 Aug 2006 17:35:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18142-02 for ; Tue, 8 Aug 2006 17:35:07 -0400 (EDT) Received: from server016.dfw.nationwide.net (server016.dfw.nationwide.net [206.123.129.79]) by menubar.gnome.org (Postfix) with SMTP id 0A2EA3B011D for ; Tue, 8 Aug 2006 17:35:07 -0400 (EDT) Received: (qmail 23344 invoked from network); 8 Aug 2006 21:30:10 -0000 Received: from sense-sea-megasub-1-814.oz.net (HELO rose) (216.39.170.53) by 206.123.129.9 with SMTP; Tue, 08 Aug 2006 21:30:10 +0000 Received: from localhost (localhost [127.0.0.1]) by rose (Postfix) with ESMTP id 0D688E4081 for ; Tue, 8 Aug 2006 14:35:03 -0700 (PDT) Received: from rose ([127.0.0.1]) by localhost (rose [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03428-08 for ; Tue, 8 Aug 2006 14:35:02 -0700 (PDT) Received: by rose (Postfix, from userid 1000) id B870EE4084; Tue, 8 Aug 2006 14:35:02 -0700 (PDT) Date: Tue, 8 Aug 2006 14:35:02 -0700 From: Anna To: gtk-list@gnome.org Subject: Re: Threads, sockets and windows Message-ID: <20060808213502.GI20651@rose.benjohnson.net> Mail-Followup-To: Anna , gtk-list@gnome.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at benjohnson.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 21:35:08 -0000 On Mon, Aug 07, 2006 at 09:44:06PM +0300, Vladimir wrote: > Hello, > > I'm trying to write two-threaded program: one thread for GUI and the other > for network. The network thread needs to poll network socket and to receive > messages from the GUI thread (such as commands to send something to network > or to disconnect). I've used pipe for commands, so in the network thread I > can simply poll() network socket and pipe together. > > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. > > Are there any method to poll g_async_queue and network socket or pipe and > network socket on windows simultaneously ? Or may be, is there something in > the GTK/Glib for this kind of situations ? look into GNet: http://www.gnetlibrary.org/ It uses g_io_ stuff, so it's easy to do asynch io with it, and gnet makes setting up sockets pretty simple. I haven't used it on windows, but it has been ported. I imaging it should work. Added plus: you don't need threads. - Anna From besfahbo@redhat.com Tue Aug 8 20:55:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 18F0E3B05AE; Tue, 8 Aug 2006 20:55:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25592-04; Tue, 8 Aug 2006 20:55:47 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 160163B0493; Tue, 8 Aug 2006 20:55:47 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k790tk23005848; Tue, 8 Aug 2006 20:55:46 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k790tkGM032683; Tue, 8 Aug 2006 20:55:46 -0400 Received: from vpn50-145.rdu.redhat.com (vpn50-145.rdu.redhat.com [172.16.50.145]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k790tiGi001689; Tue, 8 Aug 2006 20:55:45 -0400 Subject: Pango-1.14.0 released From: Behdad Esfahbod To: gnome-announce-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HmZdRAeI6UrDKG4VtRJV" Organization: Red Hat, Inc. Date: Tue, 08 Aug 2006 20:55:43 -0400 Message-Id: <1155084943.31281.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 00:55:52 -0000 --=-HmZdRAeI6UrDKG4VtRJV Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Pango-1.14.0 is now available for download at: http://download.gnome.org/sources/pango/1.14/ 39144843f377ec6b60dbbf1a25d2a49a pango-1.14.0.tar.bz2 65ecb3d29cebcaf97de14e55831ebb7c pango-1.14.0.tar.gz This is a stable release providing new functionality as compared to Pango-1.12, while maintaining source and binary compatibility. Notable improvements in Pango since version 1.12 include: * Update to Unicode 5.0.0 character database * Improved Indic rendering [LingNing Zhang] * Improved documentation, including list of new symbols added in each stable version of Pango [Priit Laes] * Various bug fixes as usual * The OpenType Layout code in Pango has a new home and name now, and is shared by Qt. HarfBuzz, is still copied internally in Pango, so no separate compilation/installation is necessary. http://www.freedesktop.org/wiki/Software/HarfBuzz About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Bugs should be reported to http://bugzilla.gnome.org. Pango 1.14.0 depends on version 2.10.0 or newer of the GLib library and version 1.2.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. 08 August 2006 Behdad Esfahbod --=-HmZdRAeI6UrDKG4VtRJV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2TKPn+4E5dNTERURAlpiAKCyhSIPGPEOgxrbOTeZjY0mwZ9DQgCfRw+d HEclG3hRu34xXGzjM2X/qhc= =Q/C/ -----END PGP SIGNATURE----- --=-HmZdRAeI6UrDKG4VtRJV-- From billcu1@verizon.net Tue Aug 8 21:35:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F16B83B008C for ; Tue, 8 Aug 2006 21:35:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27518-05 for ; Tue, 8 Aug 2006 21:35:50 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 2C6A93B01A3 for ; Tue, 8 Aug 2006 21:35:50 -0400 (EDT) Received: from win98 ([72.64.26.183]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3P0077OJ3PKCB7@vms046.mailsrvcs.net> for gtk-list@gnome.org; Tue, 08 Aug 2006 20:35:49 -0500 (CDT) Date: Tue, 08 Aug 2006 21:34:27 -0400 From: "Bill Cunningham" Subject: Re: gtk To: "Michael Ekstrand" , Message-id: <001b01c6bb53$f4bc5220$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6baf8$fda14c20$2f01a8c0@myhome.westell.com> <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> <3CBD176D-5F7F-4E51-8B60-6E292C00442E@scl.ameslab.gov> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.965 tagged_above=-999 required=2 tests=[AWL=0.888, BAYES_50=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 0.965 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 01:35:52 -0000 > > If you install pkg-config and all the glib/gtk stuff to the same > > prefix, as long as pkg-config is in your PATH, you won't have any > > problems with needing to set PKG_CONFIG_PATH (unless you somehow > > override the default pkg-config search path. > > > > - Michael I put PKG_CONFIG=/usr/bin/pkg-source:$PKG_CONFIG in bash_profile til all is installed. Bill From gnome-gtk-list@m.gmane.org Wed Aug 9 06:10:31 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08B743B049E for ; Wed, 9 Aug 2006 06:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16670-07 for ; Wed, 9 Aug 2006 06:10:28 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id 55C923B00E6 for ; Wed, 9 Aug 2006 06:10:28 -0400 (EDT) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GAl11-0005gs-48 for gtk-list@gnome.org; Wed, 09 Aug 2006 12:10:19 +0200 Received: from h90.245.159.dialup.iptcom.net ([213.159.245.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Aug 2006 12:10:19 +0200 Received: from kv11111 by h90.245.159.dialup.iptcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Aug 2006 12:10:19 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Vladimir Subject: Re: Threads, sockets and windows Date: Wed, 09 Aug 2006 13:14:01 +0300 Organization: MIPT Lines: 55 Message-ID: References: <1155039455.8194.15.camel@localhost> <17624.38603.671000.937545@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: h90.245.159.dialup.iptcom.net User-Agent: KNode/0.10.2 Sender: news X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.939 tagged_above=-999 required=2 tests=[AWL=0.585, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077] X-Spam-Score: -1.939 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:10:31 -0000 Hello, > If I recall correctly, one good rule of thumb is to read as much can > from a GIOChannel when you get the callback that it is readable, until > you get G_IO_STATUS_AGAIN. Can I just use g_io_channel_unix_new(socket) to create GIOChannel for windows socket ? The main problem in my program is that I need a very low response time for network packets. GMainLoop is not suitable for me since GIOFunc gets called too late, especially when some GUI action is in progress. So I'm using a separate thread for network, and not not using GMainLoop in that thread. Now I'm trying to select between two possibilities: direct usage of WSAEventSelect, or creation of two more threads just to watch socket and pipe and pass messages to the network thread through g_async_queue. And yes, I do know about testing linux and windows versions simultaneously, but I've just did not have windows available before now. After network-related part I'll have to port audio IO part (written in ALSA). Thanks a lot for your reply ! Tor Lillqvist wrote: > Armin Burgmeier writes: > > A probably better approach would be to let glib poll your sockets via > > creating GIOChannels and using g_io_add_watch to watch for events to > > occur. > > Yep, and this then will in fact use the WSAEventSelect mechanism on > Windows. (In GLib >= 2.8) > > Please note, though, that there are slight differences in semantic > details when watching socket events using GLib on Unix vs Windows. For > instance watched sockets automatically become non-blocking on > Windows. (This is a side-effect of using the WSAEventSelect > mechanism.) Code that works (at least most of the time...) on Linux > doesn't necessarily work on Windows, and vice versa. It's best to test > continuously on both platforms during development, and not just > attempty a port to Windows after having done all the coding and design > decisions. > > If I recall correctly, one good rule of thumb is to read as much can > from a GIOChannel when you get the callback that it is readable, until > you get G_IO_STATUS_AGAIN. And, use the GIOChannel API to read/write > from them, don't use read()/write()/send()/recv() > directly. (Especially so as read()/write() don't work on sockets in > Windows, they work only on the "file descriptors" returbned by > open().) > > --tml -- Vladimir From jcupitt@gmail.com Wed Aug 9 06:20:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D0BFE3B00E6 for ; Wed, 9 Aug 2006 06:20:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17416-02 for ; Wed, 9 Aug 2006 06:20:50 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id 9BE3E3B02FF for ; Wed, 9 Aug 2006 06:20:49 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id n15so102628nfc for ; Wed, 09 Aug 2006 03:20:42 -0700 (PDT) Received: by 10.78.139.5 with SMTP id m5mr257505hud; Wed, 09 Aug 2006 03:20:42 -0700 (PDT) Received: by 10.78.133.9 with HTTP; Wed, 9 Aug 2006 03:20:42 -0700 (PDT) Message-ID: <522c6460608090320h5ec553lb0e51ceed71b7957@mail.gmail.com> Date: Wed, 9 Aug 2006 11:20:42 +0100 From: "John Cupitt" To: "Christophe Dehais" Subject: Re: Where are the pixels ? In-Reply-To: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.392 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.392 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:20:51 -0000 On 8/7/06, Christophe Dehais wrote: > What is not clear to me is whether or not a GdkWindow contains the real > pixels in some way. Let's assume this scenario: a window is created and its > size is computed through size negociation, then a pixel buffer containing > all pixels for the window is allocated. No, GTK doesn't work like this. Like X, there are no pixel buffers. Instead, applications are sent expose events and have to be able to redraw parts of their windows when asked. Of course one way they can do this is by allocating a pixel buffer themselves and copying parts of that to the screen on request, but they are free to do it some other way if they want. The purpose of a GdkWindow is to do clipping, coordinate transformation and event management. They do not hold pixels. GTK does automatic double buffering for you. So when an expose event occurs, it allocates an off screen pixel buffer as big as the damaged region and redirects drawing there. When the applications handler has finished drawing to the off screen buffer, GTK copes it to the screen and frees it. This is why you should only ever draw in expose handlers. The system works like this to reduce memory usage. X was designed in the 1980s for workstations with 4 MB of RAM ... you just couldn't afford pixel buffers for all the windows. It was much better to just ask programs to reissue the drawing commands for the damaged areas. Things are changing a bit now with the introduction of XGL and friends. There are pixel buffers for each window at some level in the system. GTK's redraw-on-expose model will stay though (I think). John From tml@iki.fi Wed Aug 9 06:55:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8802B3B00E6 for ; Wed, 9 Aug 2006 06:55:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18902-09 for ; Wed, 9 Aug 2006 06:55:09 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 3E0313B02FF for ; Wed, 9 Aug 2006 06:55:09 -0400 (EDT) Received: from pettson.tml.iki.fi (MCCLXXIX.tun.saunalahti.fi [213.169.28.79]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 32B422161D7; Wed, 9 Aug 2006 13:55:06 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17625.48806.593000.439868@gargle.gargle.HOWL> Date: Wed, 9 Aug 2006 13:53:26 +0300 To: Vladimir Subject: Re: Threads, sockets and windows In-Reply-To: References: <1155039455.8194.15.camel@localhost> <17624.38603.671000.937545@gargle.gargle.HOWL> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.978 tagged_above=-999 required=2 tests=[AWL=-0.235, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_PROXY=0.721] X-Spam-Score: -1.978 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:55:10 -0000 Vladimir writes: > Can I just use g_io_channel_unix_new(socket) to create GIOChannel for > windows socket ? Not reliably. The same small integer might be both a valid file descriptor and a socket, and there is no way for g_io_channel_unix_new() to know which one you mean. Use g_io_channel_win32_new_fd() or g_io_channel_win32_socket(). (Vladimir presumably knows this, but for people who are wondering: In Win32, "file descriptors" (the integers that open() and dup() return) are implemented in the C library, not the kernel. Sockets again (the integers that socket() and accept() return) are implemented by the kernel. They are not related at all, the C library knows nothing about sockets, and the kernel knows nothing about C file descriptors.) --tml From billcu1@verizon.net Wed Aug 9 07:19:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ADD9D3B00E6 for ; Wed, 9 Aug 2006 07:19:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20190-06 for ; Wed, 9 Aug 2006 07:19:53 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id CBCD23B01E2 for ; Wed, 9 Aug 2006 07:19:52 -0400 (EDT) Received: from win98 ([207.68.84.244]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Q009J2A4LUH9T@vms046.mailsrvcs.net> for gtk-list@gnome.org; Wed, 09 Aug 2006 06:19:34 -0500 (CDT) Date: Wed, 09 Aug 2006 07:18:11 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <000d01c6bba5$809b57e0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.045 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, SPF_PASS=-0.001, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: 0.045 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 11:19:54 -0000 Before I try Serge's tool I want to try this the official way. Pkg-config has been set and I got atk to install so I tried to install gtk having atk and glib installed. I got a configure script error saying glib, atk, pango, and cairo not installed. Well glib and atk are installed so something isn't right. Two more variables were mentioned; something about base dependancies to override pkg-config. It looks like pango is going to need xml so I can get a libxml2 package. This is just getting more complicated. Bill From sergstesh@yahoo.com Wed Aug 9 07:28:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C7CE03B0325 for ; Wed, 9 Aug 2006 07:28:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20587-07 for ; Wed, 9 Aug 2006 07:28:33 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 479B93B0301 for ; Wed, 9 Aug 2006 07:28:32 -0400 (EDT) Received: (qmail 3441 invoked by uid 60001); 9 Aug 2006 11:28:31 -0000 Message-ID: <20060809112831.3439.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35204.mail.mud.yahoo.com via HTTP; Wed, 09 Aug 2006 04:28:31 PDT Date: Wed, 9 Aug 2006 04:28:31 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6bba5$809b57e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.581 tagged_above=-999 required=2 tests=[AWL=-1.568, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -0.581 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 11:28:33 -0000 --- Bill Cunningham wrote: > Before I try Serge's tool I want to try this the official way. > Pkg-config has been set and I got atk to install so I tried to install gtk > having atk and glib installed. I got a configure script error saying glib, > atk, pango, and cairo not installed. Well glib and atk are installed so > something isn't right. Two more variables were mentioned; something about > base dependancies to override pkg-config. It looks like pango is going to > need xml so I can get a libxml2 package. This is just getting more > complicated. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Before even trying my tool you can have a look into build data sub - it describes dependencies hierarchivally. Here is the excerpt: 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; #my $minor_ver = '10'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '20', #micro_ver => '1', depends_on => { targets => { atk => do{ my $major_ver = '1'; #my $minor_ver = '10'; my $minor_ver = '12'; $atk_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'atk', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, #micro_ver => '3', micro_ver => '1', depends_on => { targets => { glib => do{ my $major_ver = '2'; my $minor_ver = '12'; $glib_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'glib', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', }; } # do # glib } # targets } # depends_on } }, # do # atk cairo => do{ $cairo_hash_ref = { base_urls => ["http://cairographics.org/releases"], major_ver => '1', minor_ver => '2', micro_ver => '0', } }, # do # cairo pango => do{ my $major_ver = '1'; my $minor_ver = '12'; $pango_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'pango', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', depends_on => { targets => { glib => $glib_hash_ref, cairo => $cairo_hash_ref } } # depends_on } # pango } # do # pango } # targets } # depends_on } # 'gtk+' }, # do # 'gtk+' --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From salgari2004@hotmail.com Wed Aug 9 04:13:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8EF613B0079 for ; Wed, 9 Aug 2006 04:13:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10563-05 for ; Wed, 9 Aug 2006 04:13:51 -0400 (EDT) Received: from bay0-omc1-s41.bay0.hotmail.com (bay0-omc1-s41.bay0.hotmail.com [65.54.246.113]) by menubar.gnome.org (Postfix) with ESMTP id 853E43B0157 for ; Wed, 9 Aug 2006 04:13:51 -0400 (EDT) Received: from hotmail.com ([65.54.224.26]) by bay0-omc1-s41.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 9 Aug 2006 01:13:51 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 9 Aug 2006 01:13:51 -0700 Message-ID: Received: from 65.54.224.200 by by105fd.bay105.hotmail.msn.com with HTTP; Wed, 09 Aug 2006 08:13:47 GMT X-Originating-IP: [158.42.214.106] X-Originating-Email: [salgari2004@hotmail.com] X-Sender: salgari2004@hotmail.com In-Reply-To: <229D14E2-9C13-4101-8FAD-D41918E948FD@xs4all.nl> From: "Roses Roses" To: gtk-list@gnome.org Subject: Pixmap (II) Date: Wed, 09 Aug 2006 08:13:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 09 Aug 2006 08:13:51.0213 (UTC) FILETIME=[BF5E89D0:01C6BB8B] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.685 tagged_above=-999 required=2 tests=[AWL=1.300, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_QH=0.077] X-Spam-Score: 0.685 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 09:04:56 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 08:13:52 -0000 Hi! I've read your solution, but I haven't obtained the correct answer. My drawable routine is the next: GdkBitmap *masc; // Mascara de bits GtkStyle *stile; // Estilo stile = gtk_widget_get_style(window); pixmap=gdk_pixmap_create_from_xpm(window->window,&masc,&stile->bg[GTK_STATE_NORMAL],"gtk.xpm"); //pixmap is a GdkPixmap and gtk.xpm is the new path of the new image pixmapwid= gtk_pixmap_new (pixmap, masc); //pixmapwid is a GtkWidget gtk_widget_queue_draw_area(pixmapwid,0,0,900,400); gtk_widget_show(pixmapwid); But seems it's not correct. Have I any erro? Thanks!! ============================================ hi, one possible paradigm is to adhere to the following guidelines: 1) the configure event callback is responsible for calling all routines responsible for "drawing" the pixmap for ultimate display, but does NOT do the actual display to the screen; 2) the expose event callback is responsible for rendering the current pixmap to be displayed to the screen, but does NO "drawing" here, only render the pixmap to the screen via gdk_draw_drawable() or equivalent; 3.1) the drawing routine(s) are responsible for creating the pixmap for ultimate display; 3.2) store the address of the pixmap in a variable that the expose event callback also has access to (global or otherwise) 3.3) the last command as part of the drawing routine is to call gtk_widget_queue_draw_area() on the widget used to display the pixmap; this will force an expose event in this manner, your drawing routine is called on all configure events followed immediately by the expose event rendering the pixmap to the screen. while calling your drawing routine via a user-event, or some other event internal to the program, will also result in the expose event being called to render the newly made pixmap to the screen. so, in your case, you would attach the button-click to a callback ultimately calling your pixmap drawing routine. the drawing routine will then be called on button-click and your new pixmap will be rendered via the expose event. cheers, richard On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: Hi!!! I'm programming a little interface but I have a prblem. The objective of this program is shows a pixmap qhich must ghange qhen the user clicks on a button. How the fuction of the button can change the pixmap assigned? One idea I've is declare the GtkPixmap as a global variable, but I'm not sure if this plan can run. Thank you very much _________________________________________________________________ Horóscopo, tarot, numerología... Escucha lo que te dicen los astros. http://astrocentro.msn.es/ From tilman@code-monkey.de Tue Aug 8 12:44:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E30453B008A for ; Tue, 8 Aug 2006 12:44:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04255-02 for ; Tue, 8 Aug 2006 12:44:15 -0400 (EDT) Received: from code-monkey.de (code-monkey.de [81.169.170.126]) by menubar.gnome.org (Postfix) with ESMTP id 6A8193B0080 for ; Tue, 8 Aug 2006 12:44:15 -0400 (EDT) Received: from hammerfest (N12e6.n.pppool.de [89.50.18.230]) by code-monkey.de (Postfix) with ESMTP id 27E3E77EB for ; Tue, 8 Aug 2006 18:44:13 +0200 (CEST) Date: Tue, 8 Aug 2006 18:44:13 +0200 From: Tilman Sauerbeck To: gtk-list@gnome.org Subject: GTK 2.10 - missing icons in file dialog Message-ID: <20060808164413.GA32103@code-monkey.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: mutt-ng/devel-r796 (Linux) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 09:05:14 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 16:44:17 -0000 Hi, with GTK 2.10, I've noticed that the file dialog doesn't show icons for files and directories the way it used to. It's using the same fallback icon (white rectangle) for any entry. http://bugzilla.gnome.org/show_bug.cgi?id=345666 This patch makes the file dialog show the correct icon for directories again. Every file still gets the same fallback file icon though. I'm not sure, but I believe that with GTK 2.8, it showed specific icons for different file types. As the bug says, this is without any gnome theme whatsoever, all I got is hicolor-icon-theme 0.9. Ideas? Is the bug valid? Is the attached patch supposed to fix everything back to normal? Please CC me when replying, I'm not subscribed. Thanks, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From riboaz@xs4all.nl Wed Aug 9 09:41:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F2D643B018D for ; Wed, 9 Aug 2006 09:41:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27690-05 for ; Wed, 9 Aug 2006 09:41:53 -0400 (EDT) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by menubar.gnome.org (Postfix) with ESMTP id 3556C3B0103 for ; Wed, 9 Aug 2006 09:41:53 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr14.xs4all.nl (8.13.6/8.13.6) with ESMTP id k79DfmWC094326; Wed, 9 Aug 2006 15:41:52 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Richard Boaz Subject: Re: Pixmap (II) Date: Wed, 9 Aug 2006 15:41:47 +0200 To: Roses Roses X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.439 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, TW_GT=0.077, TW_QH=0.077] X-Spam-Score: -2.439 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 13:41:55 -0000 Hi, 1) gtk_pixmap_new() is old and should not be used; I think you want =20 to be using gtk_image_new_from_pixmap() instead. 2) though that said, if the image is going to be changing during the =20 course of the program, you might want to do it differently (depending): 2.1) create the image widget at app startup with gtk_image_new() 2.2) then, in your drawing routine, once you've got your pixmap, = set =20 the image widget with gtk_image_set_from_pixmap() 3) and I believe, in the case of using an image widget, you do not =20 need to manage configure and expose events yourself, they are =20 internally managed, so this part of my explanation is not relevant/=20 valid; you can execute your drawing routine (to get the pixmap and =20 then place it in the image) and be done. (I do not use the Gtk image myself, so if any of the above is wrong, =20 would someone else please correct me?) Rather, the paradigm I laid out below I use for DrawingArea widgets =20 and displaying pixmaps therein; drawing area widgets require the user =20= manage the configure() and expose() events themselves. richard On Aug 9, 2006, at 10:13 AM, Roses Roses wrote: > Hi! > > I've read your solution, but I haven't obtained the correct answer. > > My drawable routine is the next: > > GdkBitmap *masc; // Mascara de bits > GtkStyle *stile; // Estilo > stile =3D gtk_widget_get_style(window); > pixmap=3Dgdk_pixmap_create_from_xpm(window->window,&masc,&stile->bg=20 > [GTK_STATE_NORMAL],"gtk.xpm"); > //pixmap is a GdkPixmap and gtk.xpm is the new path of the new image > pixmapwid=3D gtk_pixmap_new (pixmap, masc); //pixmapwid is a = GtkWidget > gtk_widget_queue_draw_area(pixmapwid,0,0,900,400); > gtk_widget_show(pixmapwid); > > But seems it's not correct. Have I any erro? > > Thanks!! > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > hi, > > one possible paradigm is to adhere to the following guidelines: > > 1) the configure event callback is responsible for calling all =20 > routines > responsible for "drawing" the pixmap for ultimate display, but =20 > does NOT do > the actual display to the screen; > > 2) the expose event callback is responsible for rendering the current > pixmap to be displayed to the screen, but does NO "drawing" here, =20 > only > render the pixmap to the screen via gdk_draw_drawable() or =20 > equivalent; > > 3.1) the drawing routine(s) are responsible for creating the =20 > pixmap for > ultimate display; > > 3.2) store the address of the pixmap in a variable that the expose =20= > event > callback also has access to (global or otherwise) > > 3.3) the last command as part of the drawing routine is to call > gtk_widget_queue_draw_area() on the widget used to display > the pixmap; this will force an expose event > > in this manner, your drawing routine is called on all configure =20 > events > followed immediately by the expose event rendering the pixmap to the > screen. while calling your drawing routine via a user-event, or =20 > some other > event internal to the program, will also result in the expose =20 > event being > called to render the newly made pixmap to the screen. > > so, in your case, you would attach the button-click to a callback > ultimately calling your pixmap drawing routine. the drawing =20 > routine will > then be called on button-click and your new pixmap will be =20 > rendered via the > expose event. > > cheers, > > richard > > On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: > > Hi!!! > > I'm programming a little interface but I have a prblem. The =20 > objective of > this program is shows a pixmap qhich must ghange qhen the user =20 > clicks on a > button. How the fuction of the button can change the pixmap assigned? > > One idea I've is declare the GtkPixmap as a global variable, but =20 > I'm not > sure if this plan can run. > > Thank you very much > > _________________________________________________________________ > Hor=F3scopo, tarot, numerolog=EDa... Escucha lo que te dicen los = astros. > http://astrocentro.msn.es/ > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > > From z_b_r@poczta.fm Wed Aug 9 21:04:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9A5643B00B4 for ; Wed, 9 Aug 2006 21:04:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27159-03 for ; Wed, 9 Aug 2006 21:04:47 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp10.poczta.interia.pl [80.48.65.10]) by menubar.gnome.org (Postfix) with ESMTP id BEE643B0005 for ; Wed, 9 Aug 2006 21:04:46 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 691C5374571; Thu, 10 Aug 2006 03:04:43 +0200 (CEST) Received: from poczta.interia.pl (f26.poczta.interia.pl [10.217.2.26]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id D99833744FB for ; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id A1A4020B496; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 81B5E20B48E for ; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Date: 10 Aug 2006 03:04:35 +0200 From: hm Subject: gtk_label_set_text () BUG !?!?!?!?!??!?!?!??!!? ( N00b) To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060810010435.81B5E20B48E@poczta.interia.pl> X-EMID: 96140acc X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.158 tagged_above=-999 required=2 tests=[AWL=-0.459, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, MISSING_MIMEOLE=1.612, PLING_QUERY=0.514, SPF_PASS=-0.001] X-Spam-Score: -0.158 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 01:04:49 -0000 =0AHi !=0A=0A I`m workin` on a chessgame project. I`m willing to use GLib = threads to make ticking clock visible in my GUI. Thread function modifies (= by gtk_label_set_text () ) text in label, which`s pointer is given as a pa= rameter to Thread. The problem is, that when the thread function is modyfyi= ng text, application slows down, and after first modification of label it i= s impossible to do anything. No reaction. If gtk_label_set_text () is remov= ed, everything is all right. Is it a bug ? or what ? any clue ? =0A=0A=0Ash= ort desc. of what i`ve done : =0AThread function is static, it`s part of Ti= mer class. In main.cpp i`m just calling g_thread_init (NULL) just before cr= eating Timer class object. I`m compiling it with =0Apkg-config gthread-2.0 = --libs --cflags and the same (pkg-config..) with gtk. =0A=0AThanks for any = help. ---------------------------------------------------------------------- PS. Fajny portal... >>> http://link.interia.pl/f196a From hvreddy1110@gmail.com Wed Aug 9 11:39:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0182E3B0553 for ; Wed, 9 Aug 2006 11:39:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01360-03 for ; Wed, 9 Aug 2006 11:39:20 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id 3315C3B00B4 for ; Wed, 9 Aug 2006 11:39:20 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so363350pyg for ; Wed, 09 Aug 2006 08:39:19 -0700 (PDT) Received: by 10.35.121.9 with SMTP id y9mr1753981pym; Wed, 09 Aug 2006 08:39:19 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Wed, 9 Aug 2006 08:39:19 -0700 (PDT) Message-ID: <1dd596080608090839s29756217t39e9b4b38d28484a@mail.gmail.com> Date: Wed, 9 Aug 2006 21:09:19 +0530 From: "harshavardhanreddy mandeepala" To: gtk-app-devel-list@gnome.org Subject: poptlibrary Crosscompilation for ARM11 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_102838_25434401.1155137959341" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.241 tagged_above=-999 required=2 tests=[AWL=-0.270, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BG=0.077] X-Spam-Score: -1.241 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 22:16:01 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 15:39:28 -0000 ------=_Part_102838_25434401.1155137959341 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline HI, I am trying to cross compile popt libraries for my IMX31(ARM11)processor from FC3. I used popt-1.6.4 ver. when i use ./configure --host=arm-linux --build=i386 --disable-nls or ./configure --host=arm-linux --build=i386 CC=arm-linux-gcc --disable-nls both the time it is compiling and creating libraries. but when i use file libpopt.so.0.0.0 It is displaying that libpopt.so.0.0.0: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), not stripped So why it is not created for ARM. popt library is the dependent library for libgnome. when i tryed to CCompile libgnome it asked for popt. Does any body already crosscompiled Gnome,Glade,GTK related libraries for freescale IMX31/ ARM11 processor. If somebody already developed it will be helpful to me and it will save lot of time.Because i have to crosscompile all Gnome and Glade related libs for ARM11 Kindly provide some help in this regard. Thanks in advance. Regards, Harsha ------=_Part_102838_25434401.1155137959341 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline HI,
I am trying to cross compile popt libraries for my IMX31(ARM11)processor from FC3.
I used  popt-1.6.4 ver.
when i use
./configure --host=arm-linux  --build=i386  --disable-nls
or
./configure --host=arm-linux  --build=i386 CC=arm-linux-gcc --disable-nls
both the time it is compiling and creating libraries.
but when i use
file libpopt.so.0.0.0
It is displaying that
libpopt.so.0.0.0: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), not stripped
So why it is not created for ARM.
popt library is the dependent library for  libgnome.
when i tryed to CCompile libgnome it asked for popt.
Does any body already crosscompiled  Gnome,Glade,GTK related libraries for freescale IMX31/ ARM11 processor.
If somebody already developed it will be helpful to me and it will save lot of time.Because i have to crosscompile all Gnome and Glade related libs for ARM11
Kindly provide some help in this regard.

Thanks in advance.

Regards,
Harsha
------=_Part_102838_25434401.1155137959341-- From wharri2@uicalumni.org Wed Aug 9 19:24:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D1C093B000E for ; Wed, 9 Aug 2006 19:24:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23004-09 for ; Wed, 9 Aug 2006 19:24:02 -0400 (EDT) Received: from mail2world.com (mw192.mail2world.com [66.28.189.192]) by menubar.gnome.org (Postfix) with ESMTP id 0AF4A3B0089 for ; Wed, 9 Aug 2006 19:24:02 -0400 (EDT) Received: from mail pickup service by mail2world.com with Microsoft SMTPSVC; Wed, 9 Aug 2006 16:22:09 -0700 auth-sender: wharri2@uicalumni.org Received: from 10.1.9.10 unverified ([10.1.9.10]) by mwde12la.mail2world.com with Mail2World SMTP Server, Wed 09 Aug 2006 16:22:08 -07:00 Received: from [67.173.11.172] by uicalumni.org with HTTP; 8/9/2006 4:21:58 PM PST thread-index: Aca8Cpxf8vJV71rtSHmp90BebBNpYQ== Thread-Topic: Gtk Style From: "Winslow Harris" To: Subject: Gtk Style Date: Wed, 9 Aug 2006 16:21:58 -0700 Message-ID: <39d401c6bc0a$9c5f6470$0a09010a@mail2world.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_39D5_01C6BBCF.F0008C70" X-Mailer: Microsoft CDO for Exchange 2000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Content-class: urn:content-classes:message Importance: normal Priority: normal X-OriginalArrivalTime: 09 Aug 2006 23:22:09.0351 (UTC) FILETIME=[A2CA7570:01C6BC0A] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.452 tagged_above=-999 required=2 tests=[AWL=1.579, BAYES_50=0.001, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 2.452 X-Spam-Level: ** X-Spam-Flag: YES X-Mailman-Approved-At: Wed, 09 Aug 2006 22:16:01 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 23:24:05 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_39D5_01C6BBCF.F0008C70 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Can anyone explain how the Gtk Style property of a widget works. Changing the GdkColor properties of a gtk style seem to have no effect, the colors have to be change through the graphic content members. Changing the foreground color through the graphic contents property affects all the widgets not just the one I specify. As a matter of fact it does not matter which widget I specify all the widgets change their foreground color. This does not happen when dealing with the background color gc though. Does anyone know exactly what properties of a gtk style are used where and what changes are passed along to children ect...? ------=_NextPart_000_39D5_01C6BBCF.F0008C70 Content-Type: text/html Content-Transfer-Encoding: 7bit Can anyone explain how the Gtk Style property of a widget works. Changing the GdkColor properties of a gtk style seem to have no effect, the colors have to be change through the graphic content members.
Changing the foreground color through the graphic contents property affects all the widgets not just the one I specify.
As a matter of fact it does not matter which widget I specify all the widgets change their foreground color.
This does not happen when dealing with the background color gc though.
Does anyone know exactly what properties of a gtk style are used where and what changes are passed along to children ect...?
------=_NextPart_000_39D5_01C6BBCF.F0008C70-- From sumitskj_20@yahoo.com Thu Aug 10 03:16:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4900D3B0102 for ; Thu, 10 Aug 2006 03:16:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08274-06 for ; Thu, 10 Aug 2006 03:16:04 -0400 (EDT) Received: from web31005.mail.mud.yahoo.com (web31005.mail.mud.yahoo.com [68.142.200.168]) by menubar.gnome.org (Postfix) with SMTP id E77F33B00D6 for ; Thu, 10 Aug 2006 03:16:03 -0400 (EDT) Received: (qmail 88674 invoked by uid 60001); 10 Aug 2006 07:16:03 -0000 Message-ID: <20060810071603.88672.qmail@web31005.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31005.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 00:16:03 PDT Date: Thu, 10 Aug 2006 00:16:03 -0700 (PDT) From: Sumit Kumar Jain Subject: Uniode version To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-567860913-1155194163=:86051" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.853 tagged_above=-999 required=2 tests=[AWL=-2.878, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_30_40=0.374, HTML_MESSAGE=0.001] X-Spam-Score: 0.853 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 07:16:05 -0000 --0-567860913-1155194163=:86051 Content-Type: text/plain; charset=us-ascii Hi, I want some information on the version of unicode that glib2.10.3 supports. I believe it is 4.1.0 glib 2.10.3 and for glib 2.8.4 it is 4.0. But when i compare the files gunidecomp.h for both the versions, its the same. I guess, across version, this file should also change. Can someone please help me on this. Regards, Sumit --0-567860913-1155194163=:86051 Content-Type: text/html; charset=us-ascii
Hi,
I want some information on the version of unicode that glib2.10.3 supports. I believe it is 4.1.0 glib 2.10.3 and for glib 2.8.4 it is 4.0. But when i compare the files gunidecomp.h for both the versions, its the same. I guess, across version, this file should also change.

Can someone please help me on this.
 
Regards,
Sumit
--0-567860913-1155194163=:86051-- From sumitskj_20@yahoo.com Thu Aug 10 06:17:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 606BD3B009D for ; Thu, 10 Aug 2006 06:17:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18081-03 for ; Thu, 10 Aug 2006 06:17:36 -0400 (EDT) Received: from web31006.mail.mud.yahoo.com (web31006.mail.mud.yahoo.com [68.142.200.169]) by menubar.gnome.org (Postfix) with SMTP id 809073B00F2 for ; Thu, 10 Aug 2006 06:17:36 -0400 (EDT) Received: (qmail 8662 invoked by uid 60001); 10 Aug 2006 10:17:32 -0000 Message-ID: <20060810101732.8660.qmail@web31006.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31006.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 03:17:32 PDT Date: Thu, 10 Aug 2006 03:17:32 -0700 (PDT) From: Sumit Kumar Jain Subject: Unicode-Normalize.c test case fails To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-357860941-1155205052=:7584" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.962 tagged_above=-999 required=2 tests=[AWL=-2.891, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_40_50=0.496, HTML_MESSAGE=0.001] X-Spam-Score: 0.962 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 10:17:39 -0000 --0-357860941-1155205052=:7584 Content-Type: text/plain; charset=us-ascii hi, I ran unicode-normalize.c with the input file as Normlaizationtest.txt version 4.10. downloaded for unicode.org The test case is failing at multiple input lines. Seems like either the imput file is wrong or the 4.1 version of unicode is not supported. Can someone help me with this. Regards, Sumit --0-357860941-1155205052=:7584 Content-Type: text/html; charset=us-ascii
hi,
I ran unicode-normalize.c with the input file as Normlaizationtest.txt version 4.10. downloaded for unicode.org  The test case is failing at multiple input lines. Seems like either the imput file is wrong or the 4.1 version of unicode is not supported.

Can someone help me with this.

Regards,
Sumit
--0-357860941-1155205052=:7584-- From z_b_r@poczta.fm Thu Aug 10 07:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A7D933B00CE for ; Thu, 10 Aug 2006 07:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21775-10 for ; Thu, 10 Aug 2006 07:44:02 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp10.poczta.interia.pl [80.48.65.10]) by menubar.gnome.org (Postfix) with ESMTP id 4C9BE3B0116 for ; Thu, 10 Aug 2006 07:44:02 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 29A973AFB18; Thu, 10 Aug 2006 13:44:01 +0200 (CEST) Received: from poczta.interia.pl (f32.poczta.interia.pl [10.217.2.32]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id AA3DE3AF9F1 for ; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id 7126616009E; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 2216E160098 for ; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Date: 10 Aug 2006 13:44:00 +0200 From: hm Subject: Re:Re: gtk_label_set_text () BUG !?!?!?!??!?!?!??!!? ( N00b ) To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060810114400.2216E160098@poczta.interia.pl> X-EMID: 81e40acc X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.115 tagged_above=-999 required=2 tests=[AWL=-0.493, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, MISSING_MIMEOLE=1.612, PLING_QUERY=0.514, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.115 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 11:44:04 -0000 =0AHi !=0A=0A I`m not quiet sure if my previous mail was sent, so I`ll try= to write it once again.=0ALieven van der Heide wrote, that I should call a= ll gtk functions from one thread. I`ve tried :=0A=0A1. Created function in = main program, that calls gtk_label_set_text (). The function takes string a= s a ( from ) parameter, which is converted to c-language string by= string. c_str ()=0A=0A2. Thread function gets pointer to function from poi= nt 1. as a parameter, and when specific conditions arefulfilled, then the f= unction from point 1. is beiung called ( by the pointer passed as an argume= nt for thread function )=0A=0AResult : the same :/=0A=0AAny clues ? :) =0A= =0A=0A=0A=0A=0A=0Aregards ---------------------------------------------------------------------- PS. Fajny portal... >>> http://link.interia.pl/f196a From mekstran@scl.ameslab.gov Thu Aug 10 09:32:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5B73B00B0 for ; Thu, 10 Aug 2006 09:32:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28650-08 for ; Thu, 10 Aug 2006 09:32:41 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id A1EDE3B00AF for ; Thu, 10 Aug 2006 09:32:40 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Thu, 10 Aug 2006 08:32:20 -0500 id 000538A8.44DB3577.00003B3E Resent-Message-Id: <22F88D9D-8C56-4826-90E1-C6DA7A87AA42@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Resent-Date: Thu, 10 Aug 2006 08:32:39 -0500 Message-Id: <09DD4705-58F0-4C0C-9E4F-CA0F063CDB74@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: gtk_label_set_text () BUG !?!?!?!?!??!?!?!??!!? ( N00b) Resent-From: Michael Ekstrand Date: Thu, 10 Aug 2006 08:31:48 -0500 To: hm X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.849 tagged_above=-999 required=2 tests=[AWL=-0.539, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, PLING_QUERY=0.514] X-Spam-Score: -1.849 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 13:32:42 -0000 On Aug 9, 2006, at 8:04 PM, hm wrote: > I`m workin` on a chessgame project. I`m willing to use GLib > threads to make ticking clock visible in my GUI. Thread function > modifies ( by gtk_label_set_text () ) text in label, which`s > pointer is given as a parameter to Thread. The problem is, that > when the thread function is modyfying text, application slows down, > and after first modification of label it is impossible to do > anything. No reaction. If gtk_label_set_text () is removed, > everything is all right. Is it a bug ? or what ? any clue ? It sounds like you're violating some cardinal principles of multithreaded GUI programming.... Rule #1 on multithreading GUI's: don't do it if you don't need to. Your timer can be updated using GTK's idle or timeout callbacks. Rule #2: Only ever call the GUI system from one thread (your main thread). This rule can be different on some platforms, but in general, and particularly with GTK, this is the rule. In GTK you can call from other threads (I think) by wrapping calls in g_threads_enter/g_threads_leave pairs, but IMHO it'd be better to use those only to protect setting an idle callback so that your worker thread actually schedules the display update to happen in the main thread. I'm evaluating adding a similar mechanism in my program so that some complex computations and network polling (using libraries not integrated w/ glib) can be run in separate threads. Make sure you're following those rules, and then see what happens. I'm guessing the problem is caused by calling GTK from multiple threads. - Michael From naliven@msn.com Thu Aug 10 09:46:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC6883B00CA for ; Thu, 10 Aug 2006 09:46:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29545-02 for ; Thu, 10 Aug 2006 09:46:51 -0400 (EDT) Received: from bay0-omc1-s5.bay0.hotmail.com (unknown [65.54.246.77]) by menubar.gnome.org (Postfix) with ESMTP id A93943B00BE for ; Thu, 10 Aug 2006 09:46:51 -0400 (EDT) Received: from hotmail.com ([65.54.173.7]) by bay0-omc1-s5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 10 Aug 2006 06:46:51 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 10 Aug 2006 06:46:51 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Thu, 10 Aug 2006 13:46:47 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: gtk drawing question Date: Thu, 10 Aug 2006 13:46:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 10 Aug 2006 13:46:51.0303 (UTC) FILETIME=[6ED81370:01C6BC83] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.572 tagged_above=-999 required=2 tests=[AWL=0.664, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001] X-Spam-Score: 2.572 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 13:46:53 -0000 Hi, I am trying to write a program similar to the one at http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I understand it, net-stop only means that the loading of page is completed, it doesn't necessarily mean that drawing the widget is complete. My question is, is there a way to understand if drawing of a widget (gtkmozembed in this case) is complete? Thanks in advance. _________________________________________________________________ Messenger uzaklardaki sevdiklerinizle bulusturur! http://messenger.live.com From paul@linuxaudiosystems.com Thu Aug 10 10:15:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82F363B0144 for ; Thu, 10 Aug 2006 10:15:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30911-07 for ; Thu, 10 Aug 2006 10:15:12 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 48CAA3B0276 for ; Thu, 10 Aug 2006 10:15:12 -0400 (EDT) Received: from dhin ([141.152.248.25]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3S00CVXCWKFF80@vms044.mailsrvcs.net> for gtk-list@gnome.org; Thu, 10 Aug 2006 09:14:45 -0500 (CDT) Date: Thu, 10 Aug 2006 10:14:24 -0400 From: Paul Davis Subject: Re: gtk drawing question In-reply-to: To: =?iso-8859-9?Q?Do=F0acan_G=FCney?= Message-id: <1155219264.1716.16.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 8BIT References: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.388 tagged_above=-999 required=2 tests=[AWL=0.134, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.388 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:15:13 -0000 On Thu, 2006-08-10 at 13:46 +0000, Doğacan Güney wrote: > Hi, > > I am trying to write a program similar to the one at > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > understand it, net-stop only means that the loading of page is completed, it > doesn't necessarily mean that drawing the widget is complete. My question > is, is there a way to understand if drawing of a widget (gtkmozembed in this > case) is complete? your question is ill-formed. do you mean "when every pixel that represents a widget has been displayed on a screen?" or "when the code responsible for requesting pixel changes has been called?" or something else? From klein.stephane@gmail.com Thu Aug 10 10:34:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 636FF3B0434 for ; Thu, 10 Aug 2006 10:34:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32210-05 for ; Thu, 10 Aug 2006 10:34:17 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.238]) by menubar.gnome.org (Postfix) with ESMTP id 2C8E03B03EE for ; Thu, 10 Aug 2006 10:34:15 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so149682qba for ; Thu, 10 Aug 2006 07:34:14 -0700 (PDT) Received: by 10.78.158.11 with SMTP id g11mr1340144hue; Thu, 10 Aug 2006 07:34:13 -0700 (PDT) Received: by 10.78.132.20 with HTTP; Thu, 10 Aug 2006 07:34:13 -0700 (PDT) Message-ID: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> Date: Thu, 10 Aug 2006 16:34:13 +0200 From: "=?ISO-8859-1?Q?KLEIN_St=E9phane?=" To: gtk-list@gnome.org Subject: GTK is double buffered by default ? on GNU/Linux and MS Windows ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_85895_25443403.1155220453699" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.51 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: 0.51 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:34:47 -0000 ------=_Part_85895_25443403.1155220453699 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello, I use Ubuntu system. I've showed gnome and Gimp to one friend. This friend use MS Windows since always. He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI display scintillate. This also for Gimp MS Windows version". He say : "First, I see the window draw, next the background draw of button...". On the contrary, MS Windows application display all widget in one step." I don't know if you understand my subject. My question : is there double buffering render in GTK ? If yes, why my friend think than Windows display is faster than GTK and other widget toolkit ? If not, why that ? Thanks for your response. --St=E9phane ------=_Part_85895_25443403.1155220453699 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello,

I use Ubuntu system. I've showed gnome and Gimp to one friend= . This friend use MS Windows since always.

He say : "I dislike = Linux, Ubuntu, Gnome, Gimp ... because the GUI display scintillate. This al= so for Gimp MS Windows version".

He say : "First, I see the window draw, next the background dr= aw of button...". On the contrary, MS Windows application display all = widget in one step."

I don't know if you understand my subject.

My question : is there double buffering render in GTK ? If yes, wh= y my friend think than Windows display is faster than GTK and other widget = toolkit ? If not, why that ?

Thanks for your response.
--St=E9pha= ne=20
------=_Part_85895_25443403.1155220453699-- From sergstesh@yahoo.com Thu Aug 10 10:49:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C3FB3B032E for ; Thu, 10 Aug 2006 10:49:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00614-03 for ; Thu, 10 Aug 2006 10:49:05 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 6C1663B03B3 for ; Thu, 10 Aug 2006 10:49:05 -0400 (EDT) Received: (qmail 50909 invoked by uid 60001); 10 Aug 2006 14:49:04 -0000 Message-ID: <20060810144904.50907.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35209.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 07:49:04 PDT Date: Thu, 10 Aug 2006 07:49:04 -0700 (PDT) From: Sergei Steshenko Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? To: KLEIN "Stéphane" , gtk-list@gnome.org In-Reply-To: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E9 hex) in message header 'To': To: KLEIN "St\351phane" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:49:07 -0000 --- KLEIN Stéphane wrote: > Hello, > > I use Ubuntu system. I've showed gnome and Gimp to one friend. This friend > use MS Windows since always. > > He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI display > scintillate. This also for Gimp MS Windows version". > > He say : "First, I see the window draw, next the background draw of > button...". On the contrary, MS Windows application display all widget in > one step." > > I don't know if you understand my subject. > > My question : is there double buffering render in GTK ? If yes, why my > friend think than Windows display is faster than GTK and other widget > toolkit ? If not, why that ? > > Thanks for your response. > --Stéphane > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > For startes, Windows graphics system is not network-aware, unlike X. This makes it necessary to use VNC, RDP and friends to access remote desktop on Windows, but makes graphics system faster when local access is in place. With X you have built-in network accessibility, but, as far as I know, it's one of the factors making it slower. OpenGL should provide fast X graphics. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Thu Aug 10 10:57:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E97AF3B00EB for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00904-09 for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 1E1963B00BE for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from win98 ([71.251.252.246]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3S00CYQEUKFHG0@vms044.mailsrvcs.net> for gtk-list@gnome.org; Thu, 10 Aug 2006 09:56:45 -0500 (CDT) Date: Thu, 10 Aug 2006 10:55:22 -0400 From: "Bill Cunningham" Subject: tool To: Message-id: <000701c6bc8d$02030200$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.9 tagged_above=-999 required=2 tests=[AWL=-0.008, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.9 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:57:05 -0000 Sergei, Does your tool have a home page? I'm about at witts end with this. Now I'm being told I need expat to compile fontconfig which is needed for freetype. You sent me a link and I downloaded the file. Is there a page? I don't have that link anymore. Thanks Bill From sergstesh@yahoo.com Thu Aug 10 11:03:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7736D3B0004 for ; Thu, 10 Aug 2006 11:03:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01564-03 for ; Thu, 10 Aug 2006 11:03:42 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 5C0633B0071 for ; Thu, 10 Aug 2006 11:03:42 -0400 (EDT) Received: (qmail 75352 invoked by uid 60001); 10 Aug 2006 15:03:41 -0000 Message-ID: <20060810150341.75350.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35204.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 08:03:41 PDT Date: Thu, 10 Aug 2006 08:03:41 -0700 (PDT) From: Sergei Steshenko Subject: Re: tool To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6bc8d$02030200$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.64 tagged_above=-999 required=2 tests=[AWL=-1.473, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.64 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:03:43 -0000 --- Bill Cunningham wrote: > Sergei, > > Does your tool have a home page? I'm about at witts end with this. Now I'm > being told I need expat to compile fontconfig which is needed for freetype. > You sent me a link and I downloaded the file. Is there a page? I don't have > that link anymore. > > Thanks > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > http://appsfromscratch.berlios.de/ Isn't the URL in my signature ? I'll be out for several hours - if you encounter a problem, read the first error message (look for :ERROR:). The message should contain full path to 'configure.log', 'make.log', etc. Look into the logs to see what the problem is. Typically, you'll need some basic packages like 'zlib', 'libpng' etc., including .h files, installed at system level. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From tristan.van.berkom@gmail.com Thu Aug 10 11:40:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 854B53B00EA for ; Thu, 10 Aug 2006 11:40:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03575-09 for ; Thu, 10 Aug 2006 11:40:21 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id A77443B0126 for ; Thu, 10 Aug 2006 11:40:20 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so724610wxd for ; Thu, 10 Aug 2006 08:40:20 -0700 (PDT) Received: by 10.70.15.15 with SMTP id 15mr3365192wxo; Thu, 10 Aug 2006 08:40:19 -0700 (PDT) Received: from ?66.48.170.42? ( [66.48.170.42]) by mx.gmail.com with ESMTP id i19sm30556wxd.2006.08.10.08.40.15; Thu, 10 Aug 2006 08:40:18 -0700 (PDT) Message-ID: <44DB5820.4090606@gnome.org> Date: Thu, 10 Aug 2006 12:00:32 -0400 User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051013) X-Accept-Language: en-us, en MIME-Version: 1.0 To: hm Subject: Re: gtk_label_set_text () BUG !?!?!?!??!?!?!??!!? ( N00b ) References: <20060810114400.2216E160098@poczta.interia.pl> In-Reply-To: <20060810114400.2216E160098@poczta.interia.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: Tristan Van Berkom X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.414 tagged_above=-999 required=2 tests=[AWL=-0.380, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, MANY_EXCLAMATIONS=0.775, PLING_QUERY=0.514, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.414 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:40:22 -0000 hm wrote: >Hi ! > > I`m not quiet sure if my previous mail was sent, so I`ll try to write it once again. >Lieven van der Heide wrote, that I should call all gtk functions from one thread. I`ve tried : > >1. Created function in main program, that calls gtk_label_set_text (). The function takes string as a ( from ) parameter, which is converted to c-language string by string. c_str () > >2. Thread function gets pointer to function from point 1. as a parameter, and when specific conditions arefulfilled, then the function from point 1. is beiung called ( by the pointer passed as an argument for thread function ) > >Result : the same :/ > > Because your not doing anything different. >Any clues ? :) > > Yes, please save yourself (and all of us) alot of effort by finding out the meaning of threads, if you dont have a good understanding about threads, your program will crash and lock up I garauntee it, you will also find yourself unable to properly phrase questions about why its not working - because you havent figured out the meaning of your questions yet. Cheers, -Tristan I'm not about to write a book here but here's a little hint to justify my rant: - Threads share data throughout the process address space, all data belongs to the 'program' or 'process', if you are currently executing thread B, then function calls from thread B will be run in thread B; regardless of in which object file the stub happened to be built in and linked from. - When you use an idle handler (g_idle_add()) to schedule an event in the mainloop, this will result in a write to a pipe() that is used to wakeup the GMainContext of the mainloop (usually in the main thread), again - regardless of what object file the idle handler was declared in - it will be run from the main thread of execution. From naliven@msn.com Thu Aug 10 11:58:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D7B3F3B0116 for ; Thu, 10 Aug 2006 11:58:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04487-03 for ; Thu, 10 Aug 2006 11:58:52 -0400 (EDT) Received: from bay0-omc3-s14.bay0.hotmail.com (bay0-omc3-s14.bay0.hotmail.com [65.54.246.214]) by menubar.gnome.org (Postfix) with ESMTP id 56D9C3B00EB for ; Thu, 10 Aug 2006 11:58:52 -0400 (EDT) Received: from hotmail.com ([65.54.173.14]) by bay0-omc3-s14.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 10 Aug 2006 08:58:52 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 10 Aug 2006 08:58:52 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Thu, 10 Aug 2006 15:58:47 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: Re: gtk drawing question Date: Thu, 10 Aug 2006 15:58:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 10 Aug 2006 15:58:52.0057 (UTC) FILETIME=[DFFB3890:01C6BC95] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.217 tagged_above=-999 required=2 tests=[AWL=1.755, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: 1.217 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:58:55 -0000 >From: Paul Davis >Reply-To: paul@linuxaudiosystems.com >To: Doðacan Güney >CC: gtk-list@gnome.org >Subject: Re: gtk drawing question >Date: Thu, 10 Aug 2006 10:14:24 -0400 > >On Thu, 2006-08-10 at 13:46 +0000, Doðacan Güney wrote: > > Hi, > > > > I am trying to write a program similar to the one at > > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > > understand it, net-stop only means that the loading of page is >completed, it > > doesn't necessarily mean that drawing the widget is complete. My >question > > is, is there a way to understand if drawing of a widget (gtkmozembed in >this > > case) is complete? > >your question is ill-formed. do you mean "when every pixel that >represents a widget has been displayed on a screen?" or "when the code >responsible for requesting pixel changes has been called?" or something >else? What I want to do is to load a web page, then take the snapshot of this page. So I tell gtkmozembed to load the url and notify me (through net-stop) when it is done. When I recieve the net-stop signal, I create a pixbuf from the gtkmozembed widget and save it to a jpg. My problem is that, recieving net-stop signal only means that the page is fetched from web but not completely displayed on the screen(I think). So the jpg I generated is sometimes empty, or half-drawn. So, I guess my question is: I want to be notified when the page is completely rendered (with all the pictures and text and other stuff in it) and displayed on the screen. Is that clear enough? > > _________________________________________________________________ Sohbet ederken Messenger'da eglenin! http://messenger.live.com From torriem@chem.byu.edu Thu Aug 10 12:43:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E05C3B0079 for ; Thu, 10 Aug 2006 12:43:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06779-02 for ; Thu, 10 Aug 2006 12:43:15 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id B312C3B008D for ; Thu, 10 Aug 2006 12:43:14 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7AGh9GC027223; Thu, 10 Aug 2006 10:43:09 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: KLEIN =?ISO-8859-1?Q?St=E9phane?= In-Reply-To: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Date: Thu, 10 Aug 2006 10:43:09 -0600 Message-Id: <1155228189.12091.41.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Thu, 10 Aug 2006 10:43:09 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 16:43:16 -0000 On Thu, 2006-08-10 at 16:34 +0200, KLEIN Stéphane wrote: > Hello, > > I use Ubuntu system. I've showed gnome and Gimp to one friend. This > friend use MS Windows since always. > > He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI > display scintillate. This also for Gimp MS Windows version". > > He say : "First, I see the window draw, next the background draw of > button...". On the contrary, MS Windows application display all widget > in one step." > > I don't know if you understand my subject. > > My question : is there double buffering render in GTK ? If yes, why my > friend think than Windows display is faster than GTK and other widget > toolkit ? If not, why that ? It is a matter of perception. I cannot say whether GTK renders faster than Windows. But GTK is double-buffered. However what your friend is seeing is a result of a couple of things. First is that when you uncover a window, X11 sends expose events to the uncovered window. It is up to the client (the app) to respond to these events and redraw the parts that were exposed. If the window is in motion, these expose events may come faster than the app can deal with. GTK typically "compresses" these events and will wait to do the actual redraw. This reduces the CPU consumption and increases overall speed, but it comes at the expense of visual stuttering. One is that the X windowing system in asynchronous. This means, among other things, that the windowing code accepts requests as they come from various clients (apps). These means that redraws and reconfigures of the various applications aren't necessarily going to happen at the exact same time. Also when you drag a window, for example, the redrawing isn't synchronized to any particular clock, so you get tearing. Windows also often has tearing when you drag a large window around. Mac does not, for reasons I'll describe below. Work is being done to address these perceptions (speed really is fast; it just looks slow). First of all, people are developing X servers that use OpenGL to draw the windows on the screen. What this means is that apps draw to an off-screen bitmap, which OpenGL then pastes on the screen. Since the OpenGL drawing is very quick, this eliminates redraw flicker to a large degree (since the flicker is hidden off-screen where you can't see it). Also when you move a window, the window underneath is intact (it's an opengl texture) so there are *no* expose events needed. This doesn't address the resize stuttering issue, though (even Mac OS X stutters on resizes on slow video cards). This will be addressed through new synchronization events that the X server will use to make sure everything happens smoothly, without any stuttering. If you want to see how fast a Linux desktop can appear, check out the new OpenSuSE with it's Xgl system. It's sweet! Fedora Core 6 will have similar technology, called AIXGL. Besides providing fast rendering (which will definitely quell your friend's complaints), it also enables lots of other cool things like 3-d desktops, OS X-like expose, etc. See http://www.freedesktop.org/~davidr/xgl-demo1.xvid.avi , and also http://kororaa.org/ Michael > > Thanks for your response. > --Stéphane > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From florian.boor@kernelconcepts.de Thu Aug 10 13:30:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F2DF83B0078 for ; Thu, 10 Aug 2006 13:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09050-10 for ; Thu, 10 Aug 2006 13:30:27 -0400 (EDT) Received: from mail.kernelconcepts.de (www.kernelconcepts.de [212.60.202.195]) by menubar.gnome.org (Postfix) with ESMTP id F06E83B000C for ; Thu, 10 Aug 2006 13:30:26 -0400 (EDT) Received: from [212.60.202.194] (helo=[192.168.2.128]) by mail.kernelconcepts.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GBEZj-0007CO-CM; Thu, 10 Aug 2006 19:44:07 +0200 Message-ID: <44DB6D6C.8060703@kernelconcepts.de> Date: Thu, 10 Aug 2006 19:31:24 +0200 From: Florian Boor User-Agent: Thunderbird 1.5.0.4 (X11/20060713) MIME-Version: 1.0 To: harshavardhanreddy mandeepala Subject: Re: glib cross compilation error References: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> In-Reply-To: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 17:30:29 -0000 Hello, harshavardhanreddy mandeepala wrote: > I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. oh... that's an old one. > I configured using the following configure command. > > cannot run test program while cross compiling > See `config.log' for more details. > > Any idea why it is not compiling? That means you need to define the value it tries to determine in your site file. Both scratchbox and OpenEmbedded could help you crosscompiling, but i suppose Familiar or OpenZaurus binaries might be compatible too. Greetings Florian -- The dream of yesterday Florian Boor is the hope of today Tel: +49 271-771091-14 and the reality of tomorrow. Fax: +49 271-771091-19 [Robert Hutchings Goddard, 1904] florian.boor@kernelconcepts.de 1D78 2D4D 6C53 1CA4 5588 D07B A8E7 940C 25B7 9A76 From chris@cvine.freeserve.co.uk Thu Aug 10 16:29:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3375F3B0007 for ; Thu, 10 Aug 2006 16:29:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18344-08 for ; Thu, 10 Aug 2006 16:29:53 -0400 (EDT) Received: from smtp1.freeserve.com (smtp1.wanadoo.co.uk [193.252.22.158]) by menubar.gnome.org (Postfix) with ESMTP id A30AD3B000C for ; Thu, 10 Aug 2006 16:29:52 -0400 (EDT) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3009.me.freeserve.com (SMTP Server) with ESMTP id 94F881C0008D; Thu, 10 Aug 2006 22:29:51 +0200 (CEST) Received: from laptop.homenet (modem-167.monkey.dialup.pol.co.uk [217.135.208.167]) by mwinf3009.me.freeserve.com (SMTP Server) with ESMTP id D1C111C00088; Thu, 10 Aug 2006 22:29:50 +0200 (CEST) X-ME-UUID: 20060810202950859.D1C111C00088@mwinf3009.me.freeserve.com Received: from localhost (IDENT:1000@localhost [127.0.0.1]) by laptop.homenet (8.12.10/8.12.10) with ESMTP id k7AKPdiA003494; Thu, 10 Aug 2006 21:26:19 +0100 From: Chris Vine To: gtk-list@gnome.org Subject: Re: GTK 2.10 - missing icons in file dialog Date: Thu, 10 Aug 2006 21:22:40 +0100 User-Agent: KMail/1.9.3 References: <20060808164413.GA32103@code-monkey.de> In-Reply-To: <20060808164413.GA32103@code-monkey.de> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200608102122.41227.chris@cvine.freeserve.co.uk> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.514 tagged_above=-999 required=2 tests=[AWL=-0.706, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, RCVD_IN_SORBS_WEB=1.456] X-Spam-Score: -1.514 X-Spam-Level: Cc: Tilman Sauerbeck X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 20:29:54 -0000 On Tuesday 08 August 2006 17:44, Tilman Sauerbeck wrote: > Hi, > with GTK 2.10, I've noticed that the file dialog doesn't show icons for > files and directories the way it used to. It's using the same fallback > icon (white rectangle) for any entry. > > http://bugzilla.gnome.org/show_bug.cgi?id=345666 > This patch makes the file dialog show the correct icon for directories > again. Every file still gets the same fallback file icon though. I'm not > sure, but I believe that with GTK 2.8, it showed specific icons for > different file types. > > As the bug says, this is without any gnome theme whatsoever, all I got > is hicolor-icon-theme 0.9. > > Ideas? Is the bug valid? Is the attached patch supposed to fix > everything back to normal? The ABI for GTK+ changed with version 2.10 for pixbufs (you will get the result you describe if you try to use gnome compiled against GTK+ version 2.8 with version 2.10). I do not know if that is the cause in you case, but if you have not done so try recompiling your program (and also gnome, if you are using gnome). Chris From kyndig@gmail.com Thu Aug 10 23:10:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D48603B008B for ; Thu, 10 Aug 2006 23:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02526-01 for ; Thu, 10 Aug 2006 23:09:59 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by menubar.gnome.org (Postfix) with ESMTP id 4B9B03B000C for ; Thu, 10 Aug 2006 23:09:56 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so938970wxd for ; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Received: by 10.70.13.1 with SMTP id 1mr4207368wxm; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Message-ID: Date: Thu, 10 Aug 2006 23:09:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: Mac OS X: error: X development libraries not found In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_47771_31187468.1155265794391" References: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.259 tagged_above=-999 required=2 tests=[AWL=-0.442, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BJ=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -1.259 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 03:10:02 -0000 ------=_Part_47771_31187468.1155265794391 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline > > > I'm working on porting a gtk software program that runs on linux/windows > to MAC OS X. The prior release of my software works fine on Mac (Tiger) with > the X11 server. I'm trying the native port. I was able to build my Gtk > development environment up to gtk-2.8.20 version ( glib, pango, cairo, > atk, etc all installed "ok" ). But when I go to configure gtk, I get the > error: X development libraries not found. I removed all X11 packages to try > building a vanilla native Mac devel env. > An update to this problem. I was able to compile and get the GTK devel env built on MAC OS X Tiger. And IT WORKS! Albeit, my software has a black screen ( I had problems with libjpeg - which I know how to fix ), and something is wrong with my font set up. I can't figure out the font problem yet. Has anyone run into a problem with loading fonts on application start up? I tried moving the fc-cache program from Gtk/bin to my software program - and after installing a script and running it. The program would start. I had to add the Mac OS X: /Library/Fonts directory to the etc/fonts/fonts.conf file. Here is the error I am getting. Any recomendations? The domain/default pair of (.GlobalPreferences, AppleCollationOrder) does not exist (mudmagic-bin:2001): Pango-WARNING **: No builtin or dynamically loaded modules were found. Pango will not work correctly. This probably means there was an error in the creation of: '/GTK/etc/pango/pango.modules' You should create this file by running pango-querymodules. (mudmagic-bin:2001): Pango-WARNING **: pango_shape called with bad font, expect ugly output (mudmagic-bin:2001): Pango-WARNING **: pango_font_get_glyph_extents called with bad font, expect ugly output (mudmagic-bin:2001): Gdk-WARNING **: Unsupported cursor type 14, using default (mudmagic-bin:2001): Pango-WARNING **: pango_font_get_font_map called with bad font, expect ugly output (mudmagic-bin:2001): Pango-CRITICAL **: _pango_cairo_font_map_get_renderer: assertion `PANGO_IS_CAIRO_FONT_MAP (fontmap)' failed (mudmagic-bin:2001): Pango-WARNING **: _pango_cairo_font_install called with bad font, expect ugly output ============================== BUT, it is working =) And without _any_ X11 application on the box ( I fully removed all traces of X11 before compiling ) These are the install instructions I'm using to build my GTK devel environment. http://cvs.mudmagic.com/co.php/mudmagic_client/macintosh.txt?r=1.2 Any help greatly appreciated. Thank you, Calvin ------=_Part_47771_31187468.1155265794391 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

An update to this problem. I was able to compile and get the GTK devel env built on MAC OS X Tiger. And IT WORKS! Albeit, my software has a black screen ( I had problems with libjpeg - which I know how to fix ), and something is wrong with my font set up. I can't figure out the font problem yet. Has anyone run into a problem with loading fonts on application start up? I tried moving the fc-cache program from Gtk/bin to my software program - and after installing a script and running it. The program would start. I had to add the Mac OS X: /Library/Fonts  directory to the etc/fonts/fonts.conf file.

Here is the error I am getting. Any recomendations?
The domain/default pair of (.GlobalPreferences, AppleCollationOrder) does not exist

(mudmagic-bin:2001): Pango-WARNING **: No builtin or dynamically
loaded modules were found. Pango will not work correctly.
This probably means there was an error in the creation of:
  '/GTK/etc/pango/pango.modules'
You should create this file by running pango-querymodules.

(mudmagic-bin:2001): Pango-WARNING **: pango_shape called with bad font, expect ugly output

(mudmagic-bin:2001): Pango-WARNING **: pango_font_get_glyph_extents called with bad font, expect ugly output

(mudmagic-bin:2001): Gdk-WARNING **: Unsupported cursor type 14, using default

(mudmagic-bin:2001): Pango-WARNING **: pango_font_get_font_map called with bad font, expect ugly output

(mudmagic-bin:2001): Pango-CRITICAL **: _pango_cairo_font_map_get_renderer: assertion `PANGO_IS_CAIRO_FONT_MAP (fontmap)' failed

(mudmagic-bin:2001): Pango-WARNING **: _pango_cairo_font_install called with bad font, expect ugly output
==============================

BUT, it is working =) And without _any_ X11 application on the box ( I fully removed all traces of X11 before compiling )
These are the install instructions I'm using to build my GTK devel environment.
http://cvs.mudmagic.com/co.php/mudmagic_client/macintosh.txt?r=1.2

Any help greatly appreciated.

Thank you,
Calvin

------=_Part_47771_31187468.1155265794391-- From hvreddy1110@gmail.com Fri Aug 11 03:36:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 33B443B0154 for ; Fri, 11 Aug 2006 03:36:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13547-08 for ; Fri, 11 Aug 2006 03:36:31 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by menubar.gnome.org (Postfix) with ESMTP id 143D23B006B for ; Fri, 11 Aug 2006 03:36:30 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so35380pyg for ; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Received: by 10.35.60.16 with SMTP id n16mr5561274pyk; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Message-ID: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> Date: Fri, 11 Aug 2006 13:06:27 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: glib-devel SRPM MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_142424_2640852.1155281787849" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.252 tagged_above=-999 required=2 tests=[AWL=-0.204, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.252 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:36:33 -0000 ------=_Part_142424_2640852.1155281787849 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I have glib-2.4.7 src rpm. But i coudn't get corresponding devel package . Any body has an idea that where i can download glib-devel src rpm. I need it for cross compile. I searched but In all the places only rpms are there. Thanks in advance. Regards, Harsha ------=_Part_142424_2640852.1155281787849 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,
I have glib-2.4.7 src rpm.
But i coudn't get corresponding devel package .
Any body has an idea that where i can download  glib-devel src rpm.
I need it for cross compile.
I searched but In all the places only rpms are there.

Thanks in advance.

Regards,
Harsha
------=_Part_142424_2640852.1155281787849-- From yeti@physics.muni.cz Fri Aug 11 03:40:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3FEEE3B01C2 for ; Fri, 11 Aug 2006 03:40:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13842-10 for ; Fri, 11 Aug 2006 03:40:20 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id A38A93B00C4 for ; Fri, 11 Aug 2006 03:40:17 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7B7eD80023495 for ; Fri, 11 Aug 2006 09:40:14 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 3DAF423D87; Fri, 11 Aug 2006 09:40:13 +0200 (CEST) Date: Fri, 11 Aug 2006 09:40:14 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: glib-devel SRPM Message-ID: <20060811074014.GB5199@potato.chello.upc.cz> References: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:40:22 -0000 On Fri, Aug 11, 2006 at 01:06:27PM +0530, harshavardhanreddy mandeepala wrote: > I have glib-2.4.7 src rpm. > But i coudn't get corresponding devel package . > Any body has an idea that where i can download glib-devel src rpm. There is no glib-devel src.rpm, all binary packages are built from one source package. If you tried to rebuild the package you would immediately find out that. A quick look at the spec file would reveal it too. Yeti -- Anonyms eat their boogers. From linuxhippy@gmail.com Fri Aug 11 03:57:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 97B4D3B01C2 for ; Fri, 11 Aug 2006 03:57:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14822-09 for ; Fri, 11 Aug 2006 03:57:03 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by menubar.gnome.org (Postfix) with ESMTP id 1DB6D3B0075 for ; Fri, 11 Aug 2006 03:57:02 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so41639pyg for ; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Received: by 10.65.59.19 with SMTP id m19mr3657311qbk; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Message-ID: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> Date: Fri, 11 Aug 2006 09:57:00 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155228189.12091.41.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.226 tagged_above=-999 required=2 tests=[AWL=0.174, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.226 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:57:05 -0000 Hi again, Well there has been a lot of discussion about GTKs performance, wether its fast or not. I just found that moving a window on top of a GTK window on Windows I get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that slow or fast ... I don't want to comment. > Also when you drag a window, for example, the redrawing > isn't synchronized to any particular clock, so you get tearing. Windows > also often has tearing when you drag a large window around. Mac does > not, for reasons I'll describe below Tearing is caused by the fact that applications don't paint themself fast enough, not because drawing is not synchronized. Draw a window on top of a maximized xcalc and you won't see any tearing. > screen. Since the OpenGL drawing is very quick, this eliminates redraw > flicker to a large degree (since the flicker is hidden off-screen where > you can't see it). This is basically wrong. Drawing primitives through OpenGL is very likely to be a lot slower than through accalerated X11 drivers, I would give x11perf a try on XGL. I would not consider drawing to be the largest problem anymore, espacially when it comes down to GTK+ performance problems. Readbacks and > Also when you move a window, the window underneath > is intact (it's an opengl texture) so there are *no* expose events > needed. Well thats not OpenGL related and is basically what a Composition manager does. However toolkits should be fast enough also without composition, and a lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, qt, win32, ....). lg Clemens From tml@iki.fi Fri Aug 11 04:25:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 428353B0154 for ; Fri, 11 Aug 2006 04:25:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16588-03 for ; Fri, 11 Aug 2006 04:25:37 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 082273B01C2 for ; Fri, 11 Aug 2006 04:25:35 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCCXLVIII.tun.saunalahti.fi [213.169.31.148]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id E818B2162AA; Fri, 11 Aug 2006 11:25:30 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17628.16132.763000.45282@gargle.gargle.HOWL> Date: Fri, 11 Aug 2006 11:25:40 +0300 To: "Clemens Eisserer" Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 08:25:40 -0000 Clemens Eisserer writes: > I just found that moving a window on top of a GTK window on Windows I > get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that > slow or fast ... I don't want to comment. Feel free to work on this and submit patches. > However toolkits should be fast enough also without composition, and a > lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, > qt, win32, ....). Maybe you should use one of them instead, then? --tml From linuxhippy@gmail.com Fri Aug 11 05:05:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BE67D3B043F for ; Fri, 11 Aug 2006 05:05:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18359-02 for ; Fri, 11 Aug 2006 05:05:38 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 222953B03E5 for ; Fri, 11 Aug 2006 05:05:37 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so63200pyg for ; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Received: by 10.64.241.3 with SMTP id o3mr3698134qbh; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Message-ID: <194f62550608110205j617390afy81cc80b9f1d00ac6@mail.gmail.com> Date: Fri, 11 Aug 2006 11:05:35 +0200 From: "Clemens Eisserer" To: "Tor Lillqvist" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <17628.16132.763000.45282@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <17628.16132.763000.45282@gargle.gargle.HOWL> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.191 tagged_above=-999 required=2 tests=[AWL=0.132, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.191 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 09:05:40 -0000 Hi again, > Feel free to work on this and submit patches. Well I am not interrested in the win32 port. I did already some experiments with tuning GTK on Linux which resulted in a 25%-35% performance increase on nvidia hardware. I also talked with nvidia driver developers about existing problems ... and how they eventually could solve it in their drivers. > Maybe you should use one of them instead, then? Yes right - I try to do this whenever possible. I ran Eclipse hooked on top of Fox as long as SwtFox worked with the Eclipse versions I use, I use KDE and all of its tools. But sometimes I simply can't get arround GTK like when using FireFox, Thunderbird, gaim, gimp or when using my Nokia770 - which is quite fast but definitivly underpowered with its 250mhz arm9 to resize two lists fluently (fltk had no problems at all on the same device, gtk-resize 1fps, fltk:8fps). PalmeSource and Nokia stick at gtk-2.6 because 2.8+ is simply to slow for embedded use. I just think its funny how GTK devs do proceed with preformance related posts. First people are told that the problem they are reporting are very vague and that this is no proof that GTK is slow. Then 50% of the compaining people are quiet. The other 50% submit performance data and results - since these guys can proove that its slow they don't get any replies any more - since they can't be blamed for flaming and nobody feels responsible for investigation. This makes me a bit sad when thinking about the fact that almost everybody in the OSS world is moving to GTK. When looking at blogs like this: http://www.sysinternals.com/blog/2006/07/first-week.html Ms is investigating any report with experts analysing problems through the whole chain of involved components. People report that they have problems and get fooled and ignored ... well .. thats the other way to do it. I wonder who's the fool ... the people complaining or the maintainers ignoring 1+ performance complain per week. Best wishes, lg Clemens From torriem@chem.byu.edu Fri Aug 11 11:07:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D7BC13B0014 for ; Fri, 11 Aug 2006 11:07:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04365-10 for ; Fri, 11 Aug 2006 11:07:14 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id B662F3B000B for ; Fri, 11 Aug 2006 11:07:12 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7BF79N7014825; Fri, 11 Aug 2006 09:07:09 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: Clemens Eisserer In-Reply-To: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> Content-Type: text/plain Date: Fri, 11 Aug 2006 09:07:08 -0600 Message-Id: <1155308828.32140.25.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Fri, 11 Aug 2006 09:07:09 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.535 tagged_above=-999 required=2 tests=[AWL=0.064, BAYES_00=-2.599] X-Spam-Score: -2.535 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 15:07:18 -0000 On Fri, 2006-08-11 at 09:57 +0200, Clemens Eisserer wrote: > Hi again, > > Well there has been a lot of discussion about GTKs performance, wether > its fast or not. > I just found that moving a window on top of a GTK window on Windows I > get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that > slow or fast ... I don't want to comment. GTK performance on Windows is a red herring, really. And from what I can see, probably because of the way windows events work, GTK apps will freeze all their windows while moving the window, so you won't see lags in the repaint; you'll just see nothing until the window is moved and then you'll see the repaint which may or may not be as fast as you think it should be. Under Xgl, and any of the new opengl backends, you should find almost no cpu use when dragging the window. > Tearing is caused by the fact that applications don't paint themself > fast enough, not because drawing is not synchronized. Draw a window on > top of a maximized xcalc and you won't see any tearing. You are wrong. The visible application redraw, either during expose or configure events, is very much a synchronization issue. Sure redrawing at light speed would eliminate the symptom, but it wouldn't address the problem (and it would be very inefficient anyway). Sure Xcalc redraws itself fast enough so as not to have visible redrawing because the ops are very simple. However, most of the time on my fast nvidia graphics card and machine I can't see GTK apps redraw either. GTK is orders of magnitude more complicated and intensive that the Xaw widgets. GTK widgets are all dynamically sized on the fly. That is one reason why GTK may be slower to redraw than Xaw. But Xaw is not very useful and you wouldn't want to make a full app out of it. Back to synchronization. The problem is that as you rapidly move one window past another, or resize a window, the events queue up and ask the app to redraw. However the redraw app will likely have to happen all over again before redraw is finished. So GTK queues up the events, halting the redraw momentarily. The upshot of this is that you save a lot of CPU and in the end redraw faster (cause you're only doing it 5 times instead of 1000), but there is visible stutter. If the redraw events and the movement of the windows are synchronized according to a frame rate, everything does get smoother. The biggest win here is resizing a window. With the proposed X11 synchronization extension stuff (as I understand it), GTK app resizes will be silky smooth (well at a frame-rate your computer can handle CPU-wise). Here is a quote from an unknown source that explains it better: "Because X11 is asynchronous, as the window resizes, configure and expose events are sent to the GTK widgets to get them to redraw. Because of this asynchronous nature, until recently there was no good way to synchronize the redrawing to the actual expanding of the window, as OS X and Windows do. This is changing and a synchronization mechanism is being built into X11 that will allow Gtk (and Qt and any other widget set) to be able to resize fluidly." > This is basically wrong. Drawing primitives through OpenGL is very > likely to be a lot slower than through accalerated X11 drivers, I > would give x11perf a try on XGL. > I would not consider drawing to be the largest problem anymore, > espacially when it comes down to GTK+ performance problems. Readbacks > and No you are incorrect. OpenGL is not only fast at 3d but also 2d. However this is beside the point. Xgl uses OpenGL to display window contents as textures. Thus GTK apps render as normal (or with Cairo) to a texture in memory (just like they did before), but this texture is rendered to the screen, with special effects like shadows and transparency at 30-60 frames per second. Cairo is also moving to render paths directly in OpenGL, which should speed up all advanced Cairo operations. > Well thats not OpenGL related and is basically what a Composition manager does. > However toolkits should be fast enough also without composition, and a > lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, > qt, win32, ....). Of course. But openGL makes the composite manager very fast. In short, composite is slow and CPU intensive without OpenGL. This allows windows to move without any redraw at all, very quickly, and with transparency, 3-d effects, full Xvideo support/emulation, etc. Interestingly enough, I tried out composite years ago back on a Vesa-only X server (some experimental server from freedesktop.org) and even though we *know* that Vesa is slower in every way, composite made it feel faster. It wasn't really, but it seemed that way. With OpenGL it can seem faster and actually be faster too (or at least as fast as it always was). In answer to your original question, GTK apps are double-buffered at the widget level, not the window-contents level. Xgl and AIXGL (composite generally) make all apps "double-buffered" at the window level, eliminating expose redraws entirely, speeding up every window operation except resize, which still depends on the speed at which the widgets can dynamically resize. Once Xgl and AIXGL become widespread, and the synchronization mechanism is released, I doubt you'll find anyone complaining about GTK speed. It's been shown on this list and in other places to largely be a perception issue. Now, GTK2 is slower than GTK1. It's also more complicated. It won't work as well on a 486 or a pentium 1. If you want to target an older, slower platform, or an embedded device, and you think GTK2 is too slow, either real or perceived, then yes, move to another toolkit that's lighter. GTK is advancing far beyond FLTK or many of the other light toolkits. It does more than just GUI stuff. Michael > > lg Clemens > From linuxhippy@gmail.com Fri Aug 11 11:28:12 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E4AAC3B011E for ; Fri, 11 Aug 2006 11:28:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05359-04 for ; Fri, 11 Aug 2006 11:28:09 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.205]) by menubar.gnome.org (Postfix) with ESMTP id 19A333B00A0 for ; Fri, 11 Aug 2006 11:28:08 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so274375nzn for ; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Received: by 10.65.121.9 with SMTP id y9mr4170045qbm; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Message-ID: <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> Date: Fri, 11 Aug 2006 17:28:05 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155308828.32140.25.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.233 tagged_above=-999 required=2 tests=[AWL=0.167, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.233 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 15:28:12 -0000 Hi again, > then you'll see the repaint which may or may not be as fast as you think > it should be. And how can you explain the 100% CPU useage? If it would be idle or supress redraws it would not need that many cycles. > frame rate, everything does get smoother. The biggest win here is > resizing a window. With the proposed X11 synchronization extension > stuff (as I understand it), GTK app resizes will be silky smooth (well > at a frame-rate your computer can handle CPU-wise). A simple example - placing two tables with some data (maybe 10 text clumns) in a PannedWindow maximize the window to 1600x1200 and move the gripper. CPU goes up to 100% while animation is slow. This has nothing to do with event processing - at least 10% of total CPU time is spent in glibs data structures. This is on a 2.6ghz pentium 4 Northwood - so I don't talk about pentium1 or 486. > X11 that will allow Gtk (and Qt and any other widget set) to be able to > resize fluidly." Well I don't have any problems with QT, Fox-Toolkit or Fltk. And I would call QT even more feature-rich and fatter - but it does not suffer from those performance problems. > No you are incorrect. OpenGL is not only fast at 3d but also 2d. > However this is beside the point. OpenGL is fast if you do special stuff thats not possible through X11 (where you would e.g. need software fallbacks) but most guys draw lines and fill rects and this is where OpenGL really sucks - just because its much more complex and has a deeper ... I would call it .. well ... driver pipeline. Thats also why NVIDIA developers said that they would support a major transition to XGL but they would not recommend it from the performance pov. and these guys should know ;-) > Of course. But OpenGL makes the composite manager very fast. In short, > composite is slow and CPU intensive without OpenGL. No - why should it be slow? I don't talk about effects, just good plain old composition maybe with shadows. This can be done through XRENDER without any CPU hit (at least on my nvidia gpu). If you don't use fancy effects composition can even be done using the old "core" instruction set, painting pixmaps is accalerated more or less everywhere. > In answer to your original question, GTK apps are double-buffered at the > widget level, not the window-contents level. GTK's widget are double-buffered at window-level, I would have a look at gdkwindow.c. > I doubt you'll find anyone complaining about GTK speed. > It's been shown on this list and in other places to largely be a > perception issue. Well the example I gave (resizing a PannedWindow with table, tree or richtext widgets) will stay slow or be even slower when running on XGL, its not related to synchronization nore to event-buffering mechanismns, since CPU is working at 100%. I'll work out some benchmarks comparing GTK with QT. Both are feature rich and fat so they can be compared well. I just would like to have results handy - I am tired of explaining again and again why I think GTK is slow (and why do so many others dislike it because of its weak performance?). I am quite sure - if I have the results my code will be as long analyzed to find unfair advantage sof the qt part and if there are none and QT is still faster .... the thread will die and nobody will care. lg Clemens From torriem@chem.byu.edu Fri Aug 11 12:27:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3ECFD3B000B for ; Fri, 11 Aug 2006 12:27:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08351-07 for ; Fri, 11 Aug 2006 12:27:18 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id 441163B0138 for ; Fri, 11 Aug 2006 12:27:17 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7BGREJM026954; Fri, 11 Aug 2006 10:27:14 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: Clemens Eisserer In-Reply-To: <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> Content-Type: text/plain Date: Fri, 11 Aug 2006 10:27:14 -0600 Message-Id: <1155313634.32140.64.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Fri, 11 Aug 2006 10:27:14 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 16:27:21 -0000 On Fri, 2006-08-11 at 17:28 +0200, Clemens Eisserer wrote: > Hi again, > > > then you'll see the repaint which may or may not be as fast as you think > > it should be. > And how can you explain the 100% CPU useage? If it would be idle or > supress redraws it would not need that many cycles. you are talking about Windows here? Or Linux? If it is Windows, well all bets are off. GTK is an X11 toolkit ported to a win32 drawing layer. It is not going to be ideal on Windows. I move my windows on linux and don't wee 100% cpu, except in frequent, occasional (and expected) spikes. > > > frame rate, everything does get smoother. The biggest win here is > > resizing a window. With the proposed X11 synchronization extension > > stuff (as I understand it), GTK app resizes will be silky smooth (well > > at a frame-rate your computer can handle CPU-wise). > A simple example - placing two tables with some data (maybe 10 text > clumns) in a PannedWindow maximize the window to 1600x1200 and move > the gripper. CPU goes up to 100% while animation is slow. > This has nothing to do with event processing - at least 10% of total > CPU time is spent in glibs data structures. This is on a 2.6ghz > pentium 4 Northwood - so I don't talk about pentium1 or 486. Just because 10% of the cpu time is spent in the glibs "data structures" in no way means that it isn't event processing that is taking the time. Event processing (reacting to the events) is handled in the GDK and GTK libs. I am unsure of what you are trying to prove here, other than the 100% cpu usage. > > > X11 that will allow Gtk (and Qt and any other widget set) to be able to > > resize fluidly." > Well I don't have any problems with QT, Fox-Toolkit or Fltk. > And I would call QT even more feature-rich and fatter - but it does > not suffer from those performance problems. Qt *does* have the same problems generally (stuttering, redraws). > > > No you are incorrect. OpenGL is not only fast at 3d but also 2d. > > However this is beside the point. > OpenGL is fast if you do special stuff thats not possible through X11 > (where you would e.g. need software fallbacks) but most guys draw > lines and fill rects and this is where OpenGL really sucks - just > because its much more complex and has a deeper ... I would call it .. > well ... driver pipeline. > Thats also why NVIDIA developers said that they would support a major > transition to XGL but they would not recommend it from the performance > pov. and these guys should know ;-) You're missing the point. Xgl currently doesn't use OpenGL for rectangles and lines. It uses OpenGL to rapidly render textures. So there's no speed penalty at all. And frankly the NVidia comments are bogus, or at least misunderstood by you. Xgl is an X server that runs on top of X11, so there's overhead there. NVidia *is* supporting the method used by AIXGL, which *is* fast. These technologies *will* make everything including Qt, Gtk, FLTK feel faster (except in your divider drag example). > > > Of course. But OpenGL makes the composite manager very fast. In short, > > composite is slow and CPU intensive without OpenGL. > No - why should it be slow? I don't talk about effects, just good > plain old composition maybe with shadows. This can be done through > XRENDER without any CPU hit (at least on my nvidia gpu). If you don't > use fancy effects composition can even be done using the old "core" > instruction set, painting pixmaps is accalerated more or less > everywhere. Umm composite is naturally slow because each window layer has to be mathematically combined together before displaying on the window. OpenGL offloads this to the render hardware which does this kind of thing at 60 frames a second. Yes Nvidia's driver can offload composite to the card. But in the case of the nvidia driver, composite is very buggy and it is recommended you disable it. BUT, as you know perfectly well, with composite turned on, moving one GTK window across another feels fast and smooth with no tearing or stuttering. Xgl and AIXGL make composite a stable standard. > > > In answer to your original question, GTK apps are double-buffered at the > > widget level, not the window-contents level. > GTK's widget are double-buffered at window-level, I would have a look > at gdkwindow.c. Each GTK application window consists of dozens or hundreds of gdk windows. In X terminology, a window is a small region that accepts events from the X server. Each widget that receives events like clicks is a GdkWindow (and also an X Window). I could be wrong, but I believe that this point has caused you to understand GdkWindows and double- buffering incorrectly. Therefore, I don't believe GTK apps are double-buffered at the window- contents level. If they are, I believe the code would be in GtkWindow, not GdkWindow. Besides that, it's really not GTK's place to double-buffer the entire application window. That's the responsibility of the X server (and composite does do this). > > > I doubt you'll find anyone complaining about GTK speed. > > It's been shown on this list and in other places to largely be a > > perception issue. By chopping up my comments you are taking them out of context. I didn't say "I doubt you'll find anyone complaining about GTK speed." I said that with Xgl or AIXGL, combined with the synchronization stuff, then I doubt that you will find that. > Well the example I gave (resizing a PannedWindow with table, tree or > richtext widgets) will stay slow or be even slower when running on > XGL, its not related to synchronization nore to event-buffering > mechanismns, since CPU is working at 100%. All resizing problems can be helped by synchronization. In situation it is probably the complicated calculations being run to dynamically resize the widgets that is taking 100% of the cpu. However I don't know. > > I'll work out some benchmarks comparing GTK with QT. Both are feature > rich and fat so they can be compared well. I just would like to have > results handy - I am tired of explaining again and again why I think > GTK is slow (and why do so many others dislike it because of its weak > performance?). I am quite sure - if I have the results my code will be > as long analyzed to find unfair advantage sof the qt part and if there > are none and QT is still faster .... the thread will die and nobody > will care. Proper benchmarks will always be useful and acceptable to the GTK developers I think. Then at least there will be real numbers to discuss with you. Likely this thread will die. It's not that no one cares; it's that, likely due to the e-mail medium, it is difficult to have a constructive discussion about this. The last exchange you had with the list left many people feeling frustrated. > > lg Clemens > From linuxhippy@gmail.com Fri Aug 11 13:15:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 77A643B006E for ; Fri, 11 Aug 2006 13:15:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10375-09 for ; Fri, 11 Aug 2006 13:15:51 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 868613B0098 for ; Fri, 11 Aug 2006 13:15:46 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so290417nzn for ; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Received: by 10.64.179.11 with SMTP id b11mr4334937qbf; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Message-ID: <194f62550608111015u3465af41ua512524783428845@mail.gmail.com> Date: Fri, 11 Aug 2006 19:15:44 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155313634.32140.64.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> <1155313634.32140.64.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.236 tagged_above=-999 required=2 tests=[AWL=0.164, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.236 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 17:15:52 -0000 Hi again, > libs. I am unsure of what you are trying to prove here, other than the > 100% cpu usage. I prove here that the argument "gtk is collapsing events to consume less cpu" is not valid for this case. > Qt *does* have the same problems generally (stuttering, redraws). Well not that much on my machine, maybe this varies. At least trolltech is working on performance (QT4 was mainly a performance/footprint release) instead of ignoring it. (KDE devs said to expect about 30% better gui performance jsut by switching to QT4). If you report a performance problem in qt's lists you find at least an angineer talking to you - and adressing it if its really a problem. The same way does SUN with java - I know I've filed about 30 bugs (not performance related) which got accapted. > You're missing the point. Xgl currently doesn't use OpenGL for > rectangles and lines. It uses OpenGL to rapidly render textures. So > there's no speed penalty at all. Well if it does it in software it is: * slow anyway * cpu hogging * need to copy system-ram to vram which is basically ... well god damn slow. > And frankly the NVidia comments are bogus, or at least misunderstood by > you. Xgl is an X server that runs on top of X11, so there's overhead > there. Well XGL just uses the "underlaying" X-Server for input and mode-setting and stuff like that. So if we're talking about even delevery than yes there is overhead. For drawing theres none (except you use indirect GLX in the host-x-server). > NVidia *is* supporting the method used by AIXGL, which *is* > fast. These technologies *will* make everything including Qt, Gtk, FLTK > feel faster (except in your divider drag example). Yes but AIXGL does not use OpenGL for rendering, just for composition. Furthermore NVIDIA does not support the tuxture_to_pixmap extension (or how that stuff is called) till now. > buggy and it is recommended you disable it. BUT, as you know perfectly > well, with composite turned on, moving one GTK window across another > feels fast and smooth with no tearing or stuttering. First of all its the same when moving on top of OpenGL. OpenGL drivers are far from beeing perfect and because openGL is a much more complex topic than XRender its a lot more work to get opengl drivers up and running that host X11 instead of just plain old exa drivers. I saw the proof when Sun implemented Java2d on topi of opengl - crashes, rendering artifacts and so on - they filed tons of driver bug-reports to both ATI and NVidia. Furthermore this does nothing more than hiding existing problems. As long as I move windows arround everything is fine, but as soon as I resize it or force repaint/relayouting it will be as slow as ever, maybe even slower because of the additional overhead. > that this point has caused you to understand GdkWindows and double- > buffering incorrectly. Well not all widget are GdkWindows as you noticed correctly - but from the X point of view double buffering happens at window-level. Otherwise you should say "top-window level". Furthermore the many-window model GTK uses is really inefficient for Composition - since each window's content needs to be stored inside of pixmaps. Even a single maximized GFTP window contains 15mb of pixmap data if you enable composition. You end up with having hundreds of small to medium-sized pixmap for composition - where most of them is hidden anyway by other subwindows. > Besides that, it's really not GTK's place to double-buffer the entire > application window. That's the responsibility of the X server (and > composite does do this). Wrong there was a discussion on xorg started by me where Xorg developers explaind very well why Composite is not suited for double buffering. > All resizing problems can be helped by synchronization. In situation it > is probably the complicated calculations being run to dynamically resize > the widgets that is taking 100% of the cpu. However I don't know. Yes but then those are slow and need tuning. I don't see how synchronization could help here (btw as I say at least 5% are spent only in hashtable lookups!), synchronization would eliminate the flicker and half-moved windows when dragging windows really fast - but synchronization will not speed it up. > discussion about this. The last exchange you had with the list left > many people feeling frustrated. Well the last exchange I had with this list were questions about GDK/Gtk's internal stuff since I set down and did some tweaking - and got 35% more performance on my nvidia board. As soon as it started to be medium-level questions nobody answered, this leads me to the conclusion that either nobody cares about how GTK could be made faster (even if theres someone working on it) or nobody really has any clue what the hell is going on inside of GTK - at least thats how the source looks. lg Clemens From frido@q-software-solutions.de Sat Aug 12 02:32:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D0D343B006C for ; Sat, 12 Aug 2006 02:32:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10887-10 for ; Sat, 12 Aug 2006 02:32:47 -0400 (EDT) Received: from mail.q-software-solutions.de (213-239-199-47.clients.your-server.de [213.239.199.47]) by menubar.gnome.org (Postfix) with ESMTP id 90B753B0003 for ; Sat, 12 Aug 2006 02:32:46 -0400 (EDT) Received: from p54a36654.dip.t-dialin.net ([84.163.102.84] helo=flarge.here) by mail.q-software-solutions.de with esmtpa (Exim 4.50) id 1GBn37-0001Bz-6s for gtk-list@gnome.org; Sat, 12 Aug 2006 08:32:45 +0200 Received: from frido by flarge.here with local (Exim 4.60) (envelope-from ) id 1GBf54-0000sV-O3 for gtk-list@gnome.org; Sat, 12 Aug 2006 00:02:14 +0200 To: gtk-list@gnome.org From: Friedrich Dominicus Organization: Q Software Solutions GmbH Date: Sat, 12 Aug 2006 00:02:14 +0200 Message-ID: <87u04jlymx.fsf@flarge.here> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.18 (linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SA-Exim-Connect-IP: 84.163.102.84 X-SA-Exim-Mail-From: frido@q-software-solutions.de Subject: gtk on 64-bit Windows OSes? X-SA-Exim-Version: 4.2.1 (built Mon, 27 Mar 2006 13:42:28 +0200) X-SA-Exim-Scanned: Yes (on mail.q-software-solutions.de) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.025 tagged_above=-999 required=2 tests=[AWL=-0.388, BAYES_00=-2.599, DATE_IN_PAST_06_12=0.827, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.025 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 06:32:48 -0000 Does anyone has this combination running? Regards Friedrich From tml@iki.fi Sat Aug 12 03:41:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1834D3B0113 for ; Sat, 12 Aug 2006 03:41:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13670-01 for ; Sat, 12 Aug 2006 03:41:54 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 62F6C3B006C for ; Sat, 12 Aug 2006 03:41:54 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCCXLVIII.tun.saunalahti.fi [213.169.31.148]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 49EB92162C2; Sat, 12 Aug 2006 10:41:51 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17629.34382.403000.84351@gargle.gargle.HOWL> Date: Sat, 12 Aug 2006 10:42:06 +0300 To: Friedrich Dominicus Subject: gtk on 64-bit Windows OSes? In-Reply-To: <87u04jlymx.fsf@flarge.here> References: <87u04jlymx.fsf@flarge.here> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 07:41:56 -0000 Friedrich Dominicus writes: > Does anyone has this combination running? No. --tml From gnome-gtk-list@m.gmane.org Sat Aug 12 05:58:44 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 806113B0003 for ; Sat, 12 Aug 2006 05:58:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18888-10 for ; Sat, 12 Aug 2006 05:58:43 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id 7F9C03B006E for ; Sat, 12 Aug 2006 05:58:42 -0400 (EDT) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GBqGK-0005Li-Lo for gtk-list@gnome.org; Sat, 12 Aug 2006 11:58:36 +0200 Received: from 84.52.165.220 ([84.52.165.220]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 12 Aug 2006 11:58:36 +0200 Received: from jernej.listsonly by 84.52.165.220 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 12 Aug 2006 11:58:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Jernej =?utf-7?Q?Simon+AQ0-i+AQ0-?= Subject: Re: gtk on 64-bit Windows OSes? Date: Sat, 12 Aug 2006 11:58:21 +0200 Lines: 9 Message-ID: <1krtl57lvod68$.11nwbvell8d91$.dlg@40tude.net> References: <87u04jlymx.fsf@flarge.here> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-7" Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 84.52.165.220 User-Agent: 40tude_Dialog/2.0.15.84 (b70ca7b4.298.344) X-Face: %[WXM5!\pKCy(*!C)<8@PtPR(t'|H Zwo" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.97 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, FROM_EXCESS_QP=0, RCVD_NUMERIC_HELO=1.5, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.97 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 09:58:44 -0000 On Sat, 12 Aug 2006 00:02:14 +-0200, Friedrich Dominicus wrote: > Does anyone has this combination running? Only 32bit GTK+-. -- < Jernej Simon+AQ0-i+AQ0- >< http://deepthought.ena.si/ > < Contact address: >< jernej simoncic at isg si > From lists@nabble.com Sat Aug 12 06:27:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1EBD73B0091 for ; Sat, 12 Aug 2006 06:27:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20341-01 for ; Sat, 12 Aug 2006 06:27:23 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0A9D63B006E for ; Sat, 12 Aug 2006 06:27:23 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GBqiA-00049y-HG for gtk-list@gnome.org; Sat, 12 Aug 2006 03:27:22 -0700 Message-ID: <5774441.post@talk.nabble.com> Date: Sat, 12 Aug 2006 03:27:22 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: tooltips MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.331 tagged_above=-999 required=2 tests=[AWL=-0.751, BAYES_20=-0.74, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.331 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 10:27:24 -0000 tooltpis for treeitems in tree view. i want to put a tooltips for treeview items. i tried GtkTooltips to trree view but -- View this message in context: http://www.nabble.com/tooltips-tf2094772.html#a5774441 Sent from the Gtk+ - General forum at Nabble.com. From lists@nabble.com Sat Aug 12 06:27:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BC2073B04B8 for ; Sat, 12 Aug 2006 06:27:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20229-06 for ; Sat, 12 Aug 2006 06:27:51 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id E94AF3B0148 for ; Sat, 12 Aug 2006 06:27:50 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GBqib-0004AW-TY for gtk-list@gnome.org; Sat, 12 Aug 2006 03:27:49 -0700 Message-ID: <5774441.post@talk.nabble.com> Date: Sat, 12 Aug 2006 03:27:22 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: tooltips MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.321 tagged_above=-999 required=2 tests=[AWL=-0.741, BAYES_20=-0.74, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.321 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 10:27:52 -0000 tooltpis for treeitems in tree view. i want to put a tooltips for treeview items. i tried GtkTooltips to trree view but not working. please help. -- View this message in context: http://www.nabble.com/tooltips-tf2094772.html#a5774441 Sent from the Gtk+ - General forum at Nabble.com. From philip@lawatsch.at Sun Aug 13 11:48:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 63E2B3B00F3 for ; Sun, 13 Aug 2006 11:48:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06935-04 for ; Sun, 13 Aug 2006 11:48:52 -0400 (EDT) Received: from smtp-1.edis.at (mail.customers.edis.at [62.99.242.131]) by menubar.gnome.org (Postfix) with ESMTP id 5DA213B0092 for ; Sun, 13 Aug 2006 11:48:51 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by smtp-1.edis.at (Postfix) with ESMTP id 04FF1931F2 for ; Sun, 13 Aug 2006 17:48:49 +0200 (CEST) Received: from smtp-1.edis.at ([127.0.0.1]) by localhost (smtp-1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 07603-05-2 for ; Sun, 13 Aug 2006 17:48:47 +0200 (CEST) Received: from webmail.waug.at (83-65-233-182.dynamic.xdsl-line.inode.at [83.65.233.182]) by smtp-1.edis.at (Postfix) with ESMTP id 9BABB931F3 for ; Sun, 13 Aug 2006 17:48:47 +0200 (CEST) Received: from [192.168.1.7] (icefox.internal.waug.at [192.168.1.7]) by webmail.waug.at (Postfix) with ESMTP id 2DE9E81151D1 for ; Sun, 13 Aug 2006 17:48:46 +0200 (CEST) Message-ID: <44DF49E1.6030604@lawatsch.at> Date: Sun, 13 Aug 2006 17:48:49 +0200 From: Philip Lawatsch User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: GtkTreeView, Multiselect and editable CellRenderer Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by edis.at Virus-Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.129 tagged_above=-999 required=2 tests=[AWL=0.335, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.129 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Aug 2006 15:48:56 -0000 Hi, I've got a really simple data model for my TreeView, basically it's just a list with 2 colums, one of which is editable. Now one thing that would be nice to have is to select more than one row and set the value of all selected rows to a new value by editing the text in one CellRenderer. Is this supported by GtkTreeView? I thought it was not, but now I found out that I can actually do this (for CellRendererText) by .) Selecting the rows .) DoubleClicking onto the renderer with the alt key held down .) Clicking with alt released once more. In this I get the callback from the renderer I edited and then can use the selections to find out which rows were selected. Timing constraints for the click sequence however are very tight so I'm not sure if this is intended behaviour or a bug. So, is there any support for editing several cells / rows at once? kind regards Philip From billcu1@verizon.net Sun Aug 13 23:35:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B3CC3B00D7 for ; Sun, 13 Aug 2006 23:35:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32307-06 for ; Sun, 13 Aug 2006 23:35:39 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id ADF8E3B0134 for ; Sun, 13 Aug 2006 23:35:38 -0400 (EDT) Received: from win98 ([71.251.249.62]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Y00KACXYUD0F4@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sun, 13 Aug 2006 22:35:19 -0500 (CDT) Date: Sun, 13 Aug 2006 23:33:53 -0400 From: "Bill Cunningham" Subject: gtk installation To: Message-id: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.941 tagged_above=-999 required=2 tests=[AWL=-0.044, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_KG=0.077] X-Spam-Score: 1.941 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 03:35:40 -0000 Well I started over again installed pkg-config. Set the variable in .bash_profile and installed glib fine. Then I tried atk. Atk could find pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that variable that didn't work. I tried setting the path in ld.so.conf and ran ldconfig. That didn't work. I looked into Sergei's tool and couldn't get anywhere there either. I have X installed too. I tried pkg-config --cflag glib-2.0 and got part of a compiler line but I don't know where to put it. pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm trying to get configure to work. I've tried all I know to try. Bill From tonikitoo@gmail.com Mon Aug 14 00:01:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C9C373B0078 for ; Mon, 14 Aug 2006 00:01:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00805-03 for ; Mon, 14 Aug 2006 00:01:24 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id 9DDF13B0018 for ; Mon, 14 Aug 2006 00:01:23 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id n15so1546954nfc for ; Sun, 13 Aug 2006 21:01:23 -0700 (PDT) Received: by 10.78.170.17 with SMTP id s17mr3078200hue; Sun, 13 Aug 2006 21:01:22 -0700 (PDT) Received: by 10.78.194.19 with HTTP; Sun, 13 Aug 2006 21:01:22 -0700 (PDT) Message-ID: <7eb9ad710608132101l659a7568o50dce834fefd8075@mail.gmail.com> Date: Mon, 14 Aug 2006 00:01:22 -0400 From: "Antonio Gomes" To: gtk-list@gnome.org Subject: Getting gdkwindow from Display or Window ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_10108_26869754.1155528082952" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.159 tagged_above=-999 required=2 tests=[AWL=0.086, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_DK=0.077, TW_GD=0.077] X-Spam-Score: -2.159 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 04:01:25 -0000 ------=_Part_10108_26869754.1155528082952 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, I'd like to get a gdk_window instance of an window without having much information about such window (I am not quite sure if it is possible though). Currently I am try to do this (wrongly) as following : (...) // getting the gdk_window object needed by gtk_im_* stuff. Display *display = GDK_DISPLAY (); if (!display) return NS_ERROR_UNEXPECTED; GdkDisplay* gdk_display = gdk_x11_lookup_xdisplay (display); if (!gdk_display) return NS_ERROR_UNEXPECTED; // maybe here I have to get a "Window *" , but how??? // FIXME: Get the right gdkwindow here !!! mGdkWindow = (GdkWindow *) gdk_display_get_default_group (gdk_display); if (!mGdkWindow) return NS_ERROR_UNEXPECTED; (...) it's getting me the wrong gdkwindow. Is it possible to do what I want to ? Am I missing ? regards -- --Antonio Gomes Nokia Technology Institute ------=_Part_10108_26869754.1155528082952 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all,

I'd like to get a gdk_window instance of an window without having much information about such window (I am not quite sure if it is possible though). Currently I am try to do this (wrongly) as following :

(...)

  // getting the gdk_window object needed by gtk_im_* stuff.

  Display *display = GDK_DISPLAY ();
  if (!display) return NS_ERROR_UNEXPECTED;

  GdkDisplay* gdk_display = gdk_x11_lookup_xdisplay (display);
  if (!gdk_display) return NS_ERROR_UNEXPECTED;

  // maybe here I have to get a "Window *" , but how???

  // FIXME: Get the right gdkwindow here !!!
  mGdkWindow =
            (GdkWindow *) gdk_display_get_default_group (gdk_display);

  if (!mGdkWindow) return NS_ERROR_UNEXPECTED;
(...)

it's getting me the wrong gdkwindow.

Is it possible to do what I want to ? Am I missing ?

regards

--
--Antonio Gomes
Nokia Technology Institute
------=_Part_10108_26869754.1155528082952-- From sergstesh@yahoo.com Mon Aug 14 04:21:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A81AF3B01AB for ; Mon, 14 Aug 2006 04:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11420-04 for ; Mon, 14 Aug 2006 04:21:38 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 75D2F3B0164 for ; Mon, 14 Aug 2006 04:21:38 -0400 (EDT) Received: (qmail 27567 invoked by uid 60001); 14 Aug 2006 08:21:38 -0000 Message-ID: <20060814082138.27565.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35204.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 01:21:38 PDT Date: Mon, 14 Aug 2006 01:21:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk installation To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.575 tagged_above=-999 required=2 tests=[AWL=-1.485, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.575 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 08:21:39 -0000 --- Bill Cunningham wrote: > Well I started over again installed pkg-config. Set the variable in > .bash_profile and installed glib fine. Then I tried atk. Atk could find > pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that > variable that didn't work. I tried setting the path in ld.so.conf and ran > ldconfig. That didn't work. I looked into Sergei's tool and couldn't get > anywhere there either. I have X installed too. I tried pkg-config --cflag > glib-2.0 and got part of a compiler line but I don't know where to put it. > pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm > trying to get configure to work. I've tried all I know to try. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And what about my tool ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Mon Aug 14 04:22:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 646263B00AC for ; Mon, 14 Aug 2006 04:22:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11235-09 for ; Mon, 14 Aug 2006 04:22:13 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 649413B0164 for ; Mon, 14 Aug 2006 04:22:13 -0400 (EDT) Received: (qmail 98187 invoked by uid 60001); 14 Aug 2006 08:22:12 -0000 Message-ID: <20060814082212.98185.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35209.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 01:22:12 PDT Date: Mon, 14 Aug 2006 01:22:12 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk installation To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.566 tagged_above=-999 required=2 tests=[AWL=-1.476, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.566 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 08:22:14 -0000 --- Bill Cunningham wrote: > Well I started over again installed pkg-config. Set the variable in > .bash_profile and installed glib fine. Then I tried atk. Atk could find > pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that > variable that didn't work. I tried setting the path in ld.so.conf and ran > ldconfig. That didn't work. I looked into Sergei's tool and couldn't get > anywhere there either. I have X installed too. I tried pkg-config --cflag > glib-2.0 and got part of a compiler line but I don't know where to put it. > pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm > trying to get configure to work. I've tried all I know to try. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And what about my tool ? I mean, what were the errors if any ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Mon Aug 14 13:02:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CBBD3B0002 for ; Mon, 14 Aug 2006 13:02:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03418-01 for ; Mon, 14 Aug 2006 13:02:06 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id A36D63B0017 for ; Mon, 14 Aug 2006 13:02:06 -0400 (EDT) Received: from win98 ([141.153.51.118]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Z00GFZZAPEY20@vms040.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 12:01:38 -0500 (CDT) Date: Mon, 14 Aug 2006 13:00:11 -0400 From: "Bill Cunningham" Subject: variables To: Message-id: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.908 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.908 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:02:09 -0000 Can someone help explain to me the LD_LIBRARIES_PATH variables? Pkg-config recognizes several glib related libraries and exports libs. I can get pkg-config to spit out some compiler switches but I don't know where to put them. I think the above stated variable is the sticky point. Bill From etchstable@gmail.com Mon Aug 14 13:05:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5F6393B0018 for ; Mon, 14 Aug 2006 13:05:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03425-05 for ; Mon, 14 Aug 2006 13:05:34 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by menubar.gnome.org (Postfix) with ESMTP id 973D43B0094 for ; Mon, 14 Aug 2006 13:05:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so412068nzn for ; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Received: by 10.65.51.16 with SMTP id d16mr2928489qbk; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Received: by 10.65.210.11 with HTTP; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Message-ID: <3022cc00608141005ve096bcdue629b05f7164d6b8@mail.gmail.com> Date: Mon, 14 Aug 2006 19:05:33 +0200 From: "theo crite" To: gtk-list@gnome.org Subject: (long) glib 2.10.3 failed to compile on hpux and Irix In-Reply-To: <3022cc00608141000t3cc91e67v535d3db136c09cc6@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <3022cc00608141000t3cc91e67v535d3db136c09cc6@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.367 tagged_above=-999 required=2 tests=[AWL=1.956, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GF=0.077] X-Spam-Score: -0.367 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:05:37 -0000 Hi, I'm having trouble to compile glib-2.10.3 on Irix and HPUX. I compiled all the dependences (expat, freetype, fontconfig, gettext, libiconv, zlib, poppler) and all make check were totaly succesfull exept gettext (All 226 tests passed (23 tests were not run) on Irix and 24 of 227 tests failed (22 tests were not run) on hpux). Here is the configure for SGI : ================================ LDFLAGS='-lintl -lgettextsrc' ./configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu checking for a BSD-compatible install... /tmp/utils/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... mips-sgi-irix6.5 checking host system type... mips-sgi-irix6.5 checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for c++... c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /tmp/utils/bin/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... perl5 checking for indent... no checking for perl5... /usr/bin/perl5 checking for libiconv_open in -liconv... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking whether we are using the GNU C Library 2.1 or newer... no checking Whether to cache iconv descriptors... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... no checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dgettext in -lintl... yes checking for bind_textdomain_codeset... yes checking for msgfmt... no configure: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ Folowing, part of config.log : ================================ ## --------- ## ## Platform. ## ## --------- ## hostname = octane uname -m = IP30 uname -r = 6.5 uname -s = IRIX64 uname -v = 07201608 /usr/bin/uname -p = mips /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown ... [SNIP] ... configure:7098: checking for bind_textdomain_codeset configure:7155: gcc -o conftest -g -O2 -lintl -lgettextsrc conftest.c -lintl >&5 ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libintl.so is not used for resolving any symbol. ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libgettextsrc.so is not used for resolving any symbol. ld32: WARNING 85: definition of locale_charset in /tmp/compil/gettext-0.14.5/lib/libintl.so preempts that definition in /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3. ld32: WARNING 85: definition of __register_frame in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_table in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_table_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_table in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame_info_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame_info in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of _Unwind_Find_FDE in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of locale_charset in /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3 preempts that definition in /tmp/compil/gettext-0.14.5/lib/libgettextlib-0.14.5.so. configure:7161: $? = 0 configure:7165: test -z || test ! -s conftest.err configure:7168: $? = 0 configure:7171: test -s conftest configure:7174: $? = 0 configure:7186: result: yes configure:7226: checking for msgfmt configure:7256: result: no configure:7708: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ For HPUX : CFLAGS="-lintl -lgettextsrc" . /configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu checking for a BSD-compatible install... /tmp/utils/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... hppa1.1-hp-hpux11.00 checking host system type... hppa1.1-hp-hpux11.00 checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for c++... c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /tmp/utils/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... perl5 checking for indent... no checking for perl5... /usr/bin/perl5 checking for libiconv_open in -liconv... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking whether we are using the GNU C Library 2.1 or newer... no checking Whether to cache iconv descriptors... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... no checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dgettext in -lintl... yes checking for bind_textdomain_codeset... yes checking for msgfmt... no configure: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ And the config.log : ================================ ## --------- ## ## Platform. ## ## --------- ## hostname = hpux4 uname -m = 9000/813 uname -r = B.11.00 uname -s = HP-UX uname -v = A /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown ... [snip] ... configure:6153: checking locale.h usability configure:6165: gcc -c -lintl -lgettextsrc conftest.c >&5 gcc: -lintl: linker input file unused because linking not done gcc: -lgettextsrc: linker input file unused because linking not done configure:6171: $? = 0 configure:6175: test -z || test ! -s conftest.err configure:6178: $? = 0 configure:6181: test -s conftest.o configure:6184: $? = 0 configure:6194: result: yes configure:6198: checking locale.h presence configure:6208: gcc -E conftest.c configure:6214: $? = 0 configure:6234: result: yes configure:6269: checking for locale.h configure:6276: result: yes configure:6290: checking for LC_MESSAGES configure:6311: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6317: $? = 0 configure:6321: test -z || test ! -s conftest.err configure:6324: $? = 0 configure:6327: test -s conftest configure:6330: $? = 0 configure:6342: result: yes configure:6371: checking libintl.h usability configure:6383: gcc -c -lintl -lgettextsrc conftest.c >&5 gcc: -lintl: linker input file unused because linking not done gcc: -lgettextsrc: linker input file unused because linking not done configure:6389: $? = 0 configure:6393: test -z || test ! -s conftest.err configure:6396: $? = 0 configure:6399: test -s conftest.o configure:6402: $? = 0 configure:6412: result: yes configure:6416: checking libintl.h presence configure:6426: gcc -E conftest.c configure:6432: $? = 0 configure:6452: result: yes configure:6487: checking for libintl.h configure:6494: result: yes configure:6505: checking for ngettext in libc configure:6528: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6534: $? = 0 configure:6538: test -z || test ! -s conftest.err configure:6541: $? = 0 configure:6544: test -s conftest configure:6547: $? = 0 configure:6560: result: yes configure:6564: checking for dgettext in libc configure:6587: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6593: $? = 0 configure:6597: test -z || test ! -s conftest.err configure:6600: $? = 0 configure:6603: test -s conftest configure:6606: $? = 0 configure:6619: result: yes configure:6628: checking for bind_textdomain_codeset configure:6685: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6691: $? = 0 configure:6695: test -z || test ! -s conftest.err configure:6698: $? = 0 configure:6701: test -s conftest configure:6704: $? = 0 configure:6716: result: yes configure:7226: checking for msgfmt configure:7256: result: no configure:7708: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ====================== I've double checked my PATH, includes and libraries. Now, I'm stuck. What can/should I do ? Any help is appreciated. From sergstesh@yahoo.com Mon Aug 14 13:16:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 46DB33B0002 for ; Mon, 14 Aug 2006 13:16:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03770-09 for ; Mon, 14 Aug 2006 13:16:10 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id E7FCA3B002C for ; Mon, 14 Aug 2006 13:16:09 -0400 (EDT) Received: (qmail 42356 invoked by uid 60001); 14 Aug 2006 17:16:09 -0000 Message-ID: <20060814171609.42353.qmail@web35205.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35205.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 10:16:09 PDT Date: Mon, 14 Aug 2006 10:16:09 -0700 (PDT) From: Sergei Steshenko Subject: Re: variables To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.596 tagged_above=-999 required=2 tests=[AWL=-1.429, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.596 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:16:11 -0000 --- Bill Cunningham wrote: > Can someone help explain to me the LD_LIBRARIES_PATH variables? > Pkg-config recognizes several glib related libraries and exports libs. I can > get pkg-config to spit out some compiler switches but I don't know where to > put them. I think the above stated variable is the sticky point. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is what to read: http://www.tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html . But my tool sets it automatically, and I haven't seen a single error message from you regarding my tool. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Mon Aug 14 13:20:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A52833B0017 for ; Mon, 14 Aug 2006 13:20:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03938-06 for ; Mon, 14 Aug 2006 13:20:11 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 3C08E3B0002 for ; Mon, 14 Aug 2006 13:20:11 -0400 (EDT) Received: (qmail 26886 invoked by uid 60001); 14 Aug 2006 17:20:10 -0000 Message-ID: <20060814172010.26884.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35210.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 10:20:10 PDT Date: Mon, 14 Aug 2006 10:20:10 -0700 (PDT) From: Sergei Steshenko Subject: Re: (long) glib 2.10.3 failed to compile on hpux and Irix To: theo crite , gtk-list@gnome.org In-Reply-To: <3022cc00608141005ve096bcdue629b05f7164d6b8@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.587 tagged_above=-999 required=2 tests=[AWL=-1.420, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GF=0.077] X-Spam-Score: -0.587 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:20:14 -0000 --- theo crite wrote: > Hi, > > I'm having trouble to compile glib-2.10.3 on Irix and HPUX. > I compiled all the dependences (expat, freetype, fontconfig, gettext, > libiconv, zlib, poppler) and all make check were totaly succesfull > exept gettext (All 226 tests passed (23 tests were not run) on Irix > and 24 of 227 tests failed (22 tests were not run) on hpux). > > Here is the configure for SGI : > > ================================ > LDFLAGS='-lintl -lgettextsrc' ./configure > --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... mips-sgi-irix6.5 > checking host system type... mips-sgi-irix6.5 > checking for the BeOS... no > checking for Win32... no > checking whether to enable garbage collector friendliness... no > checking whether to disable memory pools... no > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ANSI C... none needed > checking for style of include used by make... GNU > checking dependency style of gcc... gcc3 > checking for c++... c++ > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking for gcc option to accept ANSI C... none needed > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... no > checking for _LARGE_FILES value needed for large files... no > checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config > checking for gawk... (cached) gawk > checking for perl5... perl5 > checking for indent... no > checking for perl5... /usr/bin/perl5 > checking for libiconv_open in -liconv... yes > checking how to run the C preprocessor... gcc -E > checking for egrep... grep -E > checking whether we are using the GNU C Library 2.1 or newer... no > checking Whether to cache iconv descriptors... yes > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... no > checking for unistd.h... yes > checking locale.h usability... yes > checking locale.h presence... yes > checking for locale.h... yes > checking for LC_MESSAGES... yes > checking libintl.h usability... yes > checking libintl.h presence... yes > checking for libintl.h... yes > checking for ngettext in libc... no > checking for bindtextdomain in -lintl... yes > checking for ngettext in -lintl... yes > checking for dgettext in -lintl... yes > checking for bind_textdomain_codeset... yes > checking for msgfmt... no > configure: error: > *** You must have either have gettext support in your C library, or use the > *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html > ================================ > > Folowing, part of config.log : > ================================ > ## --------- ## > ## Platform. ## > ## --------- ## > > hostname = octane > uname -m = IP30 > uname -r = 6.5 > uname -s = IRIX64 > uname -v = 07201608 > > /usr/bin/uname -p = mips > /bin/uname -X = unknown > > /bin/arch = unknown > /usr/bin/arch -k = unknown > /usr/convex/getsysinfo = unknown > hostinfo = unknown > /bin/machine = unknown > /usr/bin/oslevel = unknown > /bin/universe = unknown > > ... > [SNIP] > ... > > configure:7098: checking for bind_textdomain_codeset > configure:7155: gcc -o conftest -g -O2 -lintl -lgettextsrc conftest.c > -lintl >&5 > ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libintl.so is not > used for resolving any symbol. > ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libgettextsrc.so is > not used for resolving any symbol. > ld32: WARNING 85: definition of locale_charset in > /tmp/compil/gettext-0.14.5/lib/libintl.so preempts that definition in > /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3. > ld32: WARNING 85: definition of __register_frame in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_table in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_table_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_table in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame_info_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame_info in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of _Unwind_Find_FDE in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of locale_charset in > /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3 preempts that definition > in /tmp/compil/gettext-0.14.5/lib/libgettextlib-0.14.5.so. > configure:7161: $? = 0 > configure:7165: test -z > || test ! -s conftest.err > configure:7168: $? = 0 > configure:7171: test -s conftest > configure:7174: $? = 0 > configure:7186: result: yes > configure:7226: checking for msgfmt > configure:7256: result: no > configure:7708: error: > *** You must have either have gettext support in your C library, or use the > *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html > ================================ > > > For HPUX : > CFLAGS="-lintl -lgettextsrc" . > /configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... hppa1.1-hp-hpux11.00 > checking host system type... hppa1.1-hp-hpux11.00 > checking for the BeOS... no > checking for Win32... no > checking whether to enable garbage collector friendliness... no > checking whether to disable memory pools... no > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ANSI C... none needed > checking for style of include used by make... GNU > checking dependency style of gcc... gcc3 > checking for c++... c++ > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking for gcc option to accept ANSI C... none needed > checking for a BSD-compatible install... /tmp/utils/install -c > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... no > checking for _LARGE_FILES value needed for large files... no > === message truncated === PATH does not deal with libraries. You most likely have to set properly these ones: CPPFLAGS for *.h files; LD_LIBRARY_PATH for *.so files; LDFLAGS - for *.so files, but in a different format. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mekstran@scl.ameslab.gov Mon Aug 14 15:22:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D2F3C3B010A for ; Mon, 14 Aug 2006 15:22:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09760-03 for ; Mon, 14 Aug 2006 15:22:22 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 230FC3B0159 for ; Mon, 14 Aug 2006 15:22:22 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 14 Aug 2006 14:22:20 -0500 id 0006F6D0.44E0CD6C.00002ADB In-Reply-To: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 14 Aug 2006 14:21:48 -0500 To: "Bill Cunningham" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.453 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.453 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 19:22:24 -0000 On Aug 14, 2006, at 12:00 PM, Bill Cunningham wrote: > Can someone help explain to me the LD_LIBRARIES_PATH variables? > Pkg-config recognizes several glib related libraries and exports > libs. I can > get pkg-config to spit out some compiler switches but I don't know > where to > put them. I think the above stated variable is the sticky point. That variable is a variable used by the dynamic linker to locate shared libraries at run time. About the pkg-config compiler switches, etc.: you don't put them anywhere. You make sure that configure can find pkg-config, and pkg- config can find its module definition files (the *.pc files in $PREFIX/lib/pkgconfig), and then configure asks pkg-config for the compiler flags and inserts them appropriately. You can, for some collection of pkg-config-checked packages FOO, set FOO_CFLAGS and FOO_LIBS (or FOO_LDFLAGS, not sure which; output of a configure script made using a recent version of the pkg-config autoconf macros will document this) to the output of pkg-config -- cflags and pkg-config --libs, respectively; however, you shouldn't actually need to do this. If pkg-config is in your PATH, and PKG_CONFIG_PATH is set appropriately if necessary (if you can do pkg- config --cflags glib-2.0 and get meaningful output, then it probably is), then configure should be finding glib properly. Now, where the LD_LIBRARY_PATH (or LIBRARIES_PATH - is that a typo, or does your distro use a name other than the one used by Debian?) variable comes in: several of the gtk-related packages do a check to make sure the necessary libraries can not only be linked against, but also found by the dynamic linker at run time, by compiling and running a test program. If this is the stage where configure is failing (some output from configure would be useful in determining that), then setting LD_LIBRARY_PATH to the lib directory where the glib libraries are located should allow ATK to finish configuring. HTH, Michael From billcu1@verizon.net Mon Aug 14 16:25:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 578C53B0159 for ; Mon, 14 Aug 2006 16:25:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12605-10 for ; Mon, 14 Aug 2006 16:25:46 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 7F1C33B00CB for ; Mon, 14 Aug 2006 16:25:46 -0400 (EDT) Received: from win98 ([207.68.82.27]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4000D3L8QTV9XB@vms048.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 15:25:42 -0500 (CDT) Date: Mon, 14 Aug 2006 16:24:15 -0400 From: "Bill Cunningham" Subject: autoconf and automake To: Message-id: <004401c6bfdf$9d7f0f80$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.015 tagged_above=-999 required=2 tests=[AWL=-0.970, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_KG=0.077] X-Spam-Score: 1.015 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:25:47 -0000 Ok I have two copies of autoconf and automake installed now. One for global use in /usr and one for the glib pkg-config and so on in /usr/local. That may be part of my problem too. I found a pkgconfig directory in /usr and some other pkgconfig stuff in /usr/local. It's all in usr/local now. Bill From sergstesh@yahoo.com Mon Aug 14 16:35:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 02C273B0357 for ; Mon, 14 Aug 2006 16:35:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13170-06 for ; Mon, 14 Aug 2006 16:35:44 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 6FCE23B0264 for ; Mon, 14 Aug 2006 16:35:44 -0400 (EDT) Received: (qmail 5928 invoked by uid 60001); 14 Aug 2006 20:35:44 -0000 Message-ID: <20060814203544.5926.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35206.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 13:35:44 PDT Date: Mon, 14 Aug 2006 13:35:44 -0700 (PDT) From: Sergei Steshenko Subject: Re: autoconf and automake To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <004401c6bfdf$9d7f0f80$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.54 tagged_above=-999 required=2 tests=[AWL=-1.450, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.54 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:35:47 -0000 --- Bill Cunningham wrote: > Ok I have two copies of autoconf and automake installed now. One for > global use in /usr and one for the glib pkg-config and so on in /usr/local. > That may be part of my problem too. I found a pkgconfig directory in /usr > and some other pkgconfig stuff in /usr/local. It's all in usr/local now. > > Bill > > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I think you are making your life unnecessarily complex. My tool builds a lot of things not calling autoconf and automake. Before creating my tool I built gtk manually not at all calling autoconf and automake. IIRC, autoconf and automake help to create 'configure' script - you get 'configure' with every target you need to build. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From xtremejames183@msn.com Mon Aug 14 16:42:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 499453B00AA for ; Mon, 14 Aug 2006 16:42:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13286-09 for ; Mon, 14 Aug 2006 16:41:59 -0400 (EDT) Received: from bay0-omc1-s41.bay0.hotmail.com (bay0-omc1-s41.bay0.hotmail.com [65.54.246.113]) by menubar.gnome.org (Postfix) with ESMTP id 45E313B0077 for ; Mon, 14 Aug 2006 16:41:59 -0400 (EDT) Received: from hotmail.com ([65.54.173.10]) by bay0-omc1-s41.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 14 Aug 2006 13:41:58 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 14 Aug 2006 13:41:56 -0700 Message-ID: Received: from 196.203.211.106 by by5fd.bay5.hotmail.msn.com with HTTP; Mon, 14 Aug 2006 20:41:54 GMT X-Originating-IP: [196.203.211.106] X-Originating-Email: [xtremejames183@msn.com] X-Sender: xtremejames183@msn.com From: "Mrad James deane" To: gtk-list@gnome.org Subject: A problem with FontDialog and FontButton Date: Mon, 14 Aug 2006 21:41:54 +0100 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 14 Aug 2006 20:41:56.0271 (UTC) FILETIME=[15039BF0:01C6BFE2] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.506 tagged_above=-999 required=2 tests=[AWL=0.521, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 2.506 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:42:00 -0000 Hi, iwant to know if a gtk font dialog can return the full pach of a selected font ex: C:\WINDOWS\Fonts\Arial.ttf if not : *** can i use a file selection dlg that return the full path *** how to set a file filter only for ex:*.ttf Regards. _________________________________________________________________ MSN Messenger : discutez en direct avec vos amis ! http://www.msn.fr/msger/default.asp From mekstran@scl.ameslab.gov Mon Aug 14 16:44:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4EAE93B00AA for ; Mon, 14 Aug 2006 16:44:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13258-10 for ; Mon, 14 Aug 2006 16:44:02 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 8C9D53B0123 for ; Mon, 14 Aug 2006 16:44:01 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 14 Aug 2006 15:44:00 -0500 id 0006F647.44E0E090.0000164F In-Reply-To: <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 14 Aug 2006 15:43:29 -0500 To: Bill Cunningham X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.453 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.453 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:44:03 -0000 On Aug 14, 2006, at 2:37 PM, Bill Cunningham wrote: > ----- Original Message ----- > From: "Michael Ekstrand" > To: "Bill Cunningham" > Cc: > Sent: Monday, August 14, 2006 3:21 PM > Subject: Re: variables >> That variable is a variable used by the dynamic linker to locate >> shared libraries at run time. > > I compiled glib with the default. I didn't turn on shared > libraries if I > needed to. So if it builds only static libraries by default, that > could be > it. It builds shared libraries by default. >> Now, where the LD_LIBRARY_PATH (or LIBRARIES_PATH - is that a typo, >> or does your distro use a name other than the one used by Debian?) >> variable comes in: several of the gtk-related packages do a check to >> make sure the necessary libraries can not only be linked against, but >> also found by the dynamic linker at run time, by compiling and >> running a test program. If this is the stage where configure is >> failing (some output from configure would be useful in determining >> that), then setting LD_LIBRARY_PATH to the lib directory where the >> glib libraries are located should allow ATK to finish configuring. >> >> HTH, >> Michael > > The test program(s) compile but they do not run. You mentioned > changes > made to configure script. I don't have either autoconf or automake > installed. Maybe I better install them. Which means that it can't find the shared libraries at run time. Try setting the LD_LIBRARY_PATH to point to the $PREFIX/lib directory where glib's shared libraries are. Running `ldconfig /path/to/glib/ lib` may help also. Also, you don't need to edit configure at all - I merely ment that it would be helpful for debugging if you posted the output from configure (or at least the relevant error messages) for us to read. - Michael From billcu1@verizon.net Mon Aug 14 19:05:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 54F373B00B8 for ; Mon, 14 Aug 2006 19:05:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19622-02 for ; Mon, 14 Aug 2006 19:05:30 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 8729E3B0017 for ; Mon, 14 Aug 2006 19:05:30 -0400 (EDT) Received: from win98 ([141.153.7.226]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J400065GG4R6MP4@vms046.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 18:05:16 -0500 (CDT) Date: Mon, 14 Aug 2006 19:03:49 -0400 From: "Bill Cunningham" Subject: atk To: Message-id: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.908 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.908 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 23:05:33 -0000 Well I finally got atk to compile! One step closer to GTK. I run ldconf /usr/local/lib and the configure script ran successfully. Then I tried make and got the error from grep. /opt/usr/lib/libintl.la not found. Why make was looking into opt for anything I don't know. So I copied libintl.la from /usr/lib into the opt path it wanted for compilation sake. Now I guess for cairo or pango. Bill From lists@nabble.com Tue Aug 15 04:44:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B701E3B0101 for ; Tue, 15 Aug 2006 04:44:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05698-08 for ; Tue, 15 Aug 2006 04:44:42 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id A12693B00E7 for ; Tue, 15 Aug 2006 04:44:42 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GCuXS-0000DB-Ew for gtk-list@gnome.org; Tue, 15 Aug 2006 01:44:42 -0700 Message-ID: <5810799.post@talk.nabble.com> Date: Tue, 15 Aug 2006 01:44:42 -0700 (PDT) From: heavenscape To: gtk-list@gnome.org Subject: How to port a GTK project to Win32 platform? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.807 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_05=-1.11, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.807 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:44:43 -0000 Hi all, I see some documentations of Gtk and Gnome are saying that the GTK and Gnome projects can be ported to win32 platform. I'd like to know how, and how can I get the related libraries and environments available under MS windows XP. Thank you!! Mason -- View this message in context: http://www.nabble.com/How-to-port-a-GTK-project-to-Win32-platform--tf2108098.html#a5810799 Sent from the Gtk+ - General forum at Nabble.com. From martyn@imendio.com Tue Aug 15 04:51:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BA5523B0070 for ; Tue, 15 Aug 2006 04:51:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06330-02 for ; Tue, 15 Aug 2006 04:51:14 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id BEAE33B0017 for ; Tue, 15 Aug 2006 04:51:13 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 968D411E87; Tue, 15 Aug 2006 10:51:12 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17131-04; Tue, 15 Aug 2006 10:51:08 +0200 (CEST) Received: from [192.168.0.8] (82-147-21-65.dsl.uk.rapidplay.com [82.147.21.65]) by holken.mikan.net (Postfix) with ESMTP id BB1C312603; Tue, 15 Aug 2006 10:51:07 +0200 (CEST) Subject: Re: atk From: Martyn Russell To: Bill Cunningham In-Reply-To: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> References: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> Content-Type: text/plain Organization: Imendio Date: Tue, 15 Aug 2006 09:50:58 +0100 Message-Id: <1155631858.16373.80.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.522 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.522 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:51:16 -0000 On Mon, 2006-08-14 at 19:03 -0400, Bill Cunningham wrote: > Well I finally got atk to compile! One step closer to GTK. I run ldconf > /usr/local/lib and the configure script ran successfully. Then I tried make > and got the error from grep. > /opt/usr/lib/libintl.la not found. Why make was looking into opt for > anything I don't know. So I copied libintl.la from /usr/lib into the opt > path it wanted for compilation sake. Now I guess for cairo or pango. Might I suggest you try out jhbuild if you want to GTK+ in a particular prefix without having to worry about software being installed all over the place. This might make like a little easier. It is in Gnome's CVS. http://cvs.gnome.org/viewcvs/jhbuild/ The instructions are here: http://www.jamesh.id.au/software/jhbuild/ Once set up (which should just be a case of configuring your ~/.jhbuildrc file, you should be able to run: $ jhbuild bootstrap ... $ jhbuild build gtk+ ... -- Regards, Martyn From martyn@imendio.com Tue Aug 15 04:53:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7098C3B00D2 for ; Tue, 15 Aug 2006 04:53:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06353-02 for ; Tue, 15 Aug 2006 04:53:36 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id F146D3B0070 for ; Tue, 15 Aug 2006 04:53:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 54FBD11EB3; Tue, 15 Aug 2006 10:53:35 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17198-04; Tue, 15 Aug 2006 10:53:30 +0200 (CEST) Received: from [192.168.0.8] (82-147-21-65.dsl.uk.rapidplay.com [82.147.21.65]) by holken.mikan.net (Postfix) with ESMTP id 30C6412603; Tue, 15 Aug 2006 10:53:30 +0200 (CEST) Subject: Re: How to port a GTK project to Win32 platform? From: Martyn Russell To: heavenscape In-Reply-To: <5810799.post@talk.nabble.com> References: <5810799.post@talk.nabble.com> Content-Type: text/plain Organization: Imendio Date: Tue, 15 Aug 2006 09:53:23 +0100 Message-Id: <1155632003.16373.83.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:53:37 -0000 On Tue, 2006-08-15 at 01:44 -0700, heavenscape wrote: > Hi all, > > I see some documentations of Gtk and Gnome are saying that the GTK and Gnome > projects can be ported to win32 platform. I'd like to know how, and how can > I get the related libraries and environments available under MS windows XP. You might find these useful: Tor wrote this on porting Evolution to Windows: http://www.go-evolution.org/Building_Evolution_on_Windows I wrote this on porting Loudmouth to Windows (much is similar just updated from Tor's): http://developer.imendio.com/projects/loudmouth/win32 Hope this helps. -- Regards, Martyn From tml@iki.fi Tue Aug 15 05:09:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82C733B00A8 for ; Tue, 15 Aug 2006 05:09:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07149-02 for ; Tue, 15 Aug 2006 05:09:16 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id E5D703B0017 for ; Tue, 15 Aug 2006 05:09:15 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 213BE151155; Tue, 15 Aug 2006 12:09:13 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17633.36686.700000.142615@gargle.gargle.HOWL> Date: Tue, 15 Aug 2006 12:09:34 +0300 To: heavenscape Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <5810799.post@talk.nabble.com> References: <5810799.post@talk.nabble.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 09:09:17 -0000 heavenscape writes: > I'd like to know how, and how can I get the related libraries and > environments available under MS windows XP. Browse ftp://ftp.gtk.org and http://ftp.gnome.org and you will find zip archives that contain the Win32 ports of GTK+ and dependencies, and most GNOME platform libraries, and a few desktop ones. (For instance, ftp://ftp.gtk.org/pub/gtk/v2.8/win32/ has Win32 ports of GTK+ and dependencies, and http://ftp.gnome.org/pub/gnome/platform/2.14/2.14.3/win32/ has the GNOME platform libraries.) There are usually two zip archives for each version of a library: Runtime and developer. (Just like Linux distros have separate runtime and developer packages for libraries.) If your application uses only GTK+ you can use MSVC6 to build your app even if the GTK+ libraries have been built with gcc (mingw). (You might be able to use newer versions of MSVC is you are careful and avoid such GTK+ and GLib API that passes or returns data specific to the C library being used, like file descriptors.) If you use GNOME libraries, you have to use gcc. Some hints can be found in http://www.iki.fi/tml/fosdem-2006.pdf . --tml From linuxhippy@gmail.com Tue Aug 15 05:30:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8CE193B0017 for ; Tue, 15 Aug 2006 05:30:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07875-10 for ; Tue, 15 Aug 2006 05:30:19 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 742EB3B0081 for ; Tue, 15 Aug 2006 05:30:18 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so508232nzn for ; Tue, 15 Aug 2006 02:30:18 -0700 (PDT) Received: by 10.65.159.20 with SMTP id l20mr8253180qbo; Tue, 15 Aug 2006 02:30:17 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Tue, 15 Aug 2006 02:30:17 -0700 (PDT) Message-ID: <194f62550608150230k5a09d238rb0410b147fd5a573@mail.gmail.com> Date: Tue, 15 Aug 2006 11:30:17 +0200 From: "Clemens Eisserer" To: "=?ISO-8859-1?Q?Mirco_M=FCller?=" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155626182.5811.15.camel@hal9000> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <17628.16132.763000.45282@gargle.gargle.HOWL> <194f62550608110205j617390afy81cc80b9f1d00ac6@mail.gmail.com> <1155626182.5811.15.camel@hal9000> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.239 tagged_above=-999 required=2 tests=[AWL=0.161, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.239 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 09:30:21 -0000 Hi Mirco, > Do you have a patch of your changes to gtk+ you could send me? Its was only very experimental stuff (and broke Gtk's spinner widget - although none on the list could even give me an explanation why this could happen). It was written against GTK-2.0 and helps only on nvidia hardware. I already talked to nvidia drivers programmers, they'll try to optimize their drivers in future. > Against > which version did you write your changes? GTK-2.10 > Have you only patched gtk+ or glib too? GDK and GTK. > http://primates.ximian.com/~federico/news-2005-07.html#26 > > Have you tried to get in touch with him in order to maybe join efforts > and avoid duplicate work? No, but thanks a lot for the hint. I always used oprofile, I'll try to get in contact with him. I could send it to you if you're interrested by mail. lg Clemens From riboaz@xs4all.nl Tue Aug 15 08:12:51 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 853823B00C0; Tue, 15 Aug 2006 08:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16489-04; Tue, 15 Aug 2006 08:12:48 -0400 (EDT) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by menubar.gnome.org (Postfix) with ESMTP id D86413B006C; Tue, 15 Aug 2006 08:12:46 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr8.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7FCCiXh054669; Tue, 15 Aug 2006 14:12:45 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: <6fe8fcb90607252105u2a77942cy86b51ecebcf92f64@mail.gmail.com> <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <73E07F56-C827-46BF-82F4-C872D6ADC31B@xs4all.nl> Content-Transfer-Encoding: 7bit From: Richard Boaz Subject: Re: problem displaying rgb images on window Date: Tue, 15 Aug 2006 14:12:48 +0200 To: "Daniel Haude" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.516 tagged_above=-999 required=2 tests=[AWL=0.083, BAYES_00=-2.599] X-Spam-Score: -2.516 X-Spam-Level: Cc: gtk-app-devel-list@gnome.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 12:12:51 -0000 hi, the gtk_widget_queue_draw_area() creates/forces an expose event on the drawing area in question; this event, then, to be processed by the mainLoop. the while loop, then, forces all outstanding events sitting in the mainLoop event queue to be processed until all events are exahusted; essentially forcing your expose event callback code to be executed, immediately. (and, using this paradigm, this is the reason, too, you should do no drawing in the expose event except to render the pixmap to the physical display, i.e., it must be the end-point in the entire process of making and displaying your image). you also use this while loop construct, for example, when wanting to update a progress meter while doing work in the background (that's being metered). ta, richard On Aug 15, 2006, at 1:59 PM, Daniel Haude wrote: > On Wed, 26 Jul 2006 06:41:38 +0200, Richard Boaz > wrote: > >> gtk_widget_queue_draw_area(DrawingArea, 0, 0, >> DrawingArea->allocation.width, DrawingArea->allocation.height); >> while (gtk_events_pending()) >> gtk_main_iteration(); >> } // end while > > What is the while loop for? > From dunno@stoptrick.com Tue Aug 15 07:59:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBA7F3B006C; Tue, 15 Aug 2006 07:59:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15437-09; Tue, 15 Aug 2006 07:59:18 -0400 (EDT) Received: from can15.can15.de (can15.de [213.203.199.222]) by menubar.gnome.org (Postfix) with ESMTP id 2D6393B009D; Tue, 15 Aug 2006 07:59:18 -0400 (EDT) Received: from localhost (KIR.physnet.uni-hamburg.de [134.100.105.153]) by can15.can15.de (can15.can15.de) with ESMTP id 43BC651816E; Tue, 15 Aug 2006 13:59:08 +0200 (CEST) To: "Richard Boaz" , "sachin kamat" Subject: Re: problem displaying rgb images on window References: <6fe8fcb90607252105u2a77942cy86b51ecebcf92f64@mail.gmail.com> <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> Message-ID: From: "Daniel Haude" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Tue, 15 Aug 2006 13:59:15 +0200 In-Reply-To: <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> User-Agent: Opera M2/8.50 (Linux, build 1358) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599] X-Spam-Score: -2.54 X-Spam-Level: X-Mailman-Approved-At: Tue, 15 Aug 2006 10:53:43 -0400 Cc: gtk-app-devel-list@gnome.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 11:59:21 -0000 On Wed, 26 Jul 2006 06:41:38 +0200, Richard Boaz wrote: > gtk_widget_queue_draw_area(DrawingArea, 0, 0, > DrawingArea->allocation.width, DrawingArea->allocation.height); > while (gtk_events_pending()) > gtk_main_iteration(); > } // end while What is the while loop for? From billcu1@verizon.net Tue Aug 15 14:23:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F402C3B0012 for ; Tue, 15 Aug 2006 14:23:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01364-05 for ; Tue, 15 Aug 2006 14:23:03 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 033513B000D for ; Tue, 15 Aug 2006 14:23:03 -0400 (EDT) Received: from win98 ([151.205.86.205]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J41003L3XQDRR04@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 15 Aug 2006 13:23:02 -0500 (CDT) Date: Tue, 15 Aug 2006 14:21:36 -0400 From: "Bill Cunningham" Subject: jhbuild To: Message-id: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.169 tagged_above=-999 required=2 tests=[AWL=-0.816, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_JH=0.077] X-Spam-Score: 1.169 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 18:23:05 -0000 I don't know about jhbuild but I do have something called garnome. Haven't got a chance to use it yet. Bill From g.tagliaretti@gmail.com Tue Aug 15 15:05:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B3413B00EB for ; Tue, 15 Aug 2006 15:05:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03312-07 for ; Tue, 15 Aug 2006 15:05:55 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by menubar.gnome.org (Postfix) with ESMTP id 4E2EF3B000D for ; Tue, 15 Aug 2006 15:05:55 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id h2so57188ugf for ; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Received: by 10.66.224.19 with SMTP id w19mr383425ugg; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Received: by 10.67.123.10 with HTTP; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Message-ID: <35bf41160608151205v61b2b530r28b896c0e957e924@mail.gmail.com> Date: Tue, 15 Aug 2006 21:05:54 +0200 From: "Gian Mario Tagliaretti" To: "Bill Cunningham" Subject: Re: jhbuild In-Reply-To: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.431 tagged_above=-999 required=2 tests=[AWL=-0.108, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_JH=0.077] X-Spam-Score: -2.431 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 19:05:58 -0000 2006/8/15, Bill Cunningham : > I don't know about jhbuild but I do have something called garnome. > Haven't got a chance to use it yet. Hi Bill, do you mind not open a new thread each time? thanks btw, first hit on google for jhbuild and garnome: http://www.jamesh.id.au/software/jhbuild/ http://www.gnome.org/projects/garnome/ cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ http://pygstdocs.berlios.de From mclasen@redhat.com Tue Aug 15 22:16:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29DA33B00DB; Tue, 15 Aug 2006 22:16:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20954-06; Tue, 15 Aug 2006 22:16:47 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5D10B3B00AB; Tue, 15 Aug 2006 22:16:47 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7G2GlBJ021963; Tue, 15 Aug 2006 22:16:47 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7G2Gkff031948; Tue, 15 Aug 2006 22:16:46 -0400 Received: from [10.13.248.53] (vpn-248-53.boston.redhat.com [10.13.248.53]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k7G2Gjwj029925; Tue, 15 Aug 2006 22:16:46 -0400 Subject: GLib 2.12.2 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Tue, 15 Aug 2006 22:20:41 -0400 Message-Id: <1155694841.5578.1.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.91 (2.7.91-4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.542 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.542 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 02:16:49 -0000 GLib 2.12.2 is now available for download at: ftp://ftp.gtk.org/pub/glib/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.2.tar.bz2 md5sum: 45471ca86af288b7a48116ab2b498d0c glib-2.12.2.tar.gz md5sum: fe0ca5a41f40443eb80c3e7fe8a36836 GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.12.0 to GLib 2.12.1 =================================================== * Update to final Unicode Character Database 5.0.0 * Bugs fixed: 346660 issues with base64 api documentation / g_base64_decode_cl... 348136 Coverity reports allocation of wrong size CID #2839 336281 Update to UCD 5.0 346197 g_date_strftime %F option doesnt work for win32 348011 Small optimization to real_toupper() 246494 prototype mismatch in glib/gconvert.c * New and updated translations (bg,bn_IN,ca,dz,eu,fi, fr,he,it,ja,mk,or,pt) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=348694,347842,348491,349825,349792,349952,348785 Thanks to all contributors: Tor Lillqvist, Behdad Esfahbod, Nikolai Weibull, Chris Wilson, Jakub Friedl, Emmanuele Bassi, Matt Barnes, Josh Parsons Matthias Clasen August 15, 2006 From tml@iki.fi Wed Aug 16 04:51:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29AAB3B0235 for ; Wed, 16 Aug 2006 04:51:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02583-10 for ; Wed, 16 Aug 2006 04:51:21 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id CF5C13B00B5 for ; Wed, 16 Aug 2006 04:51:20 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id 93D4D1396E4; Wed, 16 Aug 2006 11:51:17 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17634.56474.231000.931060@gargle.gargle.HOWL> Date: Wed, 16 Aug 2006 11:51:38 +0300 To: gtk-list@gnome.org Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> References: <5810799.post@talk.nabble.com> <17633.36686.700000.142615@gargle.gargle.HOWL> <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: Mason X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 08:51:23 -0000 (Keeping the discussion on the list. Don't reply personally to a message thread on a mailing list.) Mason writes: > I have found that there are too many different versions > of the Gtk and Gnome libraries available on the ftp sites and I am just not > sure which versions to use, Use the newest ones available. (There aren't any GTK 2.10.x binaries for Win32 yet, for instance.) > since there may be some compatibility issues. Sure, obviously you cannot mix a current GTK with an old Pango, for instance. But if you just use the newest versions of cairo, GLib, atk, Pango and GTK it should work out fine. Also, if you find a bug, the first question when you report the bug will be what version you are using, and if you aren't using a relatively current version there isn't much that will be done about the bug anyway, so... > Could you tell me how to find out what versions I am currently using under > Linux? That depends on your Linux distribution. On RPM-based distributions, for instance: rpm -qa | grep -E 'cairo|glib|atk|pango|gtk' Or use whatever graphical package management frontend your Linux distribution offers. --tml From kaustubh.atrawalkar@celunite.com Wed Aug 16 08:10:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B90A3B000F for ; Wed, 16 Aug 2006 08:10:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11198-04 for ; Wed, 16 Aug 2006 08:10:02 -0400 (EDT) Received: from rs384.securehostserver.com (rs384.securehostserver.com [72.22.69.69]) by menubar.gnome.org (Postfix) with SMTP id E8A003B007D for ; Wed, 16 Aug 2006 08:10:01 -0400 (EDT) Received: (qmail 77714 invoked by uid 3521); 16 Aug 2006 12:09:10 -0000 Received: from 220.225.33.101 by rs384.securehostserver.com (envelope-from , uid 1002) with qmail-scanner-1.25st (clamdscan: 0.88/1245. spamassassin: 3.1.0. perlscan: 1.25st. Clear:RC:1(220.225.33.101):. Processed in 0.247851 secs); 16 Aug 2006 12:09:10 -0000 Received: from unknown (HELO ?192.168.100.41?) (220.225.33.101) by rs384.securehostserver.com with SMTP; 16 Aug 2006 12:09:09 -0000 Message-ID: <44E30B13.90601@celunite.com> Date: Wed, 16 Aug 2006 17:39:55 +0530 From: Kaustubh Atrawalkar Organization: Celunite, Inc. User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Memory Optimization Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.329 tagged_above=-999 required=2 tests=[AWL=0.270, BAYES_00=-2.599] X-Spam-Score: -2.329 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: kaustubh.atrawalkar@celunite.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 12:10:03 -0000 Hi !! I am working on glib optimization for our product. I just need to know what is the use of G_QUARK_BLOCK_SIZE (defined in gdataset.c) and used while allocating memory for any types? Also why we need the size 512 bytes for that quark block? Cant we reduce them to say 64 bytes or somewhat like that. We have very critical memory requirement. So need so save as much memory as possible. If you can give me some more hot spots where i can save more memory it will be very helpful to me. -Kaustubh Atrawalkar Software Engineer Codito Technologies 3rd Floor, Business Avenue Koregaon Park Pune, MS 411001 INDIA Work: 912026051367 Mobile: 919890305492 Email: kaustubh.atrawalkar@gmail.com http://www.linkedin.com/in/kaustubh From francisco.moraes@gmail.com Thu Aug 17 09:27:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 479DE3B0391 for ; Thu, 17 Aug 2006 09:27:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10435-05 for ; Thu, 17 Aug 2006 09:27:02 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 7BA2A3B0363 for ; Thu, 17 Aug 2006 09:27:02 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so645166pyg for ; Thu, 17 Aug 2006 06:27:02 -0700 (PDT) Received: by 10.35.94.7 with SMTP id w7mr3521741pyl; Thu, 17 Aug 2006 06:27:02 -0700 (PDT) Received: by 10.35.103.16 with HTTP; Thu, 17 Aug 2006 06:27:01 -0700 (PDT) Message-ID: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> Date: Thu, 17 Aug 2006 09:27:01 -0400 From: "Francisco Moraes" To: gtk-list@gnome.org Subject: GtkPrint PangoLayout extents MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1561_29587065.1155821221956" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.831 tagged_above=-999 required=2 tests=[AWL=0.217, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.831 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 13:27:05 -0000 ------=_Part_1561_29587065.1155821221956 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango layout from the cairo reference, setting the font and text and calling pango_layout_get_pixel_extents. This seems to work well, except that the returned width seems to be about twice of what it is printed either on preview or in the output page in the printer. Is this correct or is there a better way to figure out the text extents when using Pango? Here's the exact code I am using: PangoLayout *layout = gtk_print_context_create_pango_layout (job->pc); PangoRectangle ink; PangoRectangle log; pango_layout_set_font_description (layout, current_font); pango_layout_set_text (layout, text, -1); pango_layout_context_changed (layout); pango_layout_get_pixel_extents (layout, &ink, &log); g_object_unref (layout); return ink.width; Francisco ------=_Part_1561_29587065.1155821221956 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,

I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango
layout from the cairo reference, setting the font and text and calling
pango_layout_get_pixel_extents. This seems to work well, except that the
returned width seems to be about twice of what it is printed either on
preview or in the output page in the printer.

Is this correct or is there a better way to figure out the text extents when
using Pango?

Here's the exact code I am using:

PangoLayout *layout = gtk_print_context_create_pango_layout (job->pc);
PangoRectangle ink;
PangoRectangle log;

pango_layout_set_font_description (layout, current_font);
pango_layout_set_text (layout, text, -1);

pango_layout_context_changed (layout);

pango_layout_get_pixel_extents (layout, &ink, &log);

g_object_unref (layout);

return ink.width;

Francisco
------=_Part_1561_29587065.1155821221956-- From paul@linuxaudiosystems.com Thu Aug 17 09:42:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4869F3B018B for ; Thu, 17 Aug 2006 09:42:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11149-09 for ; Thu, 17 Aug 2006 09:42:20 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 760443B03CF for ; Thu, 17 Aug 2006 09:42:13 -0400 (EDT) Received: from dhin ([151.197.173.177]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4500FLTA1MWF30@vms048.mailsrvcs.net> for gtk-list@gnome.org; Thu, 17 Aug 2006 08:41:47 -0500 (CDT) Date: Thu, 17 Aug 2006 09:41:34 -0400 From: Paul Davis Subject: Re: GtkPrint PangoLayout extents In-reply-to: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> To: Francisco Moraes Message-id: <1155822094.28145.30.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain Content-transfer-encoding: 7bit References: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.551 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599] X-Spam-Score: -2.551 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 13:42:23 -0000 On Thu, 2006-08-17 at 09:27 -0400, Francisco Moraes wrote: > Hi, > > I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango > layout from the cairo reference, setting the font and text and calling > pango_layout_get_pixel_extents. This seems to work well, except that the > > returned width seems to be about twice of what it is printed either on > preview or in the output page in the printer. > > Is this correct or is there a better way to figure out the text extents when > using Pango? try using the ink extents variant. From hvreddy1110@gmail.com Thu Aug 17 10:03:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 38B9B3B04BD for ; Thu, 17 Aug 2006 10:03:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12879-02 for ; Thu, 17 Aug 2006 10:03:22 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by menubar.gnome.org (Postfix) with ESMTP id 3FFE73B0363 for ; Thu, 17 Aug 2006 10:03:22 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so656442pyg for ; Thu, 17 Aug 2006 07:03:22 -0700 (PDT) Received: by 10.35.51.19 with SMTP id d19mr3624907pyk; Thu, 17 Aug 2006 07:03:22 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Thu, 17 Aug 2006 07:03:21 -0700 (PDT) Message-ID: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> Date: Thu, 17 Aug 2006 19:33:21 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Books for Cross compile Libraries MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2902_28367673.1155823401945" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.515 tagged_above=-999 required=2 tests=[AWL=-0.904, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.515 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 14:03:23 -0000 ------=_Part_2902_28367673.1155823401945 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline HI, Is there any book or document on How to crosscompile Libraries. I want to cross compile Libraries from i386 to ARM11(Which are Needed for Gtk Application). Thanks in advance, Regards, Harsha ------=_Part_2902_28367673.1155823401945 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
HI,
Is there any book or document on How to crosscompile Libraries.
I want to cross compile Libraries from i386 to ARM11(Which are Needed for Gtk Application).
 
Thanks in advance,
 
Regards,
Harsha
------=_Part_2902_28367673.1155823401945-- From ibr@radix50.net Thu Aug 17 17:20:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9FD993B0014 for ; Thu, 17 Aug 2006 17:20:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01727-04 for ; Thu, 17 Aug 2006 17:20:01 -0400 (EDT) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by menubar.gnome.org (Postfix) with ESMTP id 8CE9B3B008D for ; Thu, 17 Aug 2006 17:20:00 -0400 (EDT) Received: from mail-in-11-z2.arcor-so.net (mail-in-11-z2.arcor-online.net [151.189.8.28]) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 0916E17702E for ; Thu, 17 Aug 2006 23:19:59 +0200 (CEST) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mail-in-11-z2.arcor-so.net (Postfix) with ESMTP id E67FC1C71C9 for ; Thu, 17 Aug 2006 23:19:58 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-009-120.pools.arcor-ip.net [88.64.9.120]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id 7E7914ABCB1 for ; Thu, 17 Aug 2006 23:19:58 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.7/8.13.7/Debian-2) with ESMTP id k7HLJvcD005257 for ; Thu, 17 Aug 2006 23:19:57 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.7/8.13.7/Submit) id k7HLJv1D005256 for gtk-list@gnome.org; Thu, 17 Aug 2006 23:19:57 +0200 Date: Thu, 17 Aug 2006 23:19:57 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Books for Cross compile Libraries Message-ID: <20060817211957.GB3891@radix50.net> References: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.205 tagged_above=-999 required=2 tests=[AWL=0.259, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.205 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 21:20:02 -0000 Hello Harsha, On Thu, Aug 17, 2006 at 07:33:21PM +0530, harshavardhanreddy mandeepala wrote: > Is there any book or document on How to crosscompile Libraries. > I want to cross compile Libraries from i386 to ARM11(Which are Needed for > Gtk Application). Googling for "cross compile libraries" finds some general overviews and specific HOWTOs, they may or may not be useful for you. In my experience, if you understand how it is supposed to work, it's better to google for specific problems you encounter, and ask on an appropriate list if that doesn't help. With kind regards, Baurzhan. From sergstesh@yahoo.com Thu Aug 17 18:34:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DCDD03B006B for ; Thu, 17 Aug 2006 18:34:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05859-04 for ; Thu, 17 Aug 2006 18:34:03 -0400 (EDT) Received: from web35214.mail.mud.yahoo.com (web35214.mail.mud.yahoo.com [66.163.179.93]) by menubar.gnome.org (Postfix) with SMTP id 5A47C3B0231 for ; Thu, 17 Aug 2006 18:33:42 -0400 (EDT) Received: (qmail 58942 invoked by uid 60001); 17 Aug 2006 22:33:41 -0000 Message-ID: <20060817223341.58940.qmail@web35214.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35214.mail.mud.yahoo.com via HTTP; Thu, 17 Aug 2006 15:33:41 PDT Date: Thu, 17 Aug 2006 15:33:41 -0700 (PDT) From: Sergei Steshenko Subject: new AppsFromScratch.20060710.20060817.tar.gz release To: gtk-list@gnome.org, gtk-perl-list@gnome.org, wx-users@lists.wxwidgets.org, wxperl-users@lists.sourceforge.net MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.301 tagged_above=-999 required=2 tests=[AWL=-1.673, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_BP=0.077, TW_BW=0.077, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -0.301 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 22:34:06 -0000 Hello All, I am pleased to announce new release of AppsFromScratch: http://prdownload.berlios.de/appsfromscratch/AppsFromScratch.20060710.20060817.tar.gz . The homepage: http://appsfromscratch.berlios.de/ . News/Changes: ------------- * Added generation of 'binsh' directories and 'sh' wrappers to simplify end results usage - no manual setting of environment variables is necessary; * Enhanced default target build sub so now it can also build targets not using 'pkg-config' without manual seting of environment variables; * Added optional 'post_sub' which, if present' is executed after the last 'make' target; * Added a number of "low level" targets like 'libjpeg', 'zlib', 'libpng', 'freetype' making default build data sub even less dependent on on libraries installed at system level; * Added a number of targets and updated a number of targets versions; * Updated documentation. Currrently supported targets (libraries and applications): ---------------------------------------------------------- atk-1.12.1 at-spi-1.6.6 audiofile-0.2.6 Cairo-0.92 cairo-1.2.2 diacanvas2-0.14.4 esound-0.2.36 freetype-2.2.1 gail-1.8.11 GConf-2.14.0 glade-2.12.1 Glib-1.120 glib-2.12.2 Gnome2-1.040 Gnome2-Canvas-1.002 Gnome2-Dia-0.04 Gnome2-GConf-1.032 Gnome2-Print-0.951 Gnome2-VFS-1.060 Gnome2-Vte-0.06 Gnome2-Wnck-0.13 gnome-keyring-0.4.9 gnome-vfs-2.14.2 gst-plugins-base-0.10.7 GStreamer-0.09 gstreamer-0.10.8 Gtk2-1.122 gtk+-2.8.20 Gtk2-GladeXML-1.005 Gtk2-Html2-0.04 Gtk2-TrayIcon-0.04 jpegsrc.v6b libart_lgpl-2.3.17 libbonobo-2.14.0 libbonoboui-2.14.0 libglade-2.6.0 libgnome-2.14.1 libgnomecanvas-2.14.0 libgnomeprint-2.12.1 libgnomeprintui-2.12.1 libgnomeui-2.14.1 libgtkhtml-2.6.3 libIDL-0.8.7 liboil-0.3.9 libpng-1.2.12 libwnck-2.14.2 libxml2-2.6.26 ORBit2-2.14.2 pango-1.14.0 tiff-3.8.2 vte-0.12.2 Wx-0.26 wxGTK-2.6.3 wxX11-2.6.3 zlib-1.2.3 . Regards, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From z_b_r@poczta.fm Thu Aug 17 19:16:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 59AB73B0091 for ; Thu, 17 Aug 2006 19:16:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07592-08 for ; Thu, 17 Aug 2006 19:16:04 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp9.poczta.interia.pl [80.48.65.9]) by menubar.gnome.org (Postfix) with ESMTP id DC74D3B00B0 for ; Thu, 17 Aug 2006 19:16:03 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 8A92527100D; Fri, 18 Aug 2006 01:16:02 +0200 (CEST) Received: from poczta.interia.pl (f11.poczta.interia.pl [10.217.2.11]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id 30AF5270FF7 for ; Fri, 18 Aug 2006 01:16:02 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id 98261DACA0; Fri, 18 Aug 2006 01:16:01 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 70DAADAC95 for ; Fri, 18 Aug 2006 01:16:01 +0200 (CEST) Date: 18 Aug 2006 01:16:01 +0200 From: hm Subject: Simple (?) question about GtkLabel To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060817231601.70DAADAC95@poczta.interia.pl> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.266 tagged_above=-999 required=2 tests=[AWL=-2.863, BAYES_50=0.001, BLANK_LINES_70_80=1.805, MISSING_MIMEOLE=1.612, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: 2.266 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 23:16:05 -0000 =0AHi !=0A=0A Is it possible to stretch text in gtk label to fill all par= rent space, that is given for GtkLabel ? I mean.. let`s say we`ve got a ta= ble. Let`s place GtkLabel in one of the cells. Now.. Let`s say, that window= is now maximized, and text insie gtklabel is something short, like : "ABC"= . Normally , text will appear centered, right, or left - justified. I would= like it to be centered, but displayed through all width of window space , = that is given to gtklabel.=0A=0A[ abc ] - Normally it is so.= ..=0A=0A[ a b c ] - .. and I would like it to be like this=0A= =0A=0A=0A=0A=0A=0A=0A From mclasen@redhat.com Fri Aug 18 00:59:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 474763B0094; Fri, 18 Aug 2006 00:59:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18943-07; Fri, 18 Aug 2006 00:59:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 9F5EB3B0014; Fri, 18 Aug 2006 00:59:28 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7I4xSG4017306; Fri, 18 Aug 2006 00:59:28 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7I4xS8T006842; Fri, 18 Aug 2006 00:59:28 -0400 Received: from [172.16.80.24] (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k7I4xR1V015345; Fri, 18 Aug 2006 00:59:27 -0400 Subject: GTK+ 2.10.2 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Fri, 18 Aug 2006 00:59:26 -0400 Message-Id: <1155877167.4806.5.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.91 (2.7.91-5.fc6) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.465 tagged_above=-999 required=2 tests=[AWL=-0.018, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_XT=0.077] X-Spam-Score: -2.465 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 04:59:30 -0000 GTK+ 2.10.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.10/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.10/ gtk+-2.10.2.tar.bz2 md5sum: 9039804dfd115e40a70a6ba096f418a2 gtk+-2.10.2.tar.gz md5sum: 2a18d8b4c7c19cd2417d6e778b1738f0 This is a bug fix release and is source and binary compatible with 2.10.0. What is GTK+ ============ GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. GTK+ has been designed from the ground up to support a range of languages, not only C/C++. Using GTK+ from languages such as Perl and Python (especially in combination with the Glade GUI builder) provides an effective method of rapid application development. GTK+ is free software and part of the GNU Project. However, the licensing terms for GTK+, the GNU LGPL, allow it to be used by all developers, including those developing proprietary software, without any license fees or royalties. Where to get more information about GTK+ ======================================== Information about GTK+ including links to documentation can be found at: http://www.gtk.org/ An installation guide for GTK+ 2.10 is found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.0/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.10.1 to 2.10.2 ============================================== * Many fixes and improvements for the OS X backend * Revert to using gtk modules with global binding, since the local binding that was introduced in 2.10 breaks the accessibility support of current OpenOffice.org releases. * GtkRecenManager - Poll for changes to the XBEL file - Fix initial bad placement of recent files menu - Show nonexisting resources by default, and do not mark them as insensitive - Allow adding a filter to GtkRecentChooserMenu * GtkFileChooser - Improve the fallbacks for icons - Make / and ~ activate the location entry again * Bugs fixed: 348828 Segmentation Fault in gtk_combo_box_menu_setup when removing combobox child 349552 problem with parsing (enum) style properties 351581 API Documentation issues with 2.15 release 348652 reorder() from ComboBoxEntry produces Gtk+ assert error 349128 Fix docs about GtkTreeModel::row-deleted 350605 Crash caused by the recent menu 348096 GtkStyle leaks GtkRcContext 348145 Background images not working with Quartz backend 329752 Problem with has_selection notification when deleting the selection 347856 gtk_recent_chooser_add_filter not implemented for GtkRecentChooserMenu 348245 Disabling pdf printing doesn't hide option 348278 textview doesn't update on hinting setting change 348289 Filechooser is blocked by higher priority idle 348478 entry completions needs to reset the IM context before emitting action-activate signal 348538 Remove old email addreses from the tutorial 348626 drag-to-child should not work 348634 IconView does not update background 348706 don't allow dnd onto arrows 348740 configure script does not honour PKG_CONFIG variable 348787 Segfault in gtk_font_button_update_font_info() 348824 test attached calendar-sane-timer patch in head 348971 gtk_status_icon_get_geometry returns bogus data 349382 valgrind uninitialized memory warnings setting partly uninitialized X properties 349570 notebook arrow PRELIGHT drawing doesn't work 349834 Memleak from gtk_tree_view_set_enable_tree_lines 349858 Leak of ShmPixmapInfo from get_shm_pixmap_for_image 349859 gtk_paint_tab doesn't work when widget is now option menu 349997 Indirect leak from XkbGetMap 350039 GtkFileChooserEntry leaks sources 350050 GdkGC leak from GtkRuler 350139 Should use evince preview mode 350258 Memory leak in gtk_entry_drag_data_received() 350329 The CUPS printer backend in GTK+-2.10.1 fails with CUPS 1.1. 350517 reset_style_idle() interferes with application idles 350860 Balloon messages sent to tray do not have the correct window in XEvent 350938 TreeViewColumn rendering off when "spacing" property set 351112 gtk_notebook_set_current_page fails when the notebook has not yet been shown 351519 Directfb backend fails to build 165714 GtkEntryCompletion doesn't complete on paste 168737 Different button sizes in About dialogs 345666 The icons of file, directory and device at GtkFileChooser 349429 spin button does not use correct value for inner_border 349501 fix in the documentation of function gtk_list_store_insert_with_values() 350072 stdout output from colorselection 351759 Wrong range value in documentation of gtk_color_selection_set_current_alpha 349277 Wrong message for problems with serializing texts 346800 Rework sort/filter models to use indices to parents instead of pointers 349120 Small error in doc 350911 gdk_pixbuf_new_from_file_at_scale() should skip when there's enough image data 348728 GtkTable Row and Column Spacing 351241 swapped argument description 350023 "Running GTK+ Applications" chapter does not document new GTK_DEBUG possibilities 351812 file print backend filename encoding issue * New and updated translations (bg,bn_IN,de,dz,el,es, et,eu,fi,gu,hu,ko,ku,ja,lt,mk,ml,nb,ne,nl,or,pl,po, sv,th,tr,tt,uk,zh_HK,zh_TW) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=348096,348145,349552,348652,348278,348478,348538,348706,348626,348740,348787,348824,349834,349859,349997,350605,350258,348828,347856,349382,249285,349570,349277,350072,349501,350329,350139,349858,350050,345666,350517,350039,349429,168737,351519,351581,346800,350938,351112,165714,348634,349128,329752,348245,351759,348971,348289,350860,350911,349120,349367,351241,350023,348728,351812 Thanks to all contributors: Chris Wilson, Willie Walker, Richard Hult, Tommi Komulainen, Emmanuele Bassi, Erik van Pienbroek, Michael Emmel, Michael Natterer, Patrick K. O'Brian, Behdad Esfahbod, Nguyen Thai Ngoc Duy, Christian Persch, Owen Taylor, Benjamin Otte, Jeremy Lainé, Leonardo Boshell, Federico Mena Quintero, Michael Meeks,Wouter Bolsterlee, Colin Leroy, Rolando Espinoza La Fuente, Rod Butcher, David Baron, Iago Rubio, Carlos GUSLiBu, Carlos Garcia Campos, Kazuki Iwamoto, Søren Sandmann, Benjamin Berg, Kristian Rietveld, Brian Cameron, Jonathan Matthew, Peter Johanson, Thomas Rydzynski, Benedikt Meurer, Paolo Borelli, Don Scorgie, Tor Lillqvist, Tim Janik, Yevgen Muntyan, Vincent Untz, Christian Neumair, Don Anderson, Étienne Bersac, Mart Raudsepp Matthias Clasen August 18, 2006 From tml@iki.fi Fri Aug 18 04:35:12 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 54A253B011B for ; Fri, 18 Aug 2006 04:35:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27522-07 for ; Fri, 18 Aug 2006 04:35:10 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id E500C3B010D for ; Fri, 18 Aug 2006 04:35:05 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 0A8542167FA; Fri, 18 Aug 2006 11:35:02 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17637.31669.506000.653436@gargle.gargle.HOWL> Date: Fri, 18 Aug 2006 11:35:01 +0300 To: gtk-list@gnome.org Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <000b01c6c29f$d3744980$4da9e29f@CYGNUS> References: <5810799.post@talk.nabble.com> <17633.36686.700000.142615@gargle.gargle.HOWL> <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> <17634.56474.231000.931060@gargle.gargle.HOWL> <000b01c6c29f$d3744980$4da9e29f@CYGNUS> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: Mason X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 08:35:12 -0000 (I repeat: Don't reply to me personally, but to the mailing list where the discussion started, thanks. Yes, this is important.) Mason writes: > I have downloaded some of the packages from the ftp.gtk.org site, > however, I still don't know how to compile and install them on my > windows XP system. Well, you have lots to learn then. You seem very confused at least judging by your choice of words. Surely you don't intend to compile GTK+ from source? > Is there a tutorial or something similar that I can follow? Did you read the documents that you were pointed to in the first reply? > I am a newbie to Linux and I have minimal experience handling the > various libs. Hmm. How come you are programming with GTK then? When you say "handling the various libs", what do you mean exactly? That you have experience "handling" other libraries, but not GTK? Or have never used any third-party libraries at all? Have you ever used "command-line" tools at all? --tml From kyndig@gmail.com Fri Aug 18 15:53:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 510C53B00B5 for ; Fri, 18 Aug 2006 15:53:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27482-04 for ; Fri, 18 Aug 2006 15:53:07 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by menubar.gnome.org (Postfix) with ESMTP id 4D5383B0093 for ; Fri, 18 Aug 2006 15:53:07 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1097748wxd for ; Fri, 18 Aug 2006 12:53:07 -0700 (PDT) Received: by 10.70.29.14 with SMTP id c14mr5341784wxc; Fri, 18 Aug 2006 12:53:06 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Fri, 18 Aug 2006 12:53:06 -0700 (PDT) Message-ID: Date: Fri, 18 Aug 2006 15:53:06 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: pango on MAC OS X MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_10638_2817337.1155930786041" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.363 tagged_above=-999 required=2 tests=[AWL=-0.315, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.363 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 19:53:10 -0000 ------=_Part_10638_2817337.1155930786041 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I'm trying to figure out why my software on MAC OS X only displays squares instead of fonts. So I'm using CVS pango and running into problems getting it to compile. Initially it was looking for a gnome-automake.sh, so I manually ran the autoconf,automake to create the configure script. I then had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to an outdated MAC autoconf system ] I've finally managed to get pango to compile but am having linking difficulties. the pkg-config didn't run as expected during configure, so I hand modified several of the Makefiles. The final linking error I am having is: make[4]: Nothing to be done for `all'. /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib -L/GTK/lib/glib-2.0 ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz /GTK/lib/libgobject-2.0.dylib /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib /usr/bin/ld: Undefined symbols: _g_module_close _g_module_error _g_module_open _g_module_symbol collect2: ld returned 1 exit status make[4]: *** [pango-querymodules] Error 1 make[3]: *** [all-recursive] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 ================ Does anyone know what lib I am missing to handle those symbols? Thank you, Calvin PS: If anyone has succesfully ported their GTK project to the native pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - howtos - or software usage examples ------=_Part_10638_2817337.1155930786041 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I'm trying to figure out why my software on MAC OS X only displays squares instead of fonts. So I'm using CVS pango and running into problems getting it to compile. Initially it was looking for a gnome-automake.sh, so I manually ran the autoconf,automake to create the configure script. I then had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to an outdated MAC autoconf system ]

I've finally managed to get pango to compile but am having linking difficulties. the pkg-config didn't run as expected during configure, so I hand modified several of the Makefiles. The final linking error I am having is:
make[4]: Nothing to be done for `all'.
/bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -L/GTK/lib -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o pango-querymodules  querymodules.o   libpangoft2-1.0.la  libpango-1.0.la 
gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o  -L/GTK/lib -L/GTK/lib/glib-2.0 ./.libs/libpangoft2-1.0.0.1.14.dylib /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz /GTK/lib/libgobject-2.0.dylib /GTK/lib/libglib- 2.0.dylib /GTK/lib/libintl.dylib /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib
/usr/bin/ld: Undefined symbols:
_g_module_close
_g_module_error
_g_module_open
_g_module_symbol
collect2: ld returned 1 exit status
make[4]: *** [pango-querymodules] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
================
Does anyone know what lib I am missing to handle those symbols?

Thank you,
Calvin

PS: If anyone has succesfully ported their GTK project to the native pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - howtos - or software usage examples

------=_Part_10638_2817337.1155930786041-- From sergstesh@yahoo.com Fri Aug 18 16:00:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 20D0A3B01C4 for ; Fri, 18 Aug 2006 16:00:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27631-09 for ; Fri, 18 Aug 2006 16:00:18 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 6E9DF3B0248 for ; Fri, 18 Aug 2006 16:00:07 -0400 (EDT) Received: (qmail 84624 invoked by uid 60001); 18 Aug 2006 20:00:06 -0000 Message-ID: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35213.mail.mud.yahoo.com via HTTP; Fri, 18 Aug 2006 13:00:06 PDT Date: Fri, 18 Aug 2006 13:00:06 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango on MAC OS X To: Calvin Ellis , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.551 tagged_above=-999 required=2 tests=[AWL=-1.384, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.551 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 20:00:20 -0000 --- Calvin Ellis wrote: > I'm trying to figure out why my software on MAC OS X only displays squares > instead of fonts. So I'm using CVS pango and running into problems getting > it to compile. Initially it was looking for a gnome-automake.sh, so I > manually ran the autoconf,automake to create the configure script. I then > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to > an outdated MAC autoconf system ] > > I've finally managed to get pango to compile but am having linking > difficulties. the pkg-config didn't run as expected during configure, so I > hand modified several of the Makefiles. The final linking error I am having > is: > make[4]: Nothing to be done for `all'. > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > -L/GTK/lib/glib-2.0 > ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > /GTK/lib/libgobject-2.0.dylib > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > /usr/bin/ld: Undefined symbols: > _g_module_close > _g_module_error > _g_module_open > _g_module_symbol > collect2: ld returned 1 exit status > make[4]: *** [pango-querymodules] Error 1 > make[3]: *** [all-recursive] Error 1 > make[2]: *** [all] Error 2 > make[1]: *** [all-recursive] Error 1 > make: *** [all] Error 2 > ================ > Does anyone know what lib I am missing to handle those symbols? > > Thank you, > Calvin > > PS: If anyone has succesfully ported their GTK project to the native > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - > howtos - or software usage examples > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool (see signature), though I never had a chance to run it on MacOS. On the other had, I did nothing to make it Linux or Solaris-specific, so maybe it will also work on MacOS. My tool builds released (not CVS) versions. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From kyndig@gmail.com Sat Aug 19 18:44:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 981DD3B00E3 for ; Sat, 19 Aug 2006 18:44:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22889-01 for ; Sat, 19 Aug 2006 18:44:40 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by menubar.gnome.org (Postfix) with ESMTP id 5CBB53B0003 for ; Sat, 19 Aug 2006 18:44:40 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1535781wxd for ; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Received: by 10.70.13.1 with SMTP id 1mr7107180wxm; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Message-ID: Date: Sat, 19 Aug 2006 18:44:39 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: pango on MAC OS X In-Reply-To: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23301_5220546.1156027479833" References: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.992 tagged_above=-999 required=2 tests=[AWL=0.330, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.992 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 22:44:43 -0000 ------=_Part_23301_5220546.1156027479833 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks Sergei - What finally got it working was the GTK MAC OSX "build-gtk.sh" script from their website. I did a full OS reload with a vanilla MAC OS X and made sure X11 wasn't installed. I then ran the build-gtk.sh script to build the devel env. I compiled my software and it worked directly out of the box =) It's a little sluggish - nowhere near as fast in buffering as the X11 version for MAC OS X, but I'm going to stick with this release and keep an eye out for specific MAC updates. Thanks all for the help and pointers. For those looking to develop their MAC OS X, gtk+ software - the only thing you need is: http://developer.imendio.com/projects/gtk-macosx/build-instructions Once you run the: build-gtk.sh bootstrap - make sure you move all your: /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do the same for /usr/share/aclo* /usr/share/autom* directories - as the prescense of these files will confuse the cairo/glib build process. Calvin On 8/18/06, Sergei Steshenko wrote: > > > > --- Calvin Ellis wrote: > > > I'm trying to figure out why my software on MAC OS X only displays > squares > > instead of fonts. So I'm using CVS pango and running into problems > getting > > it to compile. Initially it was looking for a gnome-automake.sh, so I > > manually ran the autoconf,automake to create the configure script. I > then > > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due > to > > an outdated MAC autoconf system ] > > > > I've finally managed to get pango to compile but am having linking > > difficulties. the pkg-config didn't run as expected during configure, so > I > > hand modified several of the Makefiles. The final linking error I am > having > > is: > > make[4]: Nothing to be done for `all'. > > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > > -L/GTK/lib/glib-2.0 > > ./.libs/libpangoft2-1.0.0.1.14.dylib > /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > > /GTK/lib/libgobject-2.0.dylib > > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > > /usr/bin/ld: Undefined symbols: > > _g_module_close > > _g_module_error > > _g_module_open > > _g_module_symbol > > collect2: ld returned 1 exit status > > make[4]: *** [pango-querymodules] Error 1 > > make[3]: *** [all-recursive] Error 1 > > make[2]: *** [all] Error 2 > > make[1]: *** [all-recursive] Error 1 > > make: *** [all] Error 2 > > ================ > > Does anyone know what lib I am missing to handle those symbols? > > > > Thank you, > > Calvin > > > > PS: If anyone has succesfully ported their GTK project to the native > > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - > docs - > > howtos - or software usage examples > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > Try my tool (see signature), though I never had a chance to run it > on MacOS. > > On the other had, I did nothing to make it Linux or Solaris-specific, > so maybe it will also work on MacOS. > > My tool builds released (not CVS) versions. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > ------=_Part_23301_5220546.1156027479833 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks Sergei -

What finally got it working was the GTK MAC OSX "build-gtk.sh" script from their website. I did a full OS reload with a vanilla MAC OS X and made sure X11 wasn't installed. I then ran the build-gtk.sh script to build the devel env. I compiled my software and it worked directly out of the box =)

It's a little sluggish - nowhere near as fast in buffering as the X11 version for MAC OS X, but I'm going to stick with this release and keep an eye out for specific MAC updates.

Thanks all for the help and pointers.

For those looking to develop their MAC OS X, gtk+ software - the only thing you need is:
http://developer.imendio.com/projects/gtk-macosx/build-instructions
Once you run the: build-gtk.sh bootstrap - make sure you move all your: /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do the same for /usr/share/aclo* /usr/share/autom* directories - as the prescense of these files will confuse the cairo/glib build process.

Calvin


On 8/18/06, Sergei Steshenko <sergstesh@yahoo.com> wrote:


--- Calvin Ellis <kyndig@gmail.com> wrote:

> I'm trying to figure out why my software on MAC OS X only displays squares
> instead of fonts. So I'm using CVS pango and running into problems getting
> it to compile. Initially it was looking for a gnome-automake.sh, so I
> manually ran the autoconf,automake to create the configure script. I then
> had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to
> an outdated MAC autoconf system ]
>
> I've finally managed to get pango to compile but am having linking
> difficulties. the pkg-config didn't run as expected during configure, so I
> hand modified several of the Makefiles. The final linking error I am having
> is:
> make[4]: Nothing to be done for `all'.
> /bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -L/GTK/lib
> -L/GTK/lib/glib- 2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o
> pango-querymodules  querymodules.o   libpangoft2-1.0.la  libpango-1.0.la
> gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o  -L/GTK/lib
> -L/GTK/lib/glib-2.0
> ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango-
> 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm
> /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib
> /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz
> /GTK/lib/libgobject-2.0.dylib
> /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib
> /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib
> /usr/bin/ld: Undefined symbols:
> _g_module_close
> _g_module_error
> _g_module_open
> _g_module_symbol
> collect2: ld returned 1 exit status
> make[4]: *** [pango-querymodules] Error 1
> make[3]: *** [all-recursive] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
> ================
> Does anyone know what lib I am missing to handle those symbols?
>
> Thank you,
> Calvin
>
> PS: If anyone has succesfully ported their GTK project to the native
> pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs -
> howtos - or software usage examples
> > _______________________________________________
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
>

Try my tool (see signature), though I never had a chance to run it
on MacOS.

On the other had, I did nothing to make it Linux or Solaris-specific,
so maybe it will also work on MacOS.

My tool builds released (not CVS) versions.

--Sergei.

Applications From Scratch: http://appsfromscratch.berlios.de/

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

------=_Part_23301_5220546.1156027479833-- From sergstesh@yahoo.com Sat Aug 19 19:52:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AE10E3B0098 for ; Sat, 19 Aug 2006 19:52:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24793-02 for ; Sat, 19 Aug 2006 19:51:52 -0400 (EDT) Received: from web35215.mail.mud.yahoo.com (web35215.mail.mud.yahoo.com [66.163.179.94]) by menubar.gnome.org (Postfix) with SMTP id 69A603B00E3 for ; Sat, 19 Aug 2006 19:51:41 -0400 (EDT) Received: (qmail 91647 invoked by uid 60001); 19 Aug 2006 23:51:40 -0000 Message-ID: <20060819235140.91645.qmail@web35215.mail.mud.yahoo.com> Received: from [84.94.133.55] by web35215.mail.mud.yahoo.com via HTTP; Sat, 19 Aug 2006 16:51:40 PDT Date: Sat, 19 Aug 2006 16:51:40 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango on MAC OS X To: Calvin Ellis , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.91 tagged_above=-999 required=2 tests=[AWL=-0.077, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_AQ=0.077, TW_GT=0.077, TW_QN=0.077] X-Spam-Score: 0.91 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 23:52:25 -0000 --- Calvin Ellis wrote: > Thanks Sergei - > > What finally got it working was the GTK MAC OSX "build-gtk.sh" script from > their website. I did a full OS reload with a vanilla MAC OS X and made sure > X11 wasn't installed. I then ran the build-gtk.sh script to build the devel > env. I compiled my software and it worked directly out of the box =) > > It's a little sluggish - nowhere near as fast in buffering as the X11 > version for MAC OS X, but I'm going to stick with this release and keep an > eye out for specific MAC updates. > > Thanks all for the help and pointers. > > For those looking to develop their MAC OS X, gtk+ software - the only thing > you need is: > http://developer.imendio.com/projects/gtk-macosx/build-instructions > Once you run the: build-gtk.sh bootstrap - make sure you move all your: > /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do > the same for /usr/share/aclo* /usr/share/autom* directories - as the > prescense of these files will confuse the cairo/glib build process. > > Calvin > > > On 8/18/06, Sergei Steshenko wrote: > > > > > > > > --- Calvin Ellis wrote: > > > > > I'm trying to figure out why my software on MAC OS X only displays > > squares > > > instead of fonts. So I'm using CVS pango and running into problems > > getting > > > it to compile. Initially it was looking for a gnome-automake.sh, so I > > > manually ran the autoconf,automake to create the configure script. I > > then > > > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due > > to > > > an outdated MAC autoconf system ] > > > > > > I've finally managed to get pango to compile but am having linking > > > difficulties. the pkg-config didn't run as expected during configure, so > > I > > > hand modified several of the Makefiles. The final linking error I am > > having > > > is: > > > make[4]: Nothing to be done for `all'. > > > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > > > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > > > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > > > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > > > -L/GTK/lib/glib-2.0 > > > ./.libs/libpangoft2-1.0.0.1.14.dylib > > /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > > > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > > > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > > > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > > > /GTK/lib/libgobject-2.0.dylib > > > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > > > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > > > /usr/bin/ld: Undefined symbols: > > > _g_module_close > > > _g_module_error > > > _g_module_open > > > _g_module_symbol > > > collect2: ld returned 1 exit status > > > make[4]: *** [pango-querymodules] Error 1 > > > make[3]: *** [all-recursive] Error 1 > > > make[2]: *** [all] Error 2 > > > make[1]: *** [all-recursive] Error 1 > > > make: *** [all] Error 2 > > > ================ > > > Does anyone know what lib I am missing to handle those symbols? > > > > > > Thank you, > > > Calvin > > > > > > PS: If anyone has succesfully ported their GTK project to the native > > > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - > > docs - > > > howtos - or software usage examples > > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > Try my tool (see signature), though I never had a chance to run it > > on MacOS. > > > > On the other had, I did nothing to make it Linux or Solaris-specific, > > so maybe it will also work on MacOS. > > > > My tool builds released (not CVS) versions. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Well, if you ever have some time aqnd disk space, I'd appreciate if you tried my tool anyway, just try it as /build.pl 1>build.log 2>&1 & (assuming you have sh/bash оor similar). The tool builds and installs everything locally, i.e. when invoked the above way it'll build everything under /build/ and install everything under /install/. I simply do not haeve access to Mac to try it. Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bounces@nabble.com Sat Aug 19 10:27:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 558693B00BC for ; Sat, 19 Aug 2006 10:27:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01600-05 for ; Sat, 19 Aug 2006 10:27:51 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 4DF1E3B0091 for ; Sat, 19 Aug 2006 10:27:51 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GEQLk-0001Kd-2s for gtk-list@gnome.org; Sat, 19 Aug 2006 05:54:52 -0700 Message-ID: <5884262.post@talk.nabble.com> Date: Sat, 19 Aug 2006 05:54:52 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we get pop-up on treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.034 tagged_above=-999 required=2 tests=[AWL=-1.009, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.034 X-Spam-Level: X-Mailman-Approved-At: Sun, 20 Aug 2006 08:22:26 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 14:27:52 -0000 i have notebook on window in that i have treeview on 1st page. i wnat to get the popup in treeview when we right click in treeview. iam getting this but i have small problem that is iam getting the pop up when i right click on labels of the note book. thanku for reading. sree -- View this message in context: http://www.nabble.com/how-we-get-pop-up-on-treeview-tf2132119.html#a5884262 Sent from the Gtk+ - General forum at Nabble.com. From kyndig@gmail.com Sun Aug 20 13:32:31 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E60023B0071 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17829-09 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id 0658A3B0003 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1792944wxd for ; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Received: by 10.70.118.4 with SMTP id q4mr8206151wxc; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Message-ID: Date: Sun, 20 Aug 2006 13:32:29 -0400 From: "Calvin Ellis" To: "mpsuzuki@hiroshima-u.ac.jp" Subject: Re: [gtk-list] pango on MAC OS X In-Reply-To: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_29953_31493096.1156095149506" References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.973 tagged_above=-999 required=2 tests=[AWL=-0.705, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.973 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2006 17:32:31 -0000 ------=_Part_29953_31493096.1156095149506 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline That is exactly correct. I was able to get it working, but only with the full gtk env. I tried packaging the software up, and got the same problem. There are no fonts, only square boxes like what your image shows. How did you fix it? Calvin On 8/20/06, mpsuzuki@hiroshima-u.ac.jp wrote: > > Hi, > > On Fri, 18 Aug 2006 15:53:06 -0400 > "Calvin Ellis" wrote: > >I'm trying to figure out why my software on MAC OS X only displays > squares > >instead of fonts. > > You see something like attached "gtk-demo-atsui.gif", > although you want to see "gtk-demo-fontconfig.gif"? > > Regards, > mpsuzuki > > > ------=_Part_29953_31493096.1156095149506 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline That is exactly correct. I was able to get it working, but only with the full gtk env. I tried packaging the software up, and got the same problem. There are no fonts, only square boxes like what your image shows.

How did you fix it?

Calvin

On 8/20/06, mpsuzuki@hiroshima-u.ac.jp <mpsuzuki@hiroshima-u.ac.jp > wrote:
Hi,

On Fri, 18 Aug 2006 15:53:06 -0400
"Calvin Ellis" < kyndig@gmail.com> wrote:
>I'm trying to figure out why my software on MAC OS X only displays squares
>instead of fonts.

You see something like attached "gtk-demo-atsui.gif ",
although you want to see "gtk-demo-fontconfig.gif"?

Regards,
mpsuzuki



------=_Part_29953_31493096.1156095149506-- From mpsuzuki@hiroshima-u.ac.jp Sun Aug 20 21:21:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C99783B03C9 for ; Sun, 20 Aug 2006 21:21:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05288-08 for ; Sun, 20 Aug 2006 21:21:21 -0400 (EDT) Received: from localhost.localnet (unknown [133.41.16.211]) by menubar.gnome.org (Postfix) with SMTP id 6FF713B009E for ; Sun, 20 Aug 2006 21:21:20 -0400 (EDT) Received: (qmail 19480 invoked by alias); 21 Aug 2006 01:20:41 -0000 Received: (qmail 19468 invoked by uid 7791); 21 Aug 2006 01:20:37 -0000 Received: from unknown (HELO centri) (127.0.0.1) by 0 with SMTP; 21 Aug 2006 01:20:37 -0000 Date: Mon, 21 Aug 2006 10:20:37 +0900 From: mpsuzuki@hiroshima-u.ac.jp To: "Calvin Ellis" Subject: Re: [gtk-list] pango on MAC OS X Message-Id: <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> In-Reply-To: References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.193 tagged_above=-999 required=2 tests=[AWL=-1.062, BAYES_00=-2.599, NO_REAL_NAME=0.961, RCVD_IN_WHOIS_BOGONS=2.43, TW_GT=0.077] X-Spam-Score: -0.193 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 01:21:26 -0000 Hi, On Sun, 20 Aug 2006 13:32:29 -0400 "Calvin Ellis" wrote: >That is exactly correct. I was able to get it working, but only with the >full gtk env. I tried packaging the software up, and got the same problem. >There are no fonts, only square boxes like what your image shows. I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is taken under following conditions: 1. cairo is configured as ATSUI as font/text backend 2. pango is configured to use cairo as font backend 3. pango module configuration file at ${pango_install_prefix}/etc/pango/pango.modules does not exist, or exists but lacks a line to call Pango-ATSUI modules like this: /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \ BasicScriptEngineATSUI \ PangoEngineShape \ PangoRenderATSUI \ armenian:* bopomofo:* cherokee:* coptic:* ... Please execute "pango-querymodules" and check if its output includes pango-basic-atsui.so. If it includes, and your existing pango.modules does not include, please update your pango.modules as: pango-querymodules > ${pango_install_prefix}/etc/pango/pango.modules However, I'm not sure about: pango.modules itself should be included in the software package, or the install executes pango-querymodules during installation procedure. Regards, mpsuzuki P.S. Yet I could not make other pango modules working under ATSUI configuration: I cannot render Arabic, Indic, and CJK scripts at all. From hvreddy1110@gmail.com Mon Aug 21 09:19:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 920003B048A for ; Mon, 21 Aug 2006 09:19:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05072-10 for ; Mon, 21 Aug 2006 09:19:32 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by menubar.gnome.org (Postfix) with ESMTP id 7CAC23B0072 for ; Mon, 21 Aug 2006 09:19:31 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so5658980pye for ; Mon, 21 Aug 2006 06:19:31 -0700 (PDT) Received: by 10.35.22.17 with SMTP id z17mr13271351pyi; Mon, 21 Aug 2006 06:19:31 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Mon, 21 Aug 2006 06:19:30 -0700 (PDT) Message-ID: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> Date: Mon, 21 Aug 2006 18:49:30 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Xfree86 for IMX31/ARM11 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_64863_3480006.1156166370958" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.229 tagged_above=-999 required=2 tests=[AWL=-1.040, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.229 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 13:19:32 -0000 ------=_Part_64863_3480006.1156166370958 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, Does any body crosscompiled XFree86(Xserver) for ARM processor. If so kindly send the procedure . My host system is i386 linux (SUSE/FC4) Target system is arm (IMX31 freescale processor with ARM11 Core) Thanks in advance. Regards, Harsha ------=_Part_64863_3480006.1156166370958 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All,
Does any body crosscompiled XFree86(Xserver) for ARM processor.
If so kindly send the procedure .
My host system is i386 linux (SUSE/FC4)
Target system is arm (IMX31 freescale processor with ARM11 Core)

Thanks in advance.

Regards,
Harsha ------=_Part_64863_3480006.1156166370958-- From torriem@chem.byu.edu Mon Aug 21 11:02:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 24AB23B0315 for ; Mon, 21 Aug 2006 11:02:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09810-10 for ; Mon, 21 Aug 2006 11:02:32 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id 8EA8A3B030D for ; Mon, 21 Aug 2006 11:02:31 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7LF2TY3002141; Mon, 21 Aug 2006 09:02:29 -0600 Subject: Re: Xfree86 for IMX31/ARM11 From: Michael L Torrie To: harshavardhanreddy mandeepala In-Reply-To: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> References: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> Content-Type: text/plain Date: Mon, 21 Aug 2006 09:02:28 -0600 Message-Id: <1156172549.10833.9.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Mon, 21 Aug 2006 09:02:29 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 15:02:35 -0000 On Mon, 2006-08-21 at 18:49 +0530, harshavardhanreddy mandeepala wrote: > Hi All, > Does any body crosscompiled XFree86(Xserver) for ARM processor. > If so kindly send the procedure . > My host system is i386 linux (SUSE/FC4) > Target system is arm (IMX31 freescale processor with ARM11 Core) Likely XFree86 is a poor choice for an embedded system. The better choice is the kdrive X server which is very small and works very well for small, arm-based devices. http://kdrive.freedesktop.org/wiki/Software_2fXserver Besides being small, this X serve uses standard autoconf configuration scripts so the source code can easily be built in a cross-compiling environment. The procedure is exactly the same as cross-compiling any application, so you shouldn't have any problems. Unfortunately, because of XFree86's antiquated build system, cross- compiling that beast will be very difficult. If you're determined to use a non-embedded X11 system, you'll likely want to use X.org's X server instead (XFree86 is considered deprecated by most folks) which is modularized and builds using standard autoconf tools, so cross-compiling is relatively easy. Michael > > Thanks in advance. > > Regards, > Harsha > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From mekstran@scl.ameslab.gov Mon Aug 21 15:20:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A338D3B015F for ; Mon, 21 Aug 2006 15:20:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22718-10 for ; Mon, 21 Aug 2006 15:20:01 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id DC1F23B0549 for ; Mon, 21 Aug 2006 15:20:00 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 21 Aug 2006 14:19:59 -0500 id 0000C049.44EA075F.000059BF In-Reply-To: <001201c6bfec$397b3240$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> <001201c6bfec$397b3240$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 21 Aug 2006 14:19:29 -0500 To: Bill Cunningham X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.493 tagged_above=-999 required=2 tests=[AWL=0.106, BAYES_00=-2.599] X-Spam-Score: -2.493 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 19:20:02 -0000 Sorry for my late reply, I've been out of the office since Tuesday. On Aug 14, 2006, at 4:54 PM, Bill Cunningham wrote: > checking for GLIB - version >= 2.5.7... no > *** Could not run GLIB test program, checking why... > *** The test program compiled, but did not run. This usually means > *** that the run-time linker is not finding GLIB or finding the wrong > *** version of GLIB. If it is not finding GLIB, you'll need to set > your > *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf > to point > *** to the installed location Also, make sure you have run > ldconfig if that > *** is required on your system > *** > *** If you have an old version installed, it is best to remove it, > although > *** you may also be able to get things to work by modifying > LD_LIBRARY_PATH > checking for pkg-config... (cached) /usr/local/bin/pkg-config > checking for GLIB - version >= 2.0.0... no > *** Could not run GLIB test program, checking why... > *** The test program compiled, but did not run. This usually means > *** that the run-time linker is not finding GLIB or finding the wrong > *** version of GLIB. If it is not finding GLIB, you'll need to set > your > *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf > to point > *** to the installed location Also, make sure you have run > ldconfig if that > *** is required on your system > *** > *** If you have an old version installed, it is best to remove it, > although > *** you may also be able to get things to work by modifying > LD_LIBRARY_PATH This output does confirm that it's a shared library location issue. If you haven't gotten this fixed already, set LD_LIBRARY_PATH or edit /etc/ld.so.conf, to include the location of the glib shared library. - Michael From kyndig@gmail.com Mon Aug 21 15:48:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BA89B3B0466 for ; Mon, 21 Aug 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24118-05 for ; Mon, 21 Aug 2006 15:48:18 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id 85AF33B0550 for ; Mon, 21 Aug 2006 15:48:17 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so2250342wxd for ; Mon, 21 Aug 2006 12:48:17 -0700 (PDT) Received: by 10.70.117.1 with SMTP id p1mr10175390wxc; Mon, 21 Aug 2006 12:48:17 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Mon, 21 Aug 2006 12:48:15 -0700 (PDT) Message-ID: Date: Mon, 21 Aug 2006 15:48:15 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: [gtk-list] pango on MAC OS X In-Reply-To: <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_48599_20177264.1156189695655" References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.796 tagged_above=-999 required=2 tests=[AWL=0.152, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.796 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 19:48:22 -0000 ------=_Part_48599_20177264.1156189695655 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Thank you very much mpsuzuki! That was the perfect hint that put me on the right track to fixing the native port issue. The problem was my pangorc file. I went with the example from Gimp.app - and write a series of scrips to handle a full gtk-mac os x bundled lib with my software [ I like click-n-go ]. But there was one small line missing from my pangorc file: ModulesPath= in pangorc. I just added that and it's working wonderfully now ( without X11 and without any server-wide gtk installed! ) Thank you once more =) I'll distro this software with native gtk to see what kind of feedback I get. Calvin On 8/20/06, mpsuzuki@hiroshima-u.ac.jp wrote: > > Hi, > > On Sun, 20 Aug 2006 13:32:29 -0400 > "Calvin Ellis" wrote: > >That is exactly correct. I was able to get it working, but only with the > >full gtk env. I tried packaging the software up, and got the same > problem. > >There are no fonts, only square boxes like what your image shows. > > I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is > taken under following conditions: > > 1. cairo is configured as ATSUI as font/text backend > > 2. pango is configured to use cairo as font backend > > 3. pango module configuration file at > > ${pango_install_prefix}/etc/pango/pango.modules > > does not exist, or exists but lacks a line to call > Pango-ATSUI modules like this: > > /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \ > BasicScriptEngineATSUI \ > PangoEngineShape \ > PangoRenderATSUI \ > armenian:* bopomofo:* cherokee:* coptic:* ... > > Please execute "pango-querymodules" and check if its output > includes pango-basic-atsui.so. If it includes, and your > existing pango.modules does not include, please update > your pango.modules as: > > pango-querymodules > > ${pango_install_prefix}/etc/pango/pango.modules > > However, I'm not sure about: pango.modules itself should be > included in the software package, or the install executes > pango-querymodules during installation procedure. > > > Regards, > mpsuzuki > > P.S. > Yet I could not make other pango modules working under ATSUI > configuration: I cannot render Arabic, Indic, and CJK scripts > at all. > ------=_Part_48599_20177264.1156189695655 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Thank you very much mpsuzuki! That was the perfect hint that put me on the right track to fixing the native port issue.

The problem was my pangorc file. I went with the example from Gimp.app - and write a series of scrips to handle a full gtk-mac os x bundled lib with my software [ I like click-n-go ]. But there was one small line missing from my pangorc file:

ModulesPath=

in pangorc. I just added that and it's working wonderfully now ( without X11 and without any server-wide gtk installed! )

Thank you once more =) I'll distro this software with native gtk to see what kind of feedback I get.

Calvin

On 8/20/06, mpsuzuki@hiroshima-u.ac.jp <mpsuzuki@hiroshima-u.ac.jp > wrote:
Hi,

On Sun, 20 Aug 2006 13:32:29 -0400
"Calvin Ellis" < kyndig@gmail.com> wrote:
>That is exactly correct. I was able to get it working, but only with the
>full gtk env. I tried packaging the software up, and got the same problem.
>There are no fonts, only square boxes like what your image shows.

I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is
taken under following conditions:

1. cairo is configured as ATSUI as font/text backend

2. pango is configured to use cairo as font backend

3. pango module configuration file at

        ${pango_install_prefix}/etc/pango/pango.modules

   does not exist, or exists but lacks a line to call
   Pango-ATSUI modules like this:

        /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \
        BasicScriptEngineATSUI \
        PangoEngineShape \
        PangoRenderATSUI \
        armenian:* bopomofo:* cherokee:* coptic:* ...

Please execute "pango-querymodules" and check if its output
includes pango-basic-atsui.so. If it includes, and your
existing pango.modules does not include, please update
your pango.modules as:

        pango-querymodules > ${pango_install_prefix}/etc/pango/pango.modules

However, I'm not sure about: pango.modules itself should be
included in the software package, or the install executes
pango-querymodules during installation procedure.


Regards,
mpsuzuki

P.S.
Yet I could not make other pango modules working under ATSUI
configuration: I cannot render Arabic, Indic, and CJK scripts
at all.

------=_Part_48599_20177264.1156189695655-- From francisco.moraes@gmail.com Tue Aug 22 08:36:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 570AC3B0061 for ; Tue, 22 Aug 2006 08:36:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32623-04 for ; Tue, 22 Aug 2006 08:36:46 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 53AB93B002A for ; Tue, 22 Aug 2006 08:36:46 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so6344254pye for ; Tue, 22 Aug 2006 05:36:45 -0700 (PDT) Received: by 10.35.113.12 with SMTP id q12mr15434203pym; Tue, 22 Aug 2006 05:36:45 -0700 (PDT) Received: by 10.35.103.16 with HTTP; Tue, 22 Aug 2006 05:36:40 -0700 (PDT) Message-ID: <13834f7e0608220536q785d96c2n244a695d65317b60@mail.gmail.com> Date: Tue, 22 Aug 2006 08:36:40 -0400 From: "Francisco Moraes" To: paul@linuxaudiosystems.com, gtk-list@gnome.org Subject: Re: GtkPrint PangoLayout extents In-Reply-To: <1155822094.28145.30.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_107255_29778870.1156250200995" References: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> <1155822094.28145.30.camel@localhost.localdomain> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.631 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.631 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2006 12:36:47 -0000 ------=_Part_107255_29778870.1156250200995 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline > > > Is this correct or is there a better way to figure out the text extents > when > > using Pango? > > try using the ink extents variant. That's exactly what I have been using but my experience shows that it seems to be about twice as big in width than I expected: gtk_print_context_create_pango_layout (pc); pango_layout_set_font_description (layout, current_font); pango_layout_set_text (layout, text, -1); pango_layout_context_changed (layout); pango_layout_get_extents (layout, &ink, &log); g_object_unref (layout); return (gdouble)ink.width / PANGO_SCALE; This code above returns widths about twice as expected. Dividing by 2 produces better results that closely resemble what I expected. ------=_Part_107255_29778870.1156250200995 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
> Is this correct or is there a better way to figure out the text extents when
> using Pango?

try using the ink extents variant.

That's exactly what I have been using but my experience shows that it seems to be about twice as big in width than I expected:


gtk_print_context_create_pango_layout (pc);

pango_layout_set_font_description (layout, current_font);
pango_layout_set_text (layout, text, -1);

pango_layout_context_changed (layout);

pango_layout_get_extents (layout, &ink, &log);

g_object_unref (layout);

return (gdouble)ink.width / PANGO_SCALE;

This code above returns widths about twice as expected. Dividing by 2 produces better results that closely resemble what I expected.
------=_Part_107255_29778870.1156250200995-- From lancelot@honeymak.myftp.org Tue Aug 22 11:09:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6D71A3B002A for ; Tue, 22 Aug 2006 11:09:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07921-05 for ; Tue, 22 Aug 2006 11:09:08 -0400 (EDT) Received: from smtp02.net-yan.com (smtp02.hgcbroadband.com [210.0.255.157]) by menubar.gnome.org (Postfix) with ESMTP id D2BE53B009C for ; Tue, 22 Aug 2006 11:09:06 -0400 (EDT) Received: (qmail 51415 invoked from network); 22 Aug 2006 15:09:05 -0000 Received: from unknown (HELO honeymak.myftp.org) (h0n3ym4k@hgcbroadband.com@[203.223.208.251]) (envelope-sender ) by smtp02.net-yan.com (qmail-ldap-1.03) with SMTP for ; 22 Aug 2006 15:09:05 -0000 Received: (qmail 17571 invoked from network); 22 Aug 2006 23:09:04 +0800 Received: from 10.0.0.121 by honeysvr (envelope-from , uid 201) with qmail-scanner-1.25st (clamdscan: 0.88.4/1705. spamassassin: 3.1.3. perlscan: 1.25st. Clear:RC:1(10.0.0.121):. Processed in 0.523968 secs); 22 Aug 2006 15:09:04 -0000 X-Qmail-Scanner-Mail-From: lancelot@honeymak.myftp.org via honeysvr X-Qmail-Scanner: 1.25st (Clear:RC:1(10.0.0.121):. Processed in 0.523968 secs Process 17563) Received: from unknown (HELO ?10.0.0.121?) (10.0.0.121) by 203.223.208.251 with SMTP; 22 Aug 2006 23:09:02 +0800 Message-ID: <44EB1E0E.40103@honeymak.myftp.org> Date: Tue, 22 Aug 2006 23:09:02 +0800 From: Lancelot Mak User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: re: rotate widget / textbox Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.31 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_XT=0.077] X-Spam-Score: -2.31 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2006 15:09:10 -0000 hi, folks i m looking for direction to rotate some text or gtk widget 90 degrees.......which is vertical and the text box and the text inside both go vertical as well i was trying to read API doc about GTK container and textview and some.......but no avail just read docs and know guys are making it an image and then rotate the image but i want the widget rotated rather becoz i want to make it input-able.....not just display-able any directions or guides? thanks a lot experts lancelot From besfahbo@redhat.com Tue Aug 22 23:34:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E17D63B0018; Tue, 22 Aug 2006 23:34:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05867-07; Tue, 22 Aug 2006 23:34:56 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5FABB3B000C; Tue, 22 Aug 2006 23:34:56 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7N3Yu4S021986; Tue, 22 Aug 2006 23:34:56 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7N3Yt30017622; Tue, 22 Aug 2006 23:34:55 -0400 Received: from vpn50-18.rdu.redhat.com (vpn50-18.rdu.redhat.com [172.16.50.18]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k7N3YsCT018863; Tue, 22 Aug 2006 23:34:54 -0400 Subject: Pango-1.14.2 released From: Behdad Esfahbod To: gnome-announce-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-K+ElUpc0nJWxL4Hb65xt" Organization: Red Hat, Inc. Date: Tue, 22 Aug 2006 23:34:53 -0400 Message-Id: <1156304093.12755.10.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 (2.6.3-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 03:34:58 -0000 --=-K+ElUpc0nJWxL4Hb65xt Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.14.2 is now available for download at: http://download.gnome.org/sources/pango/1.14/ or ftp://ftp.gtk.org/pub/pango/1.14 67b68a6b42dce1eb26e2e9abc31192c5 pango-1.14.2.tar.bz2 0981cf2951b18567e875dbc52f85153f pango-1.14.2.tar.gz\ This is a stable release and is source and binary compatible with 1.14.0. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Bugs should be reported to http://bugzilla.gnome.org. Pango 1.14 depends on version 2.10.0 or newer of the GLib library and version 1.2.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.14.1 and 1.14.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Find shaper/font for Private Use and space characters. Part of Bug 145275 =E2=80=93 Font selection for space characters Overview of changes between 1.14.0 and 1.14.1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Increased fontset cache size from 16 to 64. This should make firefox+pango A LOT faster. * Bugs fixed in this release: Bug 352114 =E2=80=93 pango-1.14: generated docs still contain old e= xample code Part of Bug 348825 =E2=80=93 pango should optimize away calls to Fc= FontSort as much as possible Bug 351585 =E2=80=93 API documentation issues with 2.15 release 22 August 2006 Behdad Esfahbod --=-K+ElUpc0nJWxL4Hb65xt Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE68zcn+4E5dNTERURAtgsAJ9XMEvBHpgVJJDUjTFmUtmWCirfawCfUW5j RpoKm4NdYk3TgkYQHlEzXbs= =nMpK -----END PGP SIGNATURE----- --=-K+ElUpc0nJWxL4Hb65xt-- From jayarajuc@mic.co.in Wed Aug 23 07:41:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB8563B007C for ; Wed, 23 Aug 2006 07:41:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27118-08 for ; Wed, 23 Aug 2006 07:41:02 -0400 (EDT) Received: from ecm.mic.co.in (mail.mic.co.in [220.227.243.139]) by menubar.gnome.org (Postfix) with ESMTP id 9F2733B000C for ; Wed, 23 Aug 2006 07:41:01 -0400 (EDT) Received: from mail.mic.co.in (unknown [192.168.1.8]) by ecm.mic.co.in (Postfix) with ESMTP id 95AFA774C2 for ; Wed, 23 Aug 2006 17:15:29 +0530 (IST) Received: from NMSServer (unknown [192.168.1.227]) by mail.mic.co.in (Postfix) with ESMTP id ADF394804A for ; Wed, 23 Aug 2006 17:08:10 +0530 (IST) Message-ID: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> From: "jayarajuc" To: Subject: how to include gtk header file in gtk. Date: Wed, 23 Aug 2006 16:42:48 +0530 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.3790.1830 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1830 X-MailServ-MailFilter-MailScanner-Information: Please contact the ISP for more information X-MailServ-MailFilter-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-Information: Please contact us for more information X-NetcoreSpam2-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-SpamCheck: X-MailScanner-From: jayarajuc@mic.co.in X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.077 tagged_above=-999 required=2 tests=[AWL=0.999, BAYES_50=0.001, TW_GT=0.077] X-Spam-Score: 1.077 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 11:41:03 -0000 Hi i am sameer. I am working on a project for banking under linux.(Red Hat Linux 9.0) we are asked to use 1) GTK 2)Mysql I have worked succesfully on mysql,but the problem is with gtk. when writing the program in gtk and trying to compile it is giving error. I am writing the program and the error below. #include int main( int argc,char *argv[] ) { GtkWidget *window; gtk_init (&argc, &argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_widget_show (window); gtk_main (); return 0; } when compilingthe program with the following statement gcc base.c -o base 'pkg-config --cflags --libs gtk+-2.0' i am getting an error unable to include directory 'gtk/gtk.h' . i will be grateful for the solution . thanking you. sameer. ------------------------------------------------------------------------ Confidentiality Notice The information contained in this Electronic Message and any ATTACHMENTs to this message are intended for the EXCLUSIVE USE of the ADDRESSEE(s) and may contain CONFIDENTIAL or PRIVILEGED information. If you are not the intended recipient, please notify the SENDER at MIC or itsupport@mic.co.in immediately and DESTROY all copies of this message and any attachmeents. ------------------------------------------------------------------------ From pjdavis@engineering.uiowa.edu Wed Aug 23 08:04:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D7173B006E for ; Wed, 23 Aug 2006 08:04:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28866-02 for ; Wed, 23 Aug 2006 08:03:59 -0400 (EDT) Received: from smtp.engineering.uiowa.edu (smtp.engineering.uiowa.edu [128.255.18.24]) by menubar.gnome.org (Postfix) with ESMTP id 78D7E3B008A for ; Wed, 23 Aug 2006 08:03:58 -0400 (EDT) Received: from [128.255.23.89] (gooey.ecn.uiowa.edu [128.255.23.89]) (authenticated user=pjdavis bits=0) by server11.icaen.uiowa.edu (8.13.2/smtp-serv-1.7) with ESMTP id k7NC3rDh011001; (envelope-from ) Wed, 23 Aug 2006 07:03:53 -0500 (CDT) Message-ID: <44EC46D6.6090003@engineering.uiowa.edu> Date: Wed, 23 Aug 2006 07:15:18 -0500 From: Paul Davis User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: jayarajuc Subject: Re: how to include gtk header file in gtk. References: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> In-Reply-To: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamav.icaen.uiowa.edu X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.492 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.492 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 12:04:00 -0000 jayarajuc wrote: > when compilingthe program with the following statement > gcc base.c -o base 'pkg-config --cflags --libs gtk+-2.0' > > i am getting an error > Your single quotes should be back ticks. ie: $ gcc test.c -o test `pkg-config --cflags --libs gtk+-2.0` The backtick (`) character is the same key as the tilda key. (Assuming you're sitting in front of an english keyboard. Which I kind of doubt seeing that your email address looks like its from India.) Anyhow, hope that helps. Oh, and as a second thought, if the error your getting is this: test.cc:1:33: error: non_existant_header.h: No such file or directory Something is whack with your gtk installation. Unless of course you also get this error message: Package non_existant_package was not found in the pkg-config search path. Perhaps you should add the directory containing `non_existant_package.pc' to the PKG_CONFIG_PATH environment variable No package 'non_existant_package' found In which case, you probably just don't have gtk installed at all. Which means you should probably install the library before you try and use it in development. (Note: Having the binary libraries installed isn't enough. You need the development headers and the such. On ubuntu, something like: $ sudo apt-get install libgtk+-2.0-dev Should get everything you need installed. ) Cheers, Paul From bounces@nabble.com Wed Aug 23 01:57:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F363B3B00B8 for ; Wed, 23 Aug 2006 01:57:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11277-07 for ; Wed, 23 Aug 2006 01:57:53 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0180C3B0071 for ; Wed, 23 Aug 2006 01:57:53 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GFlkO-000101-Fz for gtk-list@gnome.org; Tue, 22 Aug 2006 22:57:52 -0700 Message-ID: <5938668.post@talk.nabble.com> Date: Tue, 22 Aug 2006 22:57:52 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding Gtkwindows MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.018 tagged_above=-999 required=2 tests=[AWL=-1.034, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_TK=0.077] X-Spam-Score: 0.018 X-Spam-Level: X-Mailman-Approved-At: Wed, 23 Aug 2006 08:39:35 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 05:57:55 -0000 how we can disable close button in windows title bar. thank u,in advance sree -- View this message in context: http://www.nabble.com/regarding-Gtkwindows-tf2150568.html#a5938668 Sent from the Gtk+ - General forum at Nabble.com. From paul@linuxaudiosystems.com Wed Aug 23 11:32:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2B0163B008A for ; Wed, 23 Aug 2006 11:32:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07564-08 for ; Wed, 23 Aug 2006 11:32:37 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id EB0D73B0084 for ; Wed, 23 Aug 2006 11:32:36 -0400 (EDT) Received: from dhin ([141.151.59.23]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4G00BFZJ60QDV0@vms044.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 10:32:25 -0500 (CDT) Date: Wed, 23 Aug 2006 11:32:17 -0400 From: Paul Davis Subject: Re: regarding Gtkwindows In-reply-to: <5938668.post@talk.nabble.com> To: cnu_sree Message-id: <1156347137.2174.15.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain Content-transfer-encoding: 7bit References: <5938668.post@talk.nabble.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599, TW_TK=0.077] X-Spam-Score: -2.507 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 15:32:38 -0000 On Tue, 2006-08-22 at 22:57 -0700, cnu_sree wrote: > how we can disable close button in windows title bar. you can't. that is the responsibility of the window manager. your app can, however, ask the WM not to show a close button: some_gtk_window.signal_realize().connect (bind (sigc::ptr_fun (set_decoration), &some_gtk_window, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH))); void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor) { win->get_window()->set_decorations (decor); } note that you cannot call set_decorations() on an unrealized GtkWindow because get_window() will fail. whether or not the WM will honor your request is another story entirely. From jkoshi@yahoo.com Wed Aug 23 19:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 64C873B0074 for ; Wed, 23 Aug 2006 19:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27638-02 for ; Wed, 23 Aug 2006 19:44:03 -0400 (EDT) Received: from web50706.mail.yahoo.com (web50706.mail.yahoo.com [206.190.38.104]) by menubar.gnome.org (Postfix) with SMTP id 73E723B0017 for ; Wed, 23 Aug 2006 19:44:03 -0400 (EDT) Received: (qmail 21922 invoked by uid 60001); 23 Aug 2006 23:44:02 -0000 Message-ID: <20060823234402.21920.qmail@web50706.mail.yahoo.com> Received: from [24.5.217.205] by web50706.mail.yahoo.com via HTTP; Wed, 23 Aug 2006 16:44:02 PDT Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) From: John Koshi Subject: Question on gtk library dependencies To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.079 tagged_above=-999 required=2 tests=[AWL=-1.245, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 2.079 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 23:44:04 -0000 Hello, Sorry about the long-winded explanation below, but it gives a clear picture about a concern I have. I was building a simple gtk application for ipaq h6300 under Familiar 0.8.4 , and had to do the following: 1) Install gtk+-dev_2.6.7-r1_arm.ipk 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk 3) Install pango-dev_1.8.1-r2_arm.ipk 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk I had to fix some of the sym links, provide the linker with the library path, and then the build worked and tested OK. I later tried to install the "Roadmap" application, from http://sourceforge.net/projects/roadmap/ (the package is roadmap_1.0.12_arm.ipk). For it's dependencies, I had to install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. The remaining dependency for Roadmap to install correctly is libgtk2.0-0. Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 is already present. Will there be a conflict if I now get the package libgtk2.0-0 from Familiar? My concern is that libgtk2.0-0 and it's several dependencies (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all appear to be earlier versions than what I now have installed on my ipaq, and I may end with a mess if I do install it. Thanks in advance for your help. regards, John From torresmat@gmail.com Wed Aug 23 21:09:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D3B203B006E for ; Wed, 23 Aug 2006 21:09:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30546-03 for ; Wed, 23 Aug 2006 21:09:55 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by menubar.gnome.org (Postfix) with ESMTP id A70623B0074 for ; Wed, 23 Aug 2006 21:09:54 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so406354wxd for ; Wed, 23 Aug 2006 18:09:54 -0700 (PDT) Received: by 10.70.21.8 with SMTP id 8mr1557653wxu; Wed, 23 Aug 2006 18:09:54 -0700 (PDT) Received: from ?192.168.0.2? ( [201.255.75.81]) by mx.gmail.com with ESMTP id i17sm1029925wxd.2006.08.23.18.09.52; Wed, 23 Aug 2006 18:09:53 -0700 (PDT) Message-ID: <44ECFC5D.2060001@gmail.com> Date: Wed, 23 Aug 2006 22:09:49 -0300 From: Matias Torres User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Cross Compiling GTK+ (almost, i hope) Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.061 tagged_above=-999 required=2 tests=[AWL=-0.972, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, HTML_TITLE_EMPTY=0.214, MIME_HTML_ONLY=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_BJ=0.077, TW_BP=0.077, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: 0.061 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:09:56 -0000 /*
 * Its stronggly recommended to read this mail under some really happy music.
*/

Hi! I'm building an application and I've been trying for days but with no results that may draw a smile in my face.
What I have done so far in favor of the "damn-lost-in-cross-compiling project" is:

- I started reading the docs for cross compiling application that uses gtk provided by gtk.org "Building GTK apps for MS Windows on Linux".

- There where a few problems compiling binutils-whatever, but it finally compile (the problem was "undefined reference to yyparser". The solution? i move to a computer with mandrake 10, install bison and bison-devel (the other one has ubuntu, but could find the devel package) .
After that i was happy, i swear that i could see the light at the end of the.. tunnel (sorry, i'm kind of bored at this point) but no, gcc-3.4.2 manage to not compile. The error was that it couldn't find the lib stdio.h (#include <stidio.h>) which.. i don't know what it means yet.

-So.. I download the ubuntu deb packages for mingw32, mingw32-gcc and mingw32-binutils from the repositories and install them. After that i created something like a cross directory in /opt/cross-tools and under the mingw32 directory i unpack every single win32-zip-file i found in ftp://ftp.gtk.org/pub/gtk/v2.8/win32. These zip files are:

atk-1.10.3.zip
atk-dev-1.10.3.zip
cairo-1.2.4.zip
cairo-dev-1.2.4.zip
glib-2.8.6.zip                  (Should it be 2.10?)
glib-dev-2.8.6.zip
gtk+-dev-2.8.20.zip
pango-1.10.3.zip
pango-dev-1.10.3.zip
gtk+-2.8.20.zip

and its dependencies...

fontconfig-2.2.2-20040412.zip
fontconfig-dev-2.2.2-20040412.zip
freetype-2.1.10.zip
gettext-0.14.5.tar.gz
gettext-0.14.5.zip
gettext-dev-0.14.5.zip
libiconv-1.9.1.bin.woe32.zip
libiconv-1.9.1.tar.gz
libpng-1.2.8-bin.zip
pkg-config-0.20.zip
zlib123-dll.zip

Then i modified the prefix line in all pkgconfig files under /opt/cross-tools/mingw32/lib/pkgconfig from prefix=c:/devel/target to prefix=/opt/cross-tools/mingw32.

I used and modified a little script to set the environment variables available in the docs mentioned above:

PREFIX=/opt/cross-tools
TARGET=mingw32
export CC="i586-mingw32msvc-gcc -mms-bitfields"
export CXX="i586-mingw32msvc-g++ -mms-bitfields"
export CFLAGS="-O2 -march=i586 -mms-bitfields"
export CXXFLAGS="-O2 -march=i586 -mms-bitfields"
export PKG_CONFIG_PATH=$PREFIX/$TARGET/lib/pkgconfig
export PATH=$PREFIX/$TARGET/bin:/bin:/usr/bin
export LD_LIBRARY_PATH=$PREFIX/$TARGET/lib
export LDFLAGS=-L$PREFIX/$TARGET/lib
export OBJDUMP=$PREFIX/$TARGET/bin/mingw32-objdump
export HOST_CC=/usr/bin/gcc

Now.. I was ready to compile a simple helloworld application.

So.. i exec this:
i586-mingw32msvc-gcc -o helloworld `pkg-config --libs --cflags gtk+-2.0` helloworld.c
Its answer was:
    
/tmp/ccb35C7l.o:helloworld.c:(.text+0x3f): referencia a `_gtk_init_abi_check' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x4f): referencia a `_gtk_label_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x5f): referencia a `_gtk_frame_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x76): referencia a `_gtk_container_get_type' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x82): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x8b): referencia a `_gtk_container_add' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x98): referencia a `_gtk_window_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xaf): referencia a `_gtk_container_get_type' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xbb): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xc4): referencia a `_gtk_container_add' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xdc): referencia a `_gtk_widget_set_size_request' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xea): referencia a `_gtk_widget_show_all' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xfb): referencia a `_gtk_main_quit' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x10d): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x116): referencia a `_g_signal_connect_data' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x11e): referencia a `_gtk_main' sin definir


So i exec the following just to ... well....i don't know it may have work!
i586-mingw32msvc-gcc -o helloworld `pkg-config --static --libs --cflags gtk+-2.0` helloworld.c,
And kindly answer this:
/usr/lib/gcc/i586-mingw32msvc/3.4.4/../../../../i586-mingw32msvc/bin/ld: no se puede encontrar -lpng12
collect2: ld returned 1 exit status









From billcu1@verizon.net Wed Aug 23 21:29:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6EE113B0081 for ; Wed, 23 Aug 2006 21:29:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31072-04 for ; Wed, 23 Aug 2006 21:29:33 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 95E683B006E for ; Wed, 23 Aug 2006 21:29:33 -0400 (EDT) Received: from win98 ([151.205.70.148]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4H00B13AT8QGG3@vms044.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 20:29:33 -0500 (CDT) Date: Wed, 23 Aug 2006 21:27:54 -0400 From: "Bill Cunningham" Subject: What next To: Message-id: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.402 tagged_above=-999 required=2 tests=[AWL=-0.506, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.402 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:29:34 -0000 Ok I have successfully installed atk, glib, pkg-config, X, and would like to ask what next to get to gtk? Pango? Should I install Gargnome next? Bill From tml@iki.fi Wed Aug 23 21:32:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CCC483B0092 for ; Wed, 23 Aug 2006 21:32:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-02 for ; Wed, 23 Aug 2006 21:32:51 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id 0FBCF3B006C for ; Wed, 23 Aug 2006 21:32:51 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id A91CF139333 for ; Thu, 24 Aug 2006 04:32:48 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17645.440.615000.658694@gargle.gargle.HOWL> Date: Thu, 24 Aug 2006 04:32:40 +0300 To: gtk-list@gnome.org Subject: Re: Cross Compiling GTK+ (almost, i hope) In-Reply-To: <44ECFC5D.2060001@gmail.com> References: <44ECFC5D.2060001@gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.127, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.337 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:32:53 -0000 Matias Torres writes: > i unpack every single win32-zip-file i found in > ftp://ftp.gtk.org/pub/gtk/v2.8/win32. You probably want to be using the newest versions of glib 2.12 and pango 1.14 instead. (And gtk+ 2.10 once the next (source) release of that is done, after which I will produce Win32 binaries.) > i586-mingw32msvc-gcc -o helloworld `pkg-config --libs --cflags gtk+-2.0` helloworld.c You should pass the CFLAGS and LIBS separately. CFLAGS goes before the source files, and LIBS goes *after*. With gcc on Linux it doesn't matter, but the order and position of libraries on the command line *does* matter with gcc on Windows. Also with traditional Unix compilers is is important. I would also spell out the .exe. I.e., what you want is: i586-mingw32msvc-gcc -o helloworld.exe `pkg-config --cflags gtk+-2.0` helloworld.c `pkg-config --libs gtk+-2.0` --tml From michael@elehack.net Wed Aug 23 22:35:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1476E3B008D for ; Wed, 23 Aug 2006 22:35:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01075-09 for ; Wed, 23 Aug 2006 22:35:24 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id 3357A3B006C for ; Wed, 23 Aug 2006 22:35:22 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=[192.168.1.100]) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GG53w-00079j-Sb; Wed, 23 Aug 2006 21:35:21 -0500 Subject: Re: What next From: Michael Ekstrand To: Bill Cunningham In-Reply-To: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> References: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> Content-Type: text/plain Date: Wed, 23 Aug 2006 21:35:18 -0500 Message-Id: <1156386919.841.0.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.466 tagged_above=-999 required=2 tests=[AWL=0.133, BAYES_00=-2.599] X-Spam-Score: -2.466 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 02:35:26 -0000 On Wed, 2006-08-23 at 21:27 -0400, Bill Cunningham wrote: > Ok I have successfully installed atk, glib, pkg-config, X, and would > like to ask what next to get to gtk? Pango? Should I install Gargnome next? Pango. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From sergstesh@yahoo.com Wed Aug 23 23:30:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D46853B0017 for ; Wed, 23 Aug 2006 23:30:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03153-03 for ; Wed, 23 Aug 2006 23:30:40 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 256543B000A for ; Wed, 23 Aug 2006 23:30:40 -0400 (EDT) Received: (qmail 45705 invoked by uid 60001); 24 Aug 2006 03:30:39 -0000 Message-ID: <20060824033039.45703.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.157.121] by web35203.mail.mud.yahoo.com via HTTP; Wed, 23 Aug 2006 20:30:39 PDT Date: Wed, 23 Aug 2006 20:30:39 -0700 (PDT) From: Sergei Steshenko Subject: Re: What next To: Michael Ekstrand , Bill Cunningham In-Reply-To: <1156386919.841.0.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.544 tagged_above=-999 required=2 tests=[AWL=-1.377, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.544 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:30:43 -0000 --- Michael Ekstrand wrote: > On Wed, 2006-08-23 at 21:27 -0400, Bill Cunningham wrote: > > Ok I have successfully installed atk, glib, pkg-config, X, and would > > like to ask what next to get to gtk? Pango? Should I install Gargnome next? > > Pango. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Bill, if you do not want to use my tool, you can still read the log file: http://appsfromscratch.berlios.de/build.first_run.log.txt . In the log file you can see in which order the libraries are built. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Wed Aug 23 23:36:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C05EF3B011C for ; Wed, 23 Aug 2006 23:36:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03481-02 for ; Wed, 23 Aug 2006 23:36:28 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id BDCC63B019B for ; Wed, 23 Aug 2006 23:36:27 -0400 (EDT) Received: from win98 ([72.64.18.14]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4H00H5QGOCJK12@vms046.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 22:36:13 -0500 (CDT) Date: Wed, 23 Aug 2006 23:34:34 -0400 From: "Bill Cunningham" Subject: Re: What next To: "Sergei Steshenko" Message-id: <000a01c6c72e$385ed580$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060824033039.45703.qmail@web35203.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.492 tagged_above=-999 required=2 tests=[AWL=-0.230, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.492 X-Spam-Level: * Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:36:31 -0000 > > Bill, if you do not want to use my tool, you can still read the log file: > > http://appsfromscratch.berlios.de/build.first_run.log.txt > . > > In the log file you can see in which order the libraries are built. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > Running your tool from the sh has proven to be a little difficult for me and I have trouble reading the perl. Bill From sergstesh@yahoo.com Wed Aug 23 23:42:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 03F5A3B006C for ; Wed, 23 Aug 2006 23:42:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03726-02 for ; Wed, 23 Aug 2006 23:42:33 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 7A8E43B000D for ; Wed, 23 Aug 2006 23:42:33 -0400 (EDT) Received: (qmail 68292 invoked by uid 60001); 24 Aug 2006 03:42:33 -0000 Message-ID: <20060824034233.68290.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.157.121] by web35213.mail.mud.yahoo.com via HTTP; Wed, 23 Aug 2006 20:42:33 PDT Date: Wed, 23 Aug 2006 20:42:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: What next To: Bill Cunningham In-Reply-To: <000a01c6c72e$385ed580$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.574 tagged_above=-999 required=2 tests=[AWL=-1.330, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.574 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:42:35 -0000 --- Bill Cunningham wrote: > > > > > Bill, if you do not want to use my tool, you can still read the log file: > > > > http://appsfromscratch.berlios.de/build.first_run.log.txt > > . > > > > In the log file you can see in which order the libraries are built. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > Running your tool from the sh has proven to be a little difficult for me > and I have trouble reading the perl. > > Bill > > You haven't published a single error message. NEVER. The log file is in English, not in Perl. This is what simple grep shows: " grep make.log build.first_run.log.txt | grep 'log file will be' build.pl :INFO: 'make' for 'zlib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/zlib-1.2.3/make.log' build.pl :INFO: 'make' for 'freetype' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/freetype-2.2.1/make.log' build.pl :INFO: 'make' for 'libpng' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libpng-1.2.12/make.log' build.pl :INFO: 'make' for 'cairo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/cairo-1.2.2/make.log' build.pl :INFO: 'make' for 'Cairo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Cairo-0.92/make.log' build.pl :INFO: 'make' for 'glib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/glib-2.12.2/make.log' build.pl :INFO: 'make' for 'Glib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Glib-1.120/make.log' build.pl :INFO: 'make' for 'libxml2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libxml2-2.6.26/make.log' build.pl :INFO: 'make' for 'gstreamer' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gstreamer-0.10.8/make.log' build.pl :INFO: 'make' for 'liboil' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/liboil-0.3.9/make.log' build.pl :INFO: 'make' for 'gst-plugins-base' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gst-plugins-base-0.10.7/make.log' build.pl :INFO: 'make' for 'GStreamer' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/GStreamer-0.09/make.log' build.pl :INFO: 'make' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.12.1/make.log' build.pl :INFO: 'make' for 'libjpeg' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/jpegsrc.v6b/make.log' build.pl :INFO: 'make' for 'libtiff' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/tiff-3.8.2/make.log' build.pl :INFO: 'make' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.14.0/make.log' build.pl :INFO: 'make' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.20/make.log' build.pl :INFO: 'make' for 'Gtk2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-1.122/make.log' build.pl :INFO: 'make' for 'libart_lgpl' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libart_lgpl-2.3.17/make.log' build.pl :INFO: 'make' for 'libglade' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libglade-2.6.0/make.log' build.pl :INFO: 'make' for 'libgnomecanvas' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomecanvas-2.14.0/make.log' build.pl :INFO: 'make' for 'Gnome2-Canvas' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Canvas-1.002/make.log' build.pl :INFO: 'make' for 'libIDL' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libIDL-0.8.7/make.log' build.pl :INFO: 'make' for 'ORBit2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/ORBit2-2.14.2/make.log' build.pl :INFO: 'make' for 'GConf' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/GConf-2.14.0/make.log' build.pl :INFO: 'make' for 'libbonobo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libbonobo-2.14.0/make.log' build.pl :INFO: 'make' for 'gnome-vfs' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gnome-vfs-2.14.2/make.log' build.pl :INFO: 'make' for 'Gnome2-VFS' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-VFS-1.060/make.log' build.pl :INFO: 'make' for 'audiofile' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/audiofile-0.2.6/make.log' build.pl :INFO: 'make' for 'esound' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/esound-0.2.36/make.log' build.pl :INFO: 'make' for 'libgnome' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnome-2.14.1/make.log' build.pl :INFO: 'make' for 'libbonoboui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libbonoboui-2.14.0/make.log' build.pl :INFO: 'make' for 'gnome-keyring' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gnome-keyring-0.4.9/make.log' build.pl :INFO: 'make' for 'libgnomeui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeui-2.14.1/make.log' build.pl :INFO: 'make' for 'Gnome2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-1.040/make.log' build.pl :INFO: 'make' for 'libgnomeprint' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeprint-2.12.1/make.log' build.pl :INFO: 'make' for 'libgnomeprintui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeprintui-2.12.1/make.log' build.pl :INFO: 'make' for 'Gnome2-Print' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Print-0.951/make.log' build.pl :INFO: 'make' for 'diacanvas2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/diacanvas2-0.14.4/make.log' build.pl :INFO: 'make' for 'Gnome2-Dia' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Dia-0.04/make.log' build.pl :INFO: 'make' for 'Gnome2-GConf' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-GConf-1.032/make.log' build.pl :INFO: 'make' for 'vte' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/vte-0.12.2/make.log' build.pl :INFO: 'make' for 'Gnome2-Vte' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Vte-0.06/make.log' build.pl :INFO: 'make' for 'libwnck' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libwnck-2.14.2/make.log' build.pl :INFO: 'make' for 'Gnome2-Wnck' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Wnck-0.13/make.log' build.pl :INFO: 'make' for 'Gtk2-GladeXML' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-GladeXML-1.005/make.log' build.pl :INFO: 'make' for 'gail' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gail-1.8.11/make.log' build.pl :INFO: 'make' for 'libgtkhtml' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgtkhtml-2.6.3/make.log' build.pl :INFO: 'make' for 'Gtk2-Html2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-Html2-0.04/make.log' build.pl :INFO: 'make' for 'Gtk2-TrayIcon' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-TrayIcon-0.04/make.log' build.pl :INFO: 'make' for 'wxGTK' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/wxGTK-2.6.3/make.log' build.pl :INFO: 'make' for 'Wx' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Wx-0.26/make.log' build.pl :INFO: 'make' for 'at-spi' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/at-spi-1.6.6/make.log' build.pl :INFO: 'make' for 'glade' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/glade-2.12.1/make.log' build.pl :INFO: 'make' for 'wxX11' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/wxX11-2.6.3/make.log' " - that's the order in which you have to build libraries. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From kpalagin@phxint.ru Thu Aug 24 10:11:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A5AE13B006E for ; Thu, 24 Aug 2006 10:11:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29510-10 for ; Thu, 24 Aug 2006 10:11:56 -0400 (EDT) Received: from LEO.phxint.ru (leo.phxint.ru [62.5.246.66]) by menubar.gnome.org (Postfix) with ESMTP id 366523B000F for ; Thu, 24 Aug 2006 10:11:56 -0400 (EDT) Received: from leo.phxint.ru ([172.16.0.16]) by LEO.phxint.ru with Microsoft SMTPSVC(6.0.3790.0); Thu, 24 Aug 2006 18:11:55 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-class: urn:content-classes:message Subject: GTK+ 2.10.x - where do I get Win32 installer? X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Thu, 24 Aug 2006 18:11:53 +0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: GTK+ 2.10.x - where do I get Win32 installer? Thread-Index: AcbHh0A9V0ESTh7IS4i5vlC9EVHPYg== From: "Kirill S. Palagin" To: X-OriginalArrivalTime: 24 Aug 2006 14:11:55.0206 (UTC) FILETIME=[4105F660:01C6C787] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=0.669, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -1.931 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 14:11:57 -0000 Hello. I am trying to find Win32 installer for GTK+ 2.10.x, but can not. It is not at ftp://ftp.gtk.org/pub/gtk/v2.10/win32/ or any of the mirrors. Where can I get it? Thanks. WBR, K. Palagin. From jkoshi@yahoo.com Thu Aug 24 12:07:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A2B013B0104 for ; Thu, 24 Aug 2006 12:07:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03326-04 for ; Thu, 24 Aug 2006 12:07:06 -0400 (EDT) Received: from web50708.mail.yahoo.com (web50708.mail.yahoo.com [206.190.38.106]) by menubar.gnome.org (Postfix) with SMTP id 0D2E93B006E for ; Thu, 24 Aug 2006 12:07:06 -0400 (EDT) Received: (qmail 29261 invoked by uid 60001); 24 Aug 2006 16:07:05 -0000 Message-ID: <20060824160705.29259.qmail@web50708.mail.yahoo.com> Received: from [24.5.217.205] by web50708.mail.yahoo.com via HTTP; Thu, 24 Aug 2006 09:07:05 PDT Date: Thu, 24 Aug 2006 09:07:05 -0700 (PDT) From: John Koshi Subject: Fwd: Question on gtk library dependencies To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.494 tagged_above=-999 required=2 tests=[AWL=0.584, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 1.494 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 16:07:08 -0000 Hi, Does anyone have a quick answer for this question? Thanks --- John Koshi wrote: > Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) > From: John Koshi > Subject: Question on gtk library dependencies > To: gtk-list@gnome.org > > > Hello, > > Sorry about the long-winded explanation below, but it > gives a clear picture about a concern I have. > > I was building a simple gtk application for ipaq h6300 > under Familiar 0.8.4 , and had to do the following: > > 1) Install gtk+-dev_2.6.7-r1_arm.ipk > 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk > 3) Install pango-dev_1.8.1-r2_arm.ipk > 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk > > I had to fix some of the sym links, provide the linker > with the library path, and then the build worked and > tested OK. > > I later tried to install the "Roadmap" application, from > http://sourceforge.net/projects/roadmap/ (the package is > roadmap_1.0.12_arm.ipk). For it's dependencies, I had to > install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. > > The remaining dependency for Roadmap to install correctly > is libgtk2.0-0. > > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > is already present. Will there be a conflict if I now get > the package libgtk2.0-0 from Familiar? > > My concern is that libgtk2.0-0 and it's several dependencies > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > appear to be earlier versions than what I now have installed > on my ipaq, and I may end with a mess if I do install it. > > Thanks in advance for your help. > > regards, > John > > From mekstran@scl.ameslab.gov Thu Aug 24 12:38:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E0393B006E for ; Thu, 24 Aug 2006 12:38:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04901-01 for ; Thu, 24 Aug 2006 12:38:32 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id C2A363B000F for ; Thu, 24 Aug 2006 12:38:31 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Thu, 24 Aug 2006 11:38:31 -0500 id 0005B8CE.44EDD607.00003358 Resent-Message-Id: <2084C3F8-6586-47C0-9CC8-E78240F106FA@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Resent-Date: Thu, 24 Aug 2006 11:38:00 -0500 Message-Id: <423D5B09-AEA9-4522-A2EA-7810DC31C718@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: Question on gtk library dependencies Resent-From: Michael Ekstrand Date: Thu, 24 Aug 2006 11:35:28 -0500 To: John Koshi X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.417 tagged_above=-999 required=2 tests=[AWL=0.028, BAYES_00=-2.599, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: -2.417 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 16:38:32 -0000 On Aug 23, 2006, at 6:44 PM, John Koshi wrote: > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > is already present. Will there be a conflict if I now get > the package libgtk2.0-0 from Familiar? > > My concern is that libgtk2.0-0 and it's several dependencies > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > appear to be earlier versions than what I now have installed > on my ipaq, and I may end with a mess if I do install it. Thing 1 to try: does Familiar have a way to "inject" a package (tell it that a package is effectively installed, although you haven't actually installed it - different distros call it different things, but it lets you install something manually and tell the package manager that "yeah, I have this..."). Otherwise, it very well might be OK. Might not. Best way to find out is to back up the files and try. - Michael From tml@iki.fi Thu Aug 24 14:21:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 477BC3B006C for ; Thu, 24 Aug 2006 14:21:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09637-05 for ; Thu, 24 Aug 2006 14:21:08 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id C01063B006B for ; Thu, 24 Aug 2006 14:21:07 -0400 (EDT) Received: from pettson.tml.iki.fi (MMLIV.tun.saunalahti.fi [213.169.30.254]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id E92261393D8 for ; Thu, 24 Aug 2006 21:21:05 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17645.60949.109000.259710@gargle.gargle.HOWL> Date: Thu, 24 Aug 2006 21:21:09 +0300 To: Subject: Re: GTK+ 2.10.x - where do I get Win32 installer? In-Reply-To: References: X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 18:21:09 -0000 Kirill S. Palagin writes: > I am trying to find Win32 installer for GTK+ 2.10.x, but can not. I haven't made any Win32 binaries of GTK+ 2.10.x yet available at ftp.gtk.org, because there have been Win32-specific problems with the file chooser. Now I hope those Win32-specific problems have mostly been fixed, so when the next version (2.10.3) is released I will also distribute Win32 binaries. Note that there never have been any GTK+ installers on ftp.gtk.org, just plain zipfiles. > Where can I get it? Build it yourself. --tml From kyndig@gmail.com Thu Aug 24 15:17:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82FC83B01C5 for ; Thu, 24 Aug 2006 15:17:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11967-07 for ; Thu, 24 Aug 2006 15:17:03 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by menubar.gnome.org (Postfix) with ESMTP id 752D63B019C for ; Thu, 24 Aug 2006 15:17:03 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i26so624471wxd for ; Thu, 24 Aug 2006 12:17:02 -0700 (PDT) Received: by 10.70.52.2 with SMTP id z2mr3102300wxz; Thu, 24 Aug 2006 12:16:58 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Thu, 24 Aug 2006 12:16:58 -0700 (PDT) Message-ID: Date: Thu, 24 Aug 2006 15:16:58 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: GTK+ 2.10.x - where do I get Win32 installer? In-Reply-To: <17645.60949.109000.259710@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_109171_8151754.1156447018582" References: <17645.60949.109000.259710@gargle.gargle.HOWL> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.881 tagged_above=-999 required=2 tests=[AWL=0.230, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_50_60=0.134, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_LQ=0.077] X-Spam-Score: -1.881 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 19:17:04 -0000 ------=_Part_109171_8151754.1156447018582 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 8/24/06, Tor Lillqvist wrote: > > Kirill S. Palagin writes: > > I am trying to find Win32 installer for GTK+ 2.10.x, but can not. Try here too: http://gladewin32.sourceforge.net/modules/news/ These are the instructions I use for building a gtk devel environment on windows using MinGW http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4 Calvin ------=_Part_109171_8151754.1156447018582 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

On 8/24/06, Tor Lillqvist <tml@iki.fi> wrote:
Kirill S. Palagin writes:
> I am trying to find Win32 installer for GTK+ 2.10.x, but can not.

Try here too:
http://gladewin32.sourceforge.net/modules/news/

These are the instructions I use for  building a gtk devel environment on windows using MinGW
http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4

Calvin
 

------=_Part_109171_8151754.1156447018582-- From sergstesh@yahoo.com Thu Aug 24 17:38:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BF1833B006C for ; Thu, 24 Aug 2006 17:38:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17378-05 for ; Thu, 24 Aug 2006 17:38:22 -0400 (EDT) Received: from web35201.mail.mud.yahoo.com (web35201.mail.mud.yahoo.com [66.163.179.80]) by menubar.gnome.org (Postfix) with SMTP id BD1423B000B for ; Thu, 24 Aug 2006 17:38:21 -0400 (EDT) Received: (qmail 61345 invoked by uid 60001); 24 Aug 2006 21:38:21 -0000 Message-ID: <20060824213821.61343.qmail@web35201.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35201.mail.mud.yahoo.com via HTTP; Thu, 24 Aug 2006 14:38:21 PDT Date: Thu, 24 Aug 2006 14:38:21 -0700 (PDT) From: Sergei Steshenko Subject: Re: Fwd: Question on gtk library dependencies To: John Koshi , gtk-list@gnome.org In-Reply-To: <20060824160705.29259.qmail@web50708.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.374 tagged_above=-999 required=2 tests=[AWL=-1.515, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_BJ=0.077, TW_BP=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -0.374 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 21:38:24 -0000 --- John Koshi wrote: > > Hi, > > Does anyone have a quick answer for this question? > > Thanks > > > --- John Koshi wrote: > > > Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) > > From: John Koshi > > Subject: Question on gtk library dependencies > > To: gtk-list@gnome.org > > > > > > Hello, > > > > Sorry about the long-winded explanation below, but it > > gives a clear picture about a concern I have. > > > > I was building a simple gtk application for ipaq h6300 > > under Familiar 0.8.4 , and had to do the following: > > > > 1) Install gtk+-dev_2.6.7-r1_arm.ipk > > 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk > > 3) Install pango-dev_1.8.1-r2_arm.ipk > > 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk > > > > I had to fix some of the sym links, provide the linker > > with the library path, and then the build worked and > > tested OK. > > > > I later tried to install the "Roadmap" application, from > > http://sourceforge.net/projects/roadmap/ (the package is > > roadmap_1.0.12_arm.ipk). For it's dependencies, I had to > > install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. > > > > The remaining dependency for Roadmap to install correctly > > is libgtk2.0-0. > > > > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > > is already present. Will there be a conflict if I now get > > the package libgtk2.0-0 from Familiar? > > > > My concern is that libgtk2.0-0 and it's several dependencies > > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > > appear to be earlier versions than what I now have installed > > on my ipaq, and I may end with a mess if I do install it. > > > > Thanks in advance for your help. > > > > regards, > > John > > > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Have a look into my tool (see signature), though it is not intended for ipaq. The piece of info you need is represented by this part of the data structure describing targets to be built: targets => { libjpeg => do{ my $target_basename = 'jpegsrc.v6b'; $libjpeg_hash_ref = { base_urls => ['ftp://ftp.uu.net/graphics/jpeg'], target_basename => $target_basename, configure_args => '--enable-shared', pre_configure_sub => sub { my %this_sub_args = @_; my $info_marker = $this_sub_args{info_marker}; my $error_marker = $this_sub_args{error_marker}; my $cmdline_args_hash_ref = $this_sub_args{cmdline_args_hash_ref}; my $system_wrapper_sub = $this_sub_args{system_wrapper_sub}; my $wrong_dir = "${$cmdline_args_hash_ref}{build_prefix}/jpeg-6b"; unless(rename($wrong_dir => $this_sub_args{target_build_dir})) { warn "$error_marker could not rename $wrong_dir => $this_sub_args{target_build_dir}\n"; return 1; } 0; # the returned value }, # sub # pre_configure_sub pre_make_sub => sub { my %this_sub_args = @_; my $info_marker = $this_sub_args{info_marker}; my $error_marker = $this_sub_args{error_marker}; my $system_wrapper_sub = $this_sub_args{system_wrapper_sub}; my $target_build_dir = $this_sub_args{target_build_dir}; my $makefile = "$target_build_dir/Makefile"; my $original_makefile = "$makefile.original"; if( &{$system_wrapper_sub} ( $info_marker, "\\cp -p $makefile $original_makefile" ) != 0 ) { warn "$error_marker could not back up Makefile\n"; return 1; } open(my $rfh, $makefile) or do{ warn "$error_marker cannot open '$makefile' file for reading\n"; return 1; }; my @buffer = <$rfh>; close($rfh); ######################### foreach my $line(@buffer) ######################### { $line =~ s|(/install\s+)|$1 -D |; } # foreach my $line(@buffer) open(my $wfh, '>', $makefile) or do{ warn "$error_marker could not open '$makefile' foe writing\n"; return 1; }; print $wfh @buffer; close($wfh); 0; # the returned value } # sub # pre_make_sub } }, # do # libjpeg zlib => do{ $zlib_hash_ref = { base_urls => \@_sf_zlib_mirrors, major_ver => '1', minor_ver => '2', micro_ver => '3', configure_args => '--shared' } }, # do # zlib freetype => do{ $freetype_hash_ref = { base_urls => \@_sf_freetype_mirrors, major_ver => '2', minor_ver => '2', micro_ver => '1', depends_on => { targets => { zlib => $zlib_hash_ref } # targets } # depends_on } }, # do # freetype ... targets => { 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; #my $minor_ver = '10'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '20', #micro_ver => '1', depends_on => { targets => { libjpeg => $libjpeg_hash_ref, libtiff => $libtiff_hash_ref, atk => do{ my $major_ver = '1'; my $minor_ver = '12'; $atk_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'atk', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', depends_on => { targets => { glib => do{ my $major_ver = '2'; my $minor_ver = '12'; $glib_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'glib', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '2', }; } # do # glib } # targets } # depends_on } }, # do # atk cairo => do{ $cairo_hash_ref = { base_urls => ["http://cairographics.org/releases"], major_ver => '1', minor_ver => '2', micro_ver => '2', depends_on => { targets => { libpng => $libpng_hash_ref, freetype => $freetype_hash_ref, } # targets } # depends_on } }, # do # cairo pango => do{ my $major_ver = '1'; my $minor_ver = '14'; $pango_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'pango', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '0', depends_on => { targets => { glib => $glib_hash_ref, cairo => $cairo_hash_ref } } # depends_on } # pango } # do # pango } # targets } # depends_on } # 'gtk+' }, # do # 'gtk+' } # targets The answer I am giving you is for latest gtk+ versions - if you want earlier ones the answer may be different and I do not have it. If you want to build things manually, you have to start from the most right-indented ones. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Thu Aug 24 22:21:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4A7EC3B00EF for ; Thu, 24 Aug 2006 22:21:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27500-07 for ; Thu, 24 Aug 2006 22:21:31 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id 7A1E03B0142 for ; Thu, 24 Aug 2006 22:21:31 -0400 (EDT) Received: from win98 ([72.64.23.126]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4J00HI57VGPN13@vms040.mailsrvcs.net> for gtk-list@gnome.org; Thu, 24 Aug 2006 21:21:16 -0500 (CDT) Date: Thu, 24 Aug 2006 22:19:37 -0400 From: "Bill Cunningham" Subject: pango error To: Message-id: <001301c6c7ec$eaadb620$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.642 tagged_above=-999 required=2 tests=[AWL=-0.266, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.642 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 02:21:33 -0000 Ok I have now compiled and installed expat, freetype and fontconfig. Now when I try to compile pango I get something like make[2]*** cannot find panglox.lo(or .la) one of the two. Bill From sergstesh@yahoo.com Thu Aug 24 22:50:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DE573B0084 for ; Thu, 24 Aug 2006 22:50:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28312-05 for ; Thu, 24 Aug 2006 22:50:12 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 4C9643B000B for ; Thu, 24 Aug 2006 22:50:12 -0400 (EDT) Received: (qmail 49646 invoked by uid 60001); 25 Aug 2006 02:50:11 -0000 Message-ID: <20060825025011.49644.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35208.mail.mud.yahoo.com via HTTP; Thu, 24 Aug 2006 19:50:11 PDT Date: Thu, 24 Aug 2006 19:50:11 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001301c6c7ec$eaadb620$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.52 tagged_above=-999 required=2 tests=[AWL=-1.353, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.52 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 02:50:13 -0000 --- Bill Cunningham wrote: > Ok I have now compiled and installed expat, freetype and fontconfig. Now > when I try to compile pango I get something like > > make[2]*** cannot find panglox.lo(or .la) one of the two. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And how did 'configure' for pango run ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Fri Aug 25 09:48:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F8793B00E2 for ; Fri, 25 Aug 2006 09:48:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25085-07 for ; Fri, 25 Aug 2006 09:48:07 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id CE6363B010A for ; Fri, 25 Aug 2006 09:48:06 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k7PDm5Yo024155 for ; Fri, 25 Aug 2006 09:48:06 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k7PDm5T2010149 for ; Fri, 25 Aug 2006 09:48:05 -0400 (EDT) Date: Fri, 25 Aug 2006 09:48:05 -0400 (EDT) From: Yan Gu To: gtk-list@gnome.org Subject: atsui backend for cairo Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.355 tagged_above=-999 required=2 tests=[AWL=-0.692, BAYES_20=-0.74, TW_GT=0.077] X-Spam-Score: -1.355 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 13:48:08 -0000 Hi, I found that I need to have atsui backend for cairo for pango for gtk to be installed. Can someone tell me where to download the atsui backend package? thanks Yan -Yan Gu (gygy@cc.gatech.edu) From sergstesh@yahoo.com Fri Aug 25 10:15:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 43F1D3B00B6 for ; Fri, 25 Aug 2006 10:15:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26551-04 for ; Fri, 25 Aug 2006 10:15:39 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 68A5B3B013B for ; Fri, 25 Aug 2006 10:15:38 -0400 (EDT) Received: (qmail 8074 invoked by uid 60001); 25 Aug 2006 14:15:38 -0000 Message-ID: <20060825141538.8072.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35210.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:15:37 PDT Date: Fri, 25 Aug 2006 07:15:37 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Yan Gu , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.512 tagged_above=-999 required=2 tests=[AWL=-1.345, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.512 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:15:40 -0000 --- Yan Gu wrote: > Hi, > > I found that I need to have atsui backend for cairo for pango for gtk to > be installed. Can someone tell me where to download the atsui backend > package? > > thanks > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Web search shows that it's an Apple ('a' in atsui stands for Apple) package, so why do you expect it to be free ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Fri Aug 25 10:24:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BCCBC3B0085 for ; Fri, 25 Aug 2006 10:24:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26886-07 for ; Fri, 25 Aug 2006 10:24:01 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 997C53B0002 for ; Fri, 25 Aug 2006 10:24:00 -0400 (EDT) Received: (qmail 83711 invoked by uid 60001); 25 Aug 2006 14:24:00 -0000 Message-ID: <20060825142400.83709.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:24:00 PDT Date: Fri, 25 Aug 2006 07:24:00 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Yan Gu , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.505 tagged_above=-999 required=2 tests=[AWL=-1.338, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.505 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:24:03 -0000 --- Yan Gu wrote: > Hi, > > I found that I need to have atsui backend for cairo for pango for gtk to > be installed. Can someone tell me where to download the atsui backend > package? > > thanks > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > As a second thought, after doing 'grep -ri atsui /mnt/removable4/sergei/build_work' - you miht simply need to specify --enable-atsui=yes on 'configure' command line. http://www.gtk.org/ claims: " 22 Nov 2005 Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders Carlsson. The source code for the ATSUI ". --Sergei. mi Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Fri Aug 25 10:25:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B2EC43B019D for ; Fri, 25 Aug 2006 10:25:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27148-04 for ; Fri, 25 Aug 2006 10:25:56 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id E05223B01B1 for ; Fri, 25 Aug 2006 10:25:55 -0400 (EDT) Received: (qmail 84430 invoked by uid 60001); 25 Aug 2006 14:25:55 -0000 Message-ID: <20060825142555.84428.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:25:55 PDT Date: Fri, 25 Aug 2006 07:25:55 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Sergei Steshenko , Yan Gu , gtk-list@gnome.org In-Reply-To: <20060825142400.83709.qmail@web35213.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.498 tagged_above=-999 required=2 tests=[AWL=-1.331, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.498 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:25:56 -0000 --- Sergei Steshenko wrote: > > > --- Yan Gu wrote: > > > Hi, > > > > I found that I need to have atsui backend for cairo for pango for gtk to > > be installed. Can someone tell me where to download the atsui backend > > package? > > > > thanks > > > > Yan > > > > > > -Yan Gu (gygy@cc.gatech.edu) > > > > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > As a second thought, after doing 'grep -ri atsui /mnt/removable4/sergei/build_work' > - you miht simply need to specify > > --enable-atsui=yes > > on 'configure' command line. > > http://www.gtk.org/ claims: > > " > 22 Nov 2005 > Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders > Carlsson. The source code for the ATSUI > ". > > --Sergei. > mi > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Sorry - copy paste error. http://www.gtk.org/ claims: " 22 Nov 2005 Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders Carlsson. The source code for the ATSUI Pango backend and the Quartz GDK backend is now available in the upstream GTK+ and Pango CVS trees. ". --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From jkoshi@yahoo.com Fri Aug 25 11:14:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EE54C3B016C for ; Fri, 25 Aug 2006 11:13:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29292-07 for ; Fri, 25 Aug 2006 11:13:59 -0400 (EDT) Received: from web50708.mail.yahoo.com (web50708.mail.yahoo.com [206.190.38.106]) by menubar.gnome.org (Postfix) with SMTP id ED9EF3B00AF for ; Fri, 25 Aug 2006 11:13:58 -0400 (EDT) Received: (qmail 89617 invoked by uid 60001); 25 Aug 2006 15:13:57 -0000 Message-ID: <20060825151357.89615.qmail@web50708.mail.yahoo.com> Received: from [24.5.217.205] by web50708.mail.yahoo.com via HTTP; Fri, 25 Aug 2006 08:13:57 PDT Date: Fri, 25 Aug 2006 08:13:57 -0700 (PDT) From: John Koshi Subject: Re: Question on gtk library dependencies To: mekstran@scl.ameslab.gov, sergstesh@yahoo.com MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.044 tagged_above=-999 required=2 tests=[AWL=-0.355, BAYES_05=-1.11, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 2.044 X-Spam-Level: ** X-Spam-Flag: YES Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 15:14:00 -0000 Hello, Thanks for your feedback on the question below. FYI, I was able to get past the problem (in this case), by doing an "ipkg -nodeps install" of the package. regards, John ================================================================== Hello, Sorry about the long-winded explanation below, but it gives a clear picture about a concern I have. I was building a simple gtk application for ipaq h6300 under Familiar 0.8.4 , and had to do the following: 1) Install gtk+-dev_2.6.7-r1_arm.ipk 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk 3) Install pango-dev_1.8.1-r2_arm.ipk 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk I had to fix some of the sym links, provide the linker with the library path, and then the build worked and tested OK. I later tried to install the "Roadmap" application, from http://sourceforge.net/projects/roadmap/ (the package is roadmap_1.0.12_arm.ipk). For it's dependencies, I had to install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. The remaining dependency for Roadmap to install correctly is libgtk2.0-0. Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 is already present. Will there be a conflict if I now get the package libgtk2.0-0 from Familiar? My concern is that libgtk2.0-0 and it's several dependencies (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all appear to be earlier versions than what I now have installed on my ipaq, and I may end with a mess if I do install it. Thanks in advance for your help. regards, John ================================================================== From bounces@nabble.com Sat Aug 26 08:55:44 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 283093B006D for ; Sat, 26 Aug 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16532-09 for ; Sat, 26 Aug 2006 08:55:43 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0F58C3B0141 for ; Sat, 26 Aug 2006 08:55:43 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GGxhO-0000J9-S6 for gtk-list@gnome.org; Sat, 26 Aug 2006 05:55:42 -0700 Message-ID: <5996953.post@talk.nabble.com> Date: Sat, 26 Aug 2006 04:31:48 -0700 (PDT) From: Tintin72 To: gtk-list@gnome.org Subject: GTK window and DLL ? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.497 tagged_above=-999 required=2 tests=[AWL=1.104, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.497 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 12:55:44 -0000 Hi all, I'd like to associate a GTK window with a dll under Windows XP. What I want to do is that the GTK window retrieves the messages emited from the dll. I wrote (just for testing) a dll wich start a timer and send a message to the host window (my GTK window in this case) each second . I know I have to use the gdk_window_add_filter function, but I don 't know how to translate my GTK window to a Windows handle (HWND) and get an ID in order to receive the messages from the dll. I found a macro in the gdkwin32.h file that would be able to do the job: /* Translate from drawable to Windows handle */ 064 HGDIOBJ gdk_win32_drawable_get_handle (GdkDrawable *drawable); but it doesn't work. Here is some parts of my code: in the main function: HWND hWnd; hWnd = (HWND)gdk_win32_drawable_get_handle(myApp.pWin->window); gdk_window_add_filter(myApp.pWin->window, msgFunc, &myApp); timer(hWnd); //start the timer and my filter function: GdkFilterReturn msgFunc (GdkXEvent *xevent,GdkEvent *event, gpointer userData) { APPLICATION *pApp = (APPLICATION*)userData; MSG *WndMsg = (MSG*) xevent; if(WndMsg->message == DLL_MSG) { addText(pApp->pDrawArea, "DLL Message!", userData); //Display text each time a message is sent } return GDK_FILTER_CONTINUE; } it seems that the GTK window doesn't receive any messages from the dll. Can somebody help me ? Thanks for advance -- View this message in context: http://www.nabble.com/GTK-window-and-DLL---tf2168964.html#a5996953 Sent from the Gtk+ - General forum at Nabble.com. From billcu1@verizon.net Sat Aug 26 17:48:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E6D043B0078 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05149-06 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 243B53B0071 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00A7IKK5X505@vms046.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 16:48:06 -0500 (CDT) Date: Sat, 26 Aug 2006 17:46:24 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.756 tagged_above=-999 required=2 tests=[AWL=-0.152, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.756 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:48:30 -0000 I have tried to mail an error log several times and it doesn't make it through moderation. The error I come up with is freetypefc.lo or something ending in fc.lo I have freetype2 installed and it's fine. Cairo pango and fontconfig is giving me a rough time now. Bill From sergstesh@yahoo.com Sat Aug 26 17:56:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6BF3F3B00A8 for ; Sat, 26 Aug 2006 17:56:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05696-05 for ; Sat, 26 Aug 2006 17:56:48 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 5910C3B00A6 for ; Sat, 26 Aug 2006 17:56:48 -0400 (EDT) Received: (qmail 33076 invoked by uid 60001); 26 Aug 2006 21:56:47 -0000 Message-ID: <20060826215647.33074.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35203.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 14:56:47 PDT Date: Sat, 26 Aug 2006 14:56:47 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.49 tagged_above=-999 required=2 tests=[AWL=-1.323, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.49 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:56:49 -0000 --- Bill Cunningham wrote: > I have tried to mail an error log several times and it doesn't make it > through moderation. > > The error I come up with is > freetypefc.lo or something ending in fc.lo I have freetype2 installed and > it's fine. Cairo pango and fontconfig is giving me a rough time now. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Did you try to gzip the log file ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Sat Aug 26 18:05:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3DC113B00F2 for ; Sat, 26 Aug 2006 18:05:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05924-08 for ; Sat, 26 Aug 2006 18:05:47 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 081D23B007A for ; Sat, 26 Aug 2006 18:05:47 -0400 (EDT) Received: (qmail 57200 invoked by uid 60001); 26 Aug 2006 22:05:46 -0000 Message-ID: <20060826220546.57198.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 15:05:46 PDT Date: Sat, 26 Aug 2006 15:05:46 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.483 tagged_above=-999 required=2 tests=[AWL=-1.316, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.483 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:05:48 -0000 --- Bill Cunningham wrote: > I have tried to mail an error log several times and it doesn't make it > through moderation. > > The error I come up with is > freetypefc.lo or something ending in fc.lo I have freetype2 installed and > it's fine. Cairo pango and fontconfig is giving me a rough time now. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And you might also have a look at this report: https://bugs.freedesktop.org/show_bug.cgi?id=7862 --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 18:11:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A81873B00D8 for ; Sat, 26 Aug 2006 18:11:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06320-04 for ; Sat, 26 Aug 2006 18:11:33 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id BEEE03B007A for ; Sat, 26 Aug 2006 18:11:32 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00EOFLMC47DD@vms044.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:11:03 -0500 (CDT) Date: Sat, 26 Aug 2006 18:09:18 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Sergei Steshenko" , Message-id: <000e01c6c95c$48e550c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060826215647.33074.qmail@web35203.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.775 tagged_above=-999 required=2 tests=[AWL=-0.133, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.775 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:11:33 -0000 > Did you try to gzip the log file ? > > --Sergei. You know I never thought of that. I hope it compresses good enough. Bill From billcu1@verizon.net Sat Aug 26 18:21:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E8D513B0071 for ; Sat, 26 Aug 2006 18:21:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06484-03 for ; Sat, 26 Aug 2006 18:21:00 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id E705C3B007A for ; Sat, 26 Aug 2006 18:20:59 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M000YHM2UXS19@vms048.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:20:55 -0500 (CDT) Date: Sat, 26 Aug 2006 18:19:11 -0400 From: "Bill Cunningham" Subject: error log To: Message-id: <000a01c6c95d$a9844fc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C93C.21449000" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.79 tagged_above=-999 required=2 tests=[AWL=-0.118, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.79 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:21:01 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C93C.21449000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok I'll try this gzip'd now. THanks Bill ------=_NextPart_000_0007_01C6C93C.21449000 Content-Type: application/x-gzip; name="config.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="config.log.gz" H4sICPvH8EQAA2NvbmZpZy5sb2cA7D1rd9s2sp+rX4FNejZ2Ekl8P9zHHsePxKeJ7WMraXvXvSpN QRI3FKlLUn70dv/7nQEfAkhQkuXsPbutfTZdETMYDgaDmQEwAAfTICXjIKTEj6PMC6KUeNE9mdE0 9SY0JfMkHi18OiLX94AxmwNmkpLbKfx/J1lEURBNsOY4mCwS+ppkMfGCERnR68VkgrBgvASTmfcZ SHpkFqQZ/Ox1OicZufVS4ifUy8qXVMTgLf4U4Z0JjWhSYrw9/Uj2F1mMmETrmW6PkJPoJva9LIgj 5HLmRSMSBhFllTuEfE16/SUb3e5tkE279G7uZd0g8sPFiKbf9Rdp0g+BStgvykTEMLjmceAR4KMg 9a5DCniRrnU6z59DWfFHnj/H5/PQy8ZxMusVzwK8M43TLPJmlHxHGFl87rFfo3gGvdFZMGh3BgiB 5VjlcwLPWk/rqVZX08rCFArfB9Hiriy4gYLnKhksKAhsQjSNqNae4e4pFjk6HBBNUZROh7XpOoj6 RaU5VFpEn6P4Nurw5T8R/FvCcqCXQBcJfwWjFVmG0f1cQSvaiACdckPv+hOapfdpEI1jDgFlwYrq 9AXuZp4/xZ6WIpQ8xGlIb2gop7CIghtQaiqj0DnfH7zbI1y/p1CFL+Wf6zB5jby0pdoK6kVj+Mef VPXC4guTOM7Ys6iLlTYexKD/GU2ztKGPhUZWw2RPNUFViD+l/mccyaDEMHTfXB520Q7AWAO9J2Av Mi8M+VqWYuyRhKaLMFsy3S8QSdcXcFWTe8PtlGZTmpDrRRCOCI1ugiSOZjTKCNio1IuoUNV0lq+5 p6kAc9Ua4xPv9jOPYSv2HgAWYCcYew24ai+pN4CaLeEajRtJQZHJ1zsf9n842hWqGHYrt66qSsiB JaUR2haCdgAtM0266Zz6wTjwyTxO0NilJB6TD/BitOAiUU1ZvjCKBZBb79aJz/eKpmCvFMIp+6+O opmcfESYZtXpH1Sug+BIA8YFfFtjNEAVCyj5tj+iN/1oAQrz/V/NDgJ33h4c7BK9Z/SszkE8v0+C yTQjO1AGZswixwml5DIeZ7ceaPgxMs/cwWtwDX6vM0A3h54O0dIC7RvoLhgNUyxZJD5lvPpAu3Bq o4DJGNzLAHqEYv3Tsw7UTLwou/8GxJoRMCsRq/fh6OLg3f7pYP/NyfuTwc8Eio5PBqdHl5fk+OyC 7JPz/YvBycHH9/sX5PzjxfnZ5VGvI4oBRPr138D4KGKxXUjnpi6WC+qNkFXUCmxaPFv2V6+HHgq7 rY/muDv3wYGBa+hOokWfSbHPqoEsi1eNCDq7vZqnnCegW3ff9eN5hrRBkOCqR2QWj2i4B2qYBnes e8qeyzuI599RpM1yyk7/JOntPfJr99MLAi9FmrNFmpGpd0OJl0wWaBBESqXcVL5YV5x2LRzRsQeq S+JFNl9kefyDXk4ggMMSOYQ/LEar2YMnZFFAM2Tt0y1u/Hk9eJEIldk91ESOyds4+ZwKtWwVu6dJ zZazgFZQbnMA5kgYuEUJQySYxGla8AFgvp6htJkVAOk1gaeLMegOmih6R/1FhtYsFauYhRLElYjX iNvAbm221dD1JV8ioG6MllzF1/+gft77IlvYd4wtX2SmzoulS3lxONsoishx26W+SLEQdQAD3KUe 8ARMVd+IM1N1ZZyZGgw6JuTub+Srr74iv/+eP/4Fg8eKHE3El2pSw2RqTkmMqyu019RVaU3DaFVM 01QkIsIme75P5+Bdu4JCmrZaSaQ7WSkTNKQSZtA+PVwmjrTrTcdaKxNH2jUWP7BqMrFUu+mwS+OI My4mGbJ/enlCDoSKTuE7Cul0z7RVErJcaaMs19pCQpYrbaetaOskZCtSfbM1nTc9EPJHlI7oSMAx BG1oa2/+uAecANNxskfSe4iw7vInck3HGCU/m9FnIm1b4mfI2INBOsJ58iTxZjjh3Ov8Tp4H4wic DBkO/Xm4SPEflAIz0xiiRHA0gEIhwBjzb3CcustKs3vwTGCqyhnpIs3nwBhs8lVdmNhVwgH7IcBw uFVkR3QOL6aRf7+kLgZwuqLZQnCnC0CzrowbTArAl2qbTgp0VdMlJiCMUGPqPhGQWwNrXVP5huez CphmZnRGsvs5FVB1jr9GwCRgGryBwjlqK03T2JSmpTVkih2dTb2MjGKaslAzSxaR72W0iFp4Ajrf /Uy0qTAwAKHuBukkoXMBRXO5Xgcg6R4JcMOskQBxlvpY0yBD2t2hwJKh8dOeYMxcH4jnM3T2Dldn F+NudIm16rrV2vGGUZ//cfQ4w5nQMIZgtiUOADLcFLObCKDGKKiNgWgmoLuuRB7RjHTf8GimEEJN 49ucST+eREFKq6GbgZiuEy8JRHYtmxsKcy9Nh+IgNFRdk5BfREXgCaE+WDGfpmmcCNWscgZyxFtT AcWWeQ5Dq+K7Zs3CBkOQjXGE5w/RpN8FMJKirAfTkNMYIjV/msfmIN9RAILI4uReeIGqbm6T+y8Z D2CW094UJnUv+1CIhhhKcAXpfP/gh/23R8PT/Q9H5NkzCWSwf9EO/HR0cXlydioHXg4uTk7fymFv Pr69ODo/uxhIweTZOI6yvHE8uHodLgPqz/L2gXpI2vi89B7f1sX8vSBMUxHMvjj+DQ1nGavVQD7X M3RV+9eqga46T2rwpdRAbzijPLAkU5j4g22um0lDL6PMTYJMmI9JTYW+TZAJtWRBpmGsDTINQxpk GoarNmekZaNWzEuhomwODsVWuaKCFUWQlHdTbZ0cGabeCBDv0z7GHdDNAqJpPKBLTEs6bE2c3j64 S0zLkhNz13WJieuAkpqO/kCBQFCZPcmjnEGMIFh4kkYpjQR+Pkkjl8aMzsCRPkmD140nQ1qII4iy J8ciGtIgenIrhTQWMCHNRn9OaVgKv5YyCsd+1JuSRepdB2GQCRMTS9toPbLClq1QG5a+xQo11JLG 2Za+boUaUKSBqWW47SIxdYlI5oBNI58KmJa+bhZpWfL3O+3vtzWjpqAFDwKS3rofZtgYp4tL7K9e 8QgOzmHre+I1FI1b9KrDGiPo4NWrVbvihsOWsgGpfVccgH/0XXEQg3Re5RhWIZ3/yF1x4F+q445Z dnpzV/zVqwfsigOlUm6qWCxLXZHvQHIKKpBwSh7FPciGOXMcqTlz3G3MmSNfNnDctebMkc+zXX6J umYNXFW2O45tlm5CGi5azEIk4iZkQyiuIV13cA1nC6G4pmx/FYqNdUJxTWnfuFZrUpWpqArfyJov qzcU0GUuGYrdhzfUVDSZlzZZFtLKhgKKLF/AVFissr4xxfMe2EsyXkQ+G3m/QiDIsrJ2dl/sCWia VW0p/krvguwFy25FiziifuihOQlwuR3z2cCkUoGlKiB6WsSsIJeDw4Phu6P9Q8AAuSwB7/Y/ASc/ Xw4HP58fXQ7fyYGXg/2BFDY4fH/yRg7BxskgH44+nF383F5HysTJ6aCdwcEhgGWQj6cnAJRBDt8f H5wWgNaFXvgfaCj8F3WU7OzCr/+Ff6iQZMfQdr9hW9H5fxOaLZKIKPj0zz/9cG8MRZHKNnMTqCWX zNq5ialI5yam4trr9vOF4NNUHaV1P9/UlFWbgiCylm1BU8MJBpOpEMn7Io7M95qarbZXrWyp+Ygt IVOzH5Ct8WRNn6zp82DcTNihdxkF6/js4Bm5iYMRLgLt7eV2FCzsLoyRBAbMzu43Rexcwb9ZJvg8 ekfOFLI78mEjgA1l7UDUDakR0m3nXz0QdUc2EXkaiE8D8T9vIBp24+SEbfMIpsLNn4T0aEnd8SPq 3oXj7d+bZFvXnU8ewzX8yx5TPdS1rSt7j2LcVR7TVY+oDQJ/RG069x9Tfeyaj+rrR8ls+1cHY397 iT2iLvbV9lw/qskTFHfiRRsSMIUUWyRwnNcntr1qVTqv2L4kza2S7i2x9qozubgSwhbRRZplbKJq 4hDFsEOywiu+5WYd+eoQQp28ztrSWGkVyX9aS76NeyHteuVSq0T4AiWTycHnQrRjCaf+Ok4tQ8pp SyyW/5WF7DAyn9cOfB8MhxWeJLOdRW75H61xwm/l1DTTlZ2Mkq+7mhae4izm9JVoxluIxlL1R4um rbGWbrc11rL4mTxqw8y7C2aLGQlpNMmmOJcXjrOXK/3CwqzN567rmm05AtTgh3pJDeb4cw/PPIvJ yNWBONw1YYdMWGo0T8/Rtc23NAFbttwNxW49D5pbAyFXv7P0925EupS8SPv/3Xv5d/LVL1c7f99/ c3D49uTicvDjL/zvl1e7iID/Xl7tXO0C5nC/+19e97dfyh9K10W0r/tXKrnSrnRypffnL8jV98sX CznbpmNIV18c19gsQ5D9TLMZtKcuFFe2+G66On9u7LMIqht86BiYbgk4/HGDXhhc80piKYI1YgFR IsBxyau2v1nDsLntUxGkNrZfwZoBBwKO0XyBBMvkXtIEa0r9RZi1MxdQtOZ7mkj8VnADarj8kAnY +RiCSYWBDzGoNyGNYyiWqbaeRrBg8i0ht5jjGW6waOMo7iZZFuS/6B0aOtxgFUiYZmPQtVZsDEcf GnvrJXhXx55oT4qtxGcVrWe4nXvjhTDFKjap+2fX/8BlwGswC7ntTIRDZsCbbI3PMq02s2eZTj3D WDzPVtw5Qs5PhBfZJuc1uuM6VLClhZQBJ+8xht7sNhtPXDXkiqjdQ/xvq2GzbFdmHSyn/Rif5Wgr 9YBZFFxKERaBLceQsBijoa6yirVevIJTx5RzarWmU1iO1Amjf0JGpGd0qnakU7bNJTuhYttG656r bVuyPdduCCKaxotwRK4poXfzMPCDLLzPmcDdNIGGrW/umwBbtiZm2255+rdoCueYMBjt/hi+7qZx fikK/F46Ac4haFffX/1VRUfGTlKxdoCvWQaaOYL4XtkOt+0oZss4sh1VyLq5B5aCqnt8YN7zM5oE KdgtXtTgk7nkJojj+uzSGBKOemks4vFDqtgaALIjPx7RoofvIY7IpiluOMVlRCS+zOFP1s1mdBR4 GRUwhNybsueZVZ5jSaVKaJvmcZriASuegKG0Jva4Wn3QAbUsjsONFBZqt5p1gMkOc4MUioOGq8g6 rYcWXc2VHYBeks3dkJys23p0wNXxZDK7ZqkQKQqBR3D1+pSQP94nbCipisKbOfn5PkRyRdE/6IAf 1NdamwNAu9VEgbPa2kSpituuTABU3QfsIwK+dCNTVRUhwaRIN1vrAVWYnCjtLhDBTs3DANU1PhBq uc1GyZ1go4GqrsiMFpSr7VJUdd1ssrnOEUI1U8LnKk8oYVd6YwOUO61uW4XAVWafHq9qqqG3K7hq KuY2xl2FENncxLojovto8w5UbGO1fQcUR+baNzfwQMFtTcdVXXa88GHXMYGxa41EVNfQlNroxJ0t 3A0oTmSznYuUHJ5ciPWMByRAA7opyzLA8i3SDLCaLJzB8nWJBoBjSe2Ua9gr5G449ZzZUmf8/CpB LI4xOyEQOWWTpS0O2UFNuT11zWVmyENEZkqzRaAcp4d1kdUwZGmpqmsp9UsqEvo/C9AewbW5tl4/ Pr76jKXqOu3Zz6rLbn9YkvOjLGzJSAdcrTmfWKGkbktDXWzBwyXuGnKddw19rZK60j1sKDdbgzQA WopENJLMdEC1lTWp6YjTwoPbyoOmKHr9OoKCjxpW+4V2rqvUFUZysA8VYYVZk9FoHId7MA3JSZCV NKChZj3S9KJC/7uIFyezItVcGHSaomrK5qqL6LK+wvItctKgmi6zPVi+LisNcaS3Vilq+5kKvIWv scEUjIY1kTgPmPEiuvRSHkV1t7kYCqpJb+qB8rVXQymaIr0bStFWqY6m1z3zzRxUOBuLWNWB9E39 S/68h6ts3EJZNA4Dn82X2Ek49j6cheGlscts4BcFCy9EHuR3KUH5NpcpKZr8NiVFl510r2HI+0hX W+egAGws6A5H8TyJaqSdhxyW72ezed/3rbPJx/duL66lVOMmyou9Tn+ZSdNlWTN9rnswHXIR5dHX CHgf0wSNOIatvxb8vWi8Zqc38jLvlXKn7G5Q24/DkPoZvCgcFbmxgKzmubM4917UBOU8pRk+ZTf9 e2Q3ie88uThq8Lm6Y4DJwfsvJfh2aXw6hzqD49Up7AA4zOsUQ5PdcxfBPDSK/UW8wE2KJPCi7DUe qPC9lJJvw2AWZEDj+/KwRVpW7uV7s8eY33HnzeYhfU3enXc//kRUNZBWnNAsC2Y0Ho+8+ypJbCRy VPEyLI0jG83A+mV+IVgRzAPnZc1hmi2uYWqKN2wS3IWZwvxovAjDezKmt2gvspj5mtfFbnJ+Bbrv RZU7YufR2AJAxQgqxjUN49uineScWTe+YcDDt16a0gRT2nDJZThkyjDEKXdhE18TUC6fFjS4yiwb Ls0P9YGtxtOCYAqjUbGhnN8Jz9uzUsfzV2BJdYHdkixT3TClIrhispZH8HyR5x3UJH12A54ygIp4 aT24Ig1XKmAseeFSmEx12LgCMbLTOcu0v5WDsTg3wacP/siu4MvFf019Dx/YaSB27nLmZf6UrQwV xyrY6+Mx8RhvuWRZBAFKy7bhpyBSEEe1sc9xfct2PdIsCEPizedhpYf1vs85G1QXh5az8HKZgh03 YrOOwtumhVqBfQlwMOQZBXm3o6zCW+8+ZT4sV7aj0zOwy/D6y3hGOSqYyOL52cJD/cX9kFFBJAU8 eCuzVF7CIihGCNStaDXMjZMZdBLbRQlwLMBrAy/leqZUS7KTD5tylO1iyNSAVVAmIC4VJdcwJrOd l+NdEBg46wJZNJ8yZfhnTQ1l52qKvh6TvwiE152w0RSDXyQVL9NVmvfWgkmii2AkYrnbraRoiqnI ZzNs2fHh8akpv5ZXMdXVKymIIVtggPL2rZcW6TwJp004uGr8JBqpaGZ0Notv6COlU84f3W3mjwUL L/7ock5p9mXEjEt6W4kZOPiDS/kzBp7zp7EulU6aJf40+UI6qG2jgzkHf2wdhDZ+QTHrW4r5TyHn TEjheBrqQjgYzx/rbv7YwhmGsfhtjz+thMzGhhQucaCF6eZoIjbmQXMJxtXnvPorazlcmsQD6lmN XITjwfAtzYbHQZJmw4OpJ4rOstv3PronzW/cVS+Xg2v93n1f/wIeJkN2E0wSYb/r4LAkDz9/a6iN Jf+KBpRvtUlitexuWe66TRKrZSOLfSasTW1au+aU3j31zL9lz7w5PB6eJ/GcJkJWxFPn/D92jt34 mg10zpsgm3nz4WXwG+3dD+dzOhPrGI1DR1v1CtcpdaHahtzn2Ka6jVBtU+6IbNNeuzVuS6+f0RRH bc0Q0RRX+N4Z+2RpSw4Q4EoSKaQCWyEvtyW7wt0uu8Jtya5wN8iucFuyK1xjlbxMTSIvSWIQoFrc 9wvWyKlWsYUxp50xVWmczS2YE7H09u9FqZqQO4okfvrwfniOB/6SA/apXRG9ap8k7ls7kCTWLWQc 11UG3iMVh8quA3qwyqia/LN3Krv6Z5XdUlu+SahqbnvuiWq49VNLo9i/juPP2jSbCfMwlX1+Tb6w r9oqn4hfHlPtFbkFtS+yNj/geiF8c7moJvmWa/2zroPqO894Ix3ucUUj/oPLBaUv+dHlg7PT45O3 w+OT90eX+Vd1l4XlJrRQ+P7k9IcG5sHZhw/7p4eXeeHXdYmRTgdeL/92ckfA3LPZd09LyZdfTV2J tMx86G+G73dDL9oQOU38zRGXnPRGdLyOCd8DRd2c5SDNNkMGjd8csTj930sn1fCQI+P43JDZpRTw ntZNcefrMdMeYmxIsPtbdWC0RHXYFz1L1AI2rSGpGuYp5x/DDPK721imbzl8/q+2K/xtWzfi3/1X GHnF1A5N30vXvQwZ9EGx5cSrbRmW06abN8KxHdu1ZeVZcpq06P++O/JHiZKopMUwBDGpu+PxeDyK 5Ek82ce//nQz96l67YG/o1k35uVon87E7F7IE0Nu9ctjBlbIp661NPSD5/uCgC7fEnPELklNyMND HfFidy9aLZEsUrcIuZ9uD4sCrNPzLsIKpYJWqYdDO72G20pYiC1019c2UgW1Udvl0HBbCQtxla5z elqmY1CVzlp/p6b2XttKrsEVesNSymVMVKUc35DtxQxMpVQ63S8XNeUKuGLJhwVNavrqlpRUMEaa hIE57GbCshs0zNUkyb0sNQTZXr+ML6+4yni8KVCSDA/5y8TKY2eHSj+eBWVhw8+ByzA8fbSAWfdl qHq+VAarxxoWaA04jbdlKF6iNcDq7Smhjt7oZGUh4EjvNoRchNoQ8u17G0J/88KGUx9LsWGSdD6z Qtd2gdWb+3YMv49fj7EKljzSMEntLWVcbYvUm/tFDI3L2skgH7S1JKSkG+Jc3NALtaE3quGoIjRY teWzG0TcpkJNlu4z3lGjDL4f6jqWL4o6mnAfL4X38b27nH7ZmDC6lbuO2tUVaNVdnlAyLGIBdemF 7aB1HgTv82ErEZxNhTdyp/squNVy+fOYVfj1tcsHayuIkTfodc9dhL+ooPmly6GrolYYyBmNekPH GiatswCjibpCKL8GSm1Wn/0sNJrvpctSe/lwnfop3iSSxZSGvMChL9cpnIDSXLkzhTzKoEpGDKTV QBbJdk32mt29mdqVQWtBSPPkc5TblCmJiqOgCLlnE/xGWjx3s+9iKhpeflFDlmuSLJq7zou+d9Ft iVa/7VQpeJ0qr13gaOpTnxAVfMDWPd4DroKzuCoIiwJJe+21XfOwdAHD1lCDHPQNC5fBchwTHfrE Vn/zFXDZ0VoxMxFLTdfgpCHW4TkoiMhji7AdGGQ08kkJ5cIKSnZmIPhOtNzGN9MtZaObeEsWQN3l GHF+Js7/NdQPsXdqhUlj0gS/jCim8znt3BOLZGdNqus/TWbdfPFrs/ltcjQ5mRy9br4krnfp/lXz t++vVUVGqX+R6P4Fif5vo3iWk3yOJm9NLpM/Td5qRk9LzK8r21TYfPNnquKN5I/XWfkl1cnJ36tc o+kDm77YLnauCh5FuDorco6oR4+cJ0ikMVXI6nr/qK77n+p/0wDIAsgEam2AcGQFbAZkB2wI2hKe Fs5iDVVJyRx0N3KPKouYkE2QUUx+yixMNnl+om2MRC+YB9lHbiDPN0QZiUXT0kqkmcjKTEPJLIXY Wx1L2HwGKlzYs5tStSv1Wr2g5fXoLvstvPR7ve/N6nGfaJ3IIw7HxxyDfDqT64DjkzenTsPrt/3h udd6H/a88NIl8RRIdLxe6LvOL/p6PLqiS74a05T847XR7oIKUQmZhpQmlF6NA3ZF/YzU8JOpwsrV 9ZPF1RJNMeDT6z9ZnKdmKI1WPg4vfZwGrUN4vcMZ0lI/aBNXmiP5ozVy2iSE3AC6jvL90jW1u92V spNtcZ00rX2XApBmCgsovedmvctbAK1sZK6wlqLruqqxVzYq/3Qx9MaX4qPrLGar2Gm0/Q6j2/IU ifYjMngoZXxDDEmqdq83DgIysvl2yzFOCBK00Ag+CSZbwO6pXI1Ow29dBroazosWt0PmBlTlDvmx hPJhKWOp5A+8854vqJZQW2IRqMyRrNO/9v1rxeOamiYydVtc7JqGFoJMUeNidxqd01Nm2GkJr90W nWAwDnFN6vKuemMNkwxkOArdf0TDuLY3JvHCadr0Dsvm29+bJ387O/nr2clp02+P5WekMlLuD8k9 6+rOyPf5rNSTbXnmsZzBpa61P/O41GkYy3RagfI1GYxUp+uc4JK250NvFPpCNqg7CMderydIFx4b Cq6/N4+j5u/v3uUEw1FwMfL6Jk2ODFu0MB/X4HjRbhbHaH7xElsWkaxeyedx1DPwxLBkpJHg/B86 q1Nl4S9eSia0GnmZxnfKF0Pm/epXhPch0oGgItud4jo2mZH5XY34jJjUSX4p+t3BVSi8C18jRv6H Lp/0c5138hoH/0R30KFBc3L27uw3p9H3uszqF+To3x8JHuj5mCgjsnHBNzjF7IdvcnyDW+9uqXP7 IVuN8D543Z4cc3l9ZUxWISmhfdWnQcwL9UN0JyFyaBLDYEQ3HfnQgiaA6Zt4T0Y3vUF6izRCukfK zyRl5l6XeET6VaU3U52i6M0C6RLpSqcxMmud7pDRqSZA5TcJ0gPqmOkUVcxWOo10BkVnYDUDi9kB 6T1StGIOjnNwnKNViy1SiLYAvwX4LaCWBfjegs8t2nb7GSnK3UKu28NWZzQEkizBYTlHuoAoS5RY QpQlqlyiKaupTr8gg7asIIvWu9bNCgxWqHkNBmut/zVEWIPReoNU46GENZSwBsPPYLTJUp2BJBsw 2qBJG3TbBk3bxDrVhKhpc9CpLoHGb9DmDdqyRY1b2PVWa3EL1lvIvAWDCFYawZQiiBpBggiiRhAx Ap8IyozAL4IAO1S8g+52KL9D+R3K70Afz5CiYTH4xmj5HcrfoZ496Pbgs4dmkqlO0ZBED4FkoVOw SjQFmpqgqYnGRzrVPKPPOrPTGYiX6Er+QArxE6g3Qf8kj0Ck4JlCqhT6TyEUb8r3eTbVWU0GWVPI mkKgFHKkuizkSzUDyJE+QrADGB7AUA/HA+zlXo/8e2jpPtYpWH5BS75oyi+geEBTHqd3yIDFIwi+ rsRsl2VXmywb5QTJMstq2b+qrqYbeSg+dgd/eZvPCBkkmwlwxt11zNVg5Vw8lzUP55vX6gi0CcEh fROEKVOBaHoJfVp8eOOAVqVnTgP+Pkc5/JxG6NMsLBf9lOf5kFZv0r9DjVLOP0d6/5xGxlfOkcrB Jv2QcguDKznfZ65ItQXIPZBqoa6us7WzBmB1qS6yWVMDynKb7kkt4TQS4pamR1qct1rGTq0I1zs2 E3p9XUNOCJMeq0jXyZaTDN2qr4CKeZzS1kDB/jjE6YKLkTKle/LFN34WK9TXPL+zjgknH5o6FQ83 MHCAO/pydndQxBoQE7JSiIbJPKYK72bqTAJqt2yqsEVhrBZLLtqdhiGqgXUauePcedpz7jSke9/W NMO17+DKaJi8LrVLwsxmQfsl2bM+4cVaBcfrt3z5S/JXVn3AHrPpk43Zek2aHv0wsAbP10TDiuEn JWUh73mw8PP3IpggBE4EwtNNd6ybeDs3Wyo1njVS907eDwyTMUAEB/hPOLaRdCzR+Hj9QH9OI6kx xkRao4ofaBN6FkeEzgzIRC1Saq35qJQFL7ll4KiRpRF5oeK6kU4bHfUAvoDmkcVsjzIqcx/alF5A E1XYkjaPylvSnLYcwqImnEYBLDd4ZWAe06IIHovz7rjvDUXY/acvPonh0O9biC7oTiyfEo+CoT8a f6oh6bBrUrQuvVENwYA2F1Y8If2rbtsCDoaVxiio6AWDCwvKwqYQyKSA4VetyrC+3+8HH3wLWIdQ KcNpoqpA34djvz8sg42wKXWhRX4QPmpdVrRoxnKpi0/yo/Aa/uOgV4GasWqeCHFTFxflh+B5tJQC WL5dwP6LUWvke2Oz06xhe54M+VMXf6g+htATcYmeiEpUE4bmGXA5zhDCMVjCNfwPYXSMVzRVrKff Gv8FI4oK+BqjAAA= ------=_NextPart_000_0007_01C6C93C.21449000-- From sergstesh@yahoo.com Sat Aug 26 18:38:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 697033B0071 for ; Sat, 26 Aug 2006 18:38:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06994-07 for ; Sat, 26 Aug 2006 18:38:06 -0400 (EDT) Received: from web35214.mail.mud.yahoo.com (web35214.mail.mud.yahoo.com [66.163.179.93]) by menubar.gnome.org (Postfix) with SMTP id 4E0A03B0126 for ; Sat, 26 Aug 2006 18:38:06 -0400 (EDT) Received: (qmail 80569 invoked by uid 60001); 26 Aug 2006 22:38:05 -0000 Message-ID: <20060826223805.80567.qmail@web35214.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35214.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 15:38:05 PDT Date: Sat, 26 Aug 2006 15:38:05 -0700 (PDT) From: Sergei Steshenko Subject: Re: error log To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c95d$a9844fc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.476 tagged_above=-999 required=2 tests=[AWL=-1.309, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.476 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:38:07 -0000 --- Bill Cunningham wrote: > Ok I'll try this gzip'd now. THanks > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > The log file you've attached is the one created by 'configure' itself, and it's not quite human-friendly. Please rerun ./configure 1>configure.log 2>&1 & and attach the configure.log file - it will contain screen output of 'configure'. The command line is given assuming you have 'sh' like shell which, I think, is the case. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 18:55:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E5103B0108 for ; Sat, 26 Aug 2006 18:55:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07500-10 for ; Sat, 26 Aug 2006 18:55:33 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 925C63B00C5 for ; Sat, 26 Aug 2006 18:55:33 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00B11NO8ER75@vms046.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:55:22 -0500 (CDT) Date: Sat, 26 Aug 2006 18:53:38 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C940.F0E88CE0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.802 tagged_above=-999 required=2 tests=[AWL=-0.106, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.802 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:55:34 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C940.F0E88CE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok Sergei I have follwed your directions with the & and background switches. Not knowing this stuff is what keeps me from using your tool more than anything else. Anyway the output doesn't really look any different to me. Bill ------=_NextPart_000_0007_01C6C940.F0E88CE0 Content-Type: application/x-gzip; name="cfg.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="cfg.log.gz" H4sICOjP8EQAA2NmZy5sb2cA1VhNj9s2EL3nVxBFDwkWsosEjZPesptsEDQJgqYFcjNoaiSxpkiV pHbt/PrOULItS6TWSXrpIViH82b4OJwvSlQgtlKXrDCWcXb9+XUmTN1wLzcKmNTOc6UWiwVbts4u N1Iv+zWWiUfioHxfga/Ask0rVc5A30lrdA3aM+mY4xrIwh7cSYO2K/n9lgT0d2qr5ltgDrxjPz/+ 8Or3N08mNg5Ib3BLTnxrLrXHf2Az14CQhRSsMdZLox0zBfuANgupwJEtbUZ0hAhshDhfv2HkEdSy LIeCt8oz0/qm9YxMMc3rcDy+wNUIuQqGFu6N3brkSe6BcQtMWONcr4PiGFnXFoXc0ZlgB6L1dPxg NwUzm79BdJQDziR3bx0tEu+3H/8acE+yRo8xLgQ0eFdZGb9qhJiG7oFuqwOzVx8/v2M33ek0OhIg h3zE3+/RxUhfaqHanMhBzjb7EB2kiRRPGjk0oHPQYn9SPN3qs3PTPxzsSrPMJS60SwS3dx5q5vdN 4Cqfv3ieNSLDO213WanbE74yzn8DvONPrvAV9yw34NCHnnnbasE99AEajkLHcGO/QmmhCX7Bvyx7 cy5F6gc/9+47OkQNDMkiRAny26I7Hg8wTyjvKXpUHg2HAXQQFhaU4fkkUjN7rjy6Nl2fEdQ1y66H jr3vTAtTaungGCMeeW8st7LbpOHOrfGmp5qt7nO4QVdZI8A5Y/uQmniuC2lWAc/RJccjTByAV72k e3aLKinHyPMpsc+RfVJoqWjEhTXUxu5nNVOcsLTOUvY5IhLCFn3v84gwV4XQiwrjjW+w2Pl9EoHu d5ja8VbSg+K15+oqXNfV1aUl7+rqgqKHoJmiFy1FPZGzUjQOMzQ7CTRcGwdauVrF2kIRX96pIoq2 PrbclAkz+M8nJOrZ09g6T1l6+UuCZ1yAlOICaERCUrz8NXWG1NZRBVmI6MbxZSIaNZMyXxIhy/VY Nhuht50OW63OAjWmPwrSIYSs1Xwn67ZmCnTpK4pSNFhznVNZp63Llua4UMWePV09f3FSPwAxehtu sbSe1+DjkGRN3fX/UNfD7LE99wFKchlOsMCyNkpfHgR81ATw9FQBUdL9mhay0N7Cj7OORUyosuJk WCheskQDPyDbhuZH9F6hTWa9l90v2JFTaaxMTJKDtoa5nLcC2Kd3YdbJCvwx2QjXOj5BfCkpbEAm dJmFSU/HeMukFW3TR1OuwijLz3ti1FymkEBlWuzcG8Dhs1FSSK/2nf0cu8TYI/keR2R5JCBwJy48 WOwIUrh+iFu+pymH5gU3UO2LI2rkwuTQ09tjvPnKUUMK3i0tr4MdWdeQS5x/prRDIDS0cjwizSgN Dto0RcRcjUBvjPoOHyGtfgD8do0uNKcaRheybC38hq8DQEx3EiL4iDfUa7qU7FC8iz0Mp59uvnz5 icwfwMlBr2tO/+GgdxaA2MJ+MAD7Vv5NiYXwixMLsd+RWD9+rv9TesxG2u1qFY+02Rf9Y8ERiB6b znTSAg2U/RsHH+4aWb1+90c0NA5nR2L0BYCWTSBrjw9MC/+0aHP0FEqM7AleQns1O64eELPjag96 cLZPO2c45KdRw7E7jcJBonNCRrdqbN1fsPNRgo3M13HJXYOkfBGVrXPTWB0dvUrw0Mr4SxFlKREl TOqNU5u7uOdRhhEYF23p+d2kXkaimj4GetGczBuVOhhWshnRWhkd/5hSWAB6iWVdEh7LtjKCq1CB Rohz9ds/12/Br2+ldX59U/E49R71EXYPg65f364/WUw3G0uIDnctfc2b9Wf5FRb7NdaReoLEYYJe vDPJdUDMJlcPisq+fHi//kTDqr2hLpp4TBqxMWb7tPK1OsRrpP0ulr3/qWe3hxbd/2+AO3x0TAIK LFmdbPkwVmSK6wuAzorLQKfdF1hj5zYOBeQyilh2Hgainy8D3YF12GYWrqxVEujhkj0Hp6UvxJfg mnmUW5D0AkPZV3qKJGD9ejUGdF93+y8KoTkd3l3u0b840AbUvBcAAA== ------=_NextPart_000_0007_01C6C940.F0E88CE0-- From sergstesh@yahoo.com Sat Aug 26 19:15:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 538D33B007A for ; Sat, 26 Aug 2006 19:15:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08423-05 for ; Sat, 26 Aug 2006 19:15:32 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 5DD2A3B00C5 for ; Sat, 26 Aug 2006 19:15:32 -0400 (EDT) Received: (qmail 85005 invoked by uid 60001); 26 Aug 2006 23:15:32 -0000 Message-ID: <20060826231532.85003.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35206.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:15:32 PDT Date: Sat, 26 Aug 2006 16:15:32 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.469 tagged_above=-999 required=2 tests=[AWL=-1.302, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.469 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:15:33 -0000 --- Bill Cunningham wrote: > Ok Sergei I have follwed your directions with the & and background > switches. Not knowing this stuff is what keeps me from using your tool more > than anything else. Anyway the output doesn't really look any different to > me. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > There ONE '&' which says to run in background - the last one. Why do you care ? Do not run in the backround if you do not want to - it doesn't matter. The first '&' is related to redirection of STDERR. Have you ever heard of STDOUT and STDERR redirection ? Do you understand what the '1>configure.log 2>&1' mean in the suggested ./configure 1>configure.log 2>&1 & command line ? Could you please stop slandering my tool - you appear not to understand the command line at all and it appears that your not understanding the command line is not tool-specific. You appear not to understand for both my tool and standard 'configure'. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Sat Aug 26 19:20:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09E723B00C5 for ; Sat, 26 Aug 2006 19:20:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08617-10 for ; Sat, 26 Aug 2006 19:20:39 -0400 (EDT) Received: from web35215.mail.mud.yahoo.com (web35215.mail.mud.yahoo.com [66.163.179.94]) by menubar.gnome.org (Postfix) with SMTP id BE0003B007A for ; Sat, 26 Aug 2006 19:20:38 -0400 (EDT) Received: (qmail 98431 invoked by uid 60001); 26 Aug 2006 23:20:38 -0000 Message-ID: <20060826232038.98429.qmail@web35215.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35215.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:20:38 PDT Date: Sat, 26 Aug 2006 16:20:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-226052351-1156634438=:98015" Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.462 tagged_above=-999 required=2 tests=[AWL=-1.295, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.462 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:20:42 -0000 --0-226052351-1156634438=:98015 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Id: Content-Disposition: inline --- Bill Cunningham wrote: > Ok Sergei I have follwed your directions with the & and background > switches. Not knowing this stuff is what keeps me from using your tool more > than anything else. Anyway the output doesn't really look any different to > me. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I do not see any error messages in the attached cfg.log file. I'm attaching it gunzipped. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --0-226052351-1156634438=:98015 Content-Type: text/x-log; name="cfg.log" Content-Description: 1955179066-cfg.log Content-Disposition: inline; filename="cfg.log" checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for egrep... grep -E checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for epcf90... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for gfortran... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc static flag works... yes checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes appending configuration tag "F77" to libtool checking whether make sets $(MAKE)... (cached) yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for unistd.h... (cached) yes checking for an ANSI C-conforming const... yes checking for pid_t... yes checking for vprintf... yes checking for _doprnt... no checking for geteuid... yes checking for getuid... yes checking for link... yes checking for memmove... yes checking for memset... yes checking for mkstemp... yes checking for strchr... yes checking for strrchr... yes checking for strtol... yes checking for getopt... yes checking for getopt_long... yes checking for freetype-config... /usr/local/bin/freetype-config checking for FT_Get_First_Char... yes checking for FT_Get_Next_Char... yes checking for FT_Get_BDF_Property... yes checking for FT_Bitmap_Size.y_ppem... yes checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking for XML_ParserCreate... yes checking for docbook2html... no configure: creating ./config.status config.status: creating Makefile config.status: creating fontconfig/Makefile config.status: creating fc-lang/Makefile config.status: creating src/Makefile config.status: creating src/fontconfig.def config.status: creating fc-cache/Makefile config.status: creating fc-list/Makefile config.status: creating doc/Makefile config.status: creating doc/version.sgml config.status: creating test/Makefile config.status: creating fontconfig.spec config.status: creating fontconfig.pc config.status: creating fonts.conf config.status: creating fontconfig-zip config.status: creating config.h config.status: executing depfiles commands --0-226052351-1156634438=:98015-- From billcu1@verizon.net Sat Aug 26 19:41:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 14F073B013C for ; Sat, 26 Aug 2006 19:41:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09382-03 for ; Sat, 26 Aug 2006 19:41:01 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 3F1493B012D for ; Sat, 26 Aug 2006 19:41:01 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00D88PSC4Q69@vms048.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 18:41:01 -0500 (CDT) Date: Sat, 26 Aug 2006 19:39:17 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c968$da2b7260$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C947.51DAE9C0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.513 tagged_above=-999 required=2 tests=[AWL=-0.395, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.513 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:41:02 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C947.51DAE9C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sergei, Thanks for your help. It's make that's giving some problems. It's probably something simple that I'm overlooking. Here's an attached makefile. Bill ------=_NextPart_000_0007_01C6C947.51DAE9C0 Content-Type: application/x-gzip; name="Makefile.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Makefile.gz" H4sICAna8EQAA01ha2VmaWxlAOw8aXfbSI6fw19Rrei1rcSSYseTdMvP/cJItK2JDq8oJ84czdBk SWJbItk8fCTOD9p/uUAVipfkxO5+O7Nv3qbTrgtAASgAhSqW85QN7Us+85a85flszn0e2Ql32cUt s9MkWMEg2229bv3MZlGwyoHtVUt7mjcZO85Qy4BAFWg5gT/z5mnEWxqgdYPwNvLmi4Tt/vzz/g7+ /Iv4+Ur8fC1+/iR+/rzD9l68eCF+7oqfe+LnSyBzFHHOzGCWXNsRZ0dB6rt24gX+Duv7DrI3XXhx iRNozhApJqQDliz4vXSAwty74jFL/aW38lC2kEcrL45hkCUBSBWCmny3HUTM9eIk8i7ShDMv2QHU ay9ZMBjAMkgTtgpcb+Y5gnK8w+yYLQN/jmWCbPpB4jkcOQwjHvPoirtCV0KGMArmkb3C0Xwel4FE yP8iCDlU7ARmhumWS3bBWRrzWbpERgCWfehPT8ZnU6aPPrIP+mSij6Yfd1AExOc3CfcTKVtCi7+0 rw8U60CDX3E5l7cKlx6AgKoi209uWTBjQ2PSPQGK+tv+oD/9iEIf9acjwzTZ0XjCdMA/1SfTfvds oE/Y6dnkdGwaIByKB39Zve92ipa1cwUm95NY5faL/fbuLtvb6/zlJfxllxxYCplxE7I6YefG9N8C hb1DGHZqO5d25BLQaWndQDc7YvF25KpAmat1B1eUxRzUKBZG2Yro9pIYybmBk65AZ2Ix2QwEtv1b FqZRGMRiDRc84qDFOeoItUU2MONAHhbzynOhF5cMqaFe7YvgiguepCxkDnYYcjvChbaBHxj2wByR EbHcFwEIqqis4wowtJ5c+DWycRqGQZR4/nxNrp18IuTQt1ccV7ukXiRI1obmiDRs94oDwRhIoiWE 6cXSczywFGAjsT0f+2ENMoUjW0AWp8hUnRsei0PuoN/ssOsIrdMH/XlINxMKgk+ZJwxa6FCIHnHh TiRSjHpOpTxx6iX2hbf0pBGX17qypDBFX3AjfVEuXw1c14tr2eLyG5wqRqGrXtIiM3xngB+CM3Tf 6ZMe6/XN7kDvD02mDwbKLfuGKbyVTYxjBJqO2fSkbzJzfDQFEAM9mvVH3cFZrz86Fpj94emgb/SK FMZHa16pj3rKLSFAjthojJSM98ZoyswTpFPm7q3BBn397cCQTgyBwzw1un19gNi9/sToTtl4Ijxw PDKN/zoDQjDKevpQP0YWJJJqfjjRp+YYppuAZObZYIrcH03GQzYYm4LhM1MK19OnOmKfTsbALzD7 4cSYngAeMK3D3+60Px4hAsw7nUBzh42M40H/2Bh1DUQcIzRSmo4h6ozPTMLZYfqkb+K8GAqBwFjQ BDIjQxIVigds5IWEOzUmIP9QF7SPymsBMSyOHNeL2CFraUkQWoWmFl7OYR+xZbu+TfVGexb4idwP EWTpXSgIWa0CeL6zTMHeCChvlgBx8ovUW7rZ9PbKshwX6t3eqT49OazV61/+Zp5YsAImyPq89bW+ jQOWaUB01kFXjRr78UfmuFp/ZE7RIA5ZO42j9oXntz0/TjAENR2Nqla8sMRSSa5UXwNAWHPFXu3v FyFhMY8n+nADcBHK7E76p9NNQMSSdWLoPTAFhFBdyERDS8DRYnDblRijDdPKei0MXw1thEs5sHIB O9rpxCi3x+a01EE4Z6MqVqUH8cpdiyBOgAUvXPIEOrxXP71qhk5z6fnpTXPup5reHYy7OgLXv5gn xmDwlRUWtbnX2mu9bIswB0Gz2YxS2AecZeDYyyYkZZo+7Bmn1pE+AGs9ZE+pPZ2cYRNaU33yGNKJ HWkCA0sTy1jTz6ZjcJCjR7EIiSMOC+R8wR6DvuC2yyNBYKi/Mx6LjjuA1NCHd4A7t68vtW4Xa44D FdDScNxDqi4PIQPgh9D/UuseDfRjlLsJtMZ7GsoNgU5MHt/GOCd411fBQKx1T08lQdY0sKGQte75 OQ48f441gnr+XECdn9839fl5dfKPx8I7P0AXdxaB1jOOxHDvRH9vWMhb/9g6ge5TyWMLCMZabzCY jsdoUe5ymQTBUuuNu0oICkFf27DPF4OH0T0Zq2mwbqGqZG2EU/qyPhW9xxNDiAQ7K8pkjHCPsGAW M7PEUieZ41PNODeMc0njHESzcnX3RZgRdt2m+EYwg/5bATEoQECYZM0l7LaQ9xy9fo0Ej7qW3utZ R7AhmNQGdemwy2R9gkC8gM2d1g9gcAyiB7JnQpajp3O29wpOHZ2Xe529fWb0pphRvlKguB6CerbU RxPDmH48Nb4tSxvPHMltyPc2i5pRuVfaD8sdMG4QeCHqa8pQE0D1s3aim6D4t+Mxmj5kQcJehDqh vSub58MBBH3TsIRAxUgqDIU6vqpArgAKUTyDyQbz4L1hbApjJXTy5vWtI9YGvUzBoJHx27+qqirJ wuvbgkgDKsXtr4FKEaY/GFmIsvQF1WmRGJjf2WSCuQ/qJG9aw/7ozLQgZVEDE+N9HzdMaO9jm/ZP 2CKO0Gl2O/udF9pQ7wtST2UN/jcmFjp67hPVgcwvMMARsQcHOQxwnj8LtKGJVmPp7/X+QPhcPl91 JJsQlNA7G6ITBxe/uekqxB7pmoEGKdOJddQfGGIDsFtwOFhA1kzljMoVlRGVcUKVK4VxS+VnWV7Y qiTUC07lnMqFKgOqeKr0qaJKBUCTX8RUpjSHo0qawlmocqUqhOoQKYdIOCmVV1SSFC5RdImiS1Lx JZXEGid6nOhxUgsnujOiMyPZZr9RSXgz4gtO7qqieoiTOVGYu1RyYmVOGHNiZU5TzkmUha3Ka6qQ LAviReld6WZBBBY0s0cEPKV/j1jwiJB3SaUaJyV4pASPCP5GhC6zUlWIk0sidEkiXdKyXZJol4Eq FSDNdJmqUmGQ8Jck8yXJsqQZl2TXS6XFJZFeEs9LIrAiK12RKa2I1RVxsCJWV8TiiuisSJkrorci Bnya2Cfd+YTvE75P+D7BBw6VJFhAdAOSPCT8kOaJCC4iOhFpJrZVSYLEygVirkoiFSsIEjUmUWM1 vlKlorn6TVV8VSH2YjXJ71QS+zGpN6b1iW9pICGaCXGVkP4TYirxLB7l1URVFRjxmhCvCTGUEB+J wiX+EkWA+EhuibGUCKZEULljSvZypTz/irR0FaiSSF6TJNcK8pogbkiUWzukCpG4JYDPC8vxs+ri MquucoB4nlUV75/lUmtj0/rQH73cy3eErCfbCcRZX2x1hWyQOq23Z5jqwX6AuKpzpA+NYhs3djhQ F3rg0FEFoi1TdhVPnOKUNNFHsFFBFc5qsHNrpgG7sEz6NbEdYvaGZ9B4oYk8Atp4dxRqOV2xR2q2 YzmJpY4w1BL7vaxnRwBqZom6bOe5M3VQdikb+a5JHVW+ZW+ZQzyEz2B3hNy82y2c1Mr96sRW7D0/ vwccBorwlETi8ZLSSexdwvkJsgXLDRJxG4B9v6dBgnAa6JJuE77wG+5YYcRn3s1X1LEmkqiNZ1Ux YtlLz44FEdF0wpSAqSPAwSoSeIkb4ISho9Ep6p5DVeHC5ItiSyTtWoHT4qg2SyxptyrHl3kx2ovK iptk2Hgc3yiaOKdnkolWQTDRrsgl+opilW9pMt7VmmCutj4G+Vue/SL/a1kfDTfB9POLovKqoenB /9h33zi2NaEXoJasMXkFzrKy/Wo3dGmr2AL8yI4820fdBEu3JKnQuBIyW518HbTNFzHoHzs38J8W 32eMOKCJpXc3Mu0EKy23n9IQTxwtsaM5LyyqZp69hWOwWQp1bAZWYENSHUcO1h3bWXDR6YGlwCEZ 9p840eAsOp3oVq9vYij8h8boT06oFTr4eak8FLdwUPY/kR1u4mJDqEaMbqaGd97r9AqDiiLZymcv BHBNXDnKruqVYjaQg6jTXkkKTSvj0xVIQ1vHkeKxTDAtTi/U5SPda1nDfUElvxlttOn+qrXa11aX ZN4wEK+f5xRGCUxTFx/qWolYX6iB7sDQR9kBpqq3krBFMdYUquFyW+b4bNJFSlp21VnQBHJa1mcD FmFiwFnS7L8XW+GxIW4f0NebEXfSKPauOHOvvEIrdGeFFnASxoW2CgEVEql/zwDgY+86AYytG7rR 68roBXVvgN/EQgkdfMi5XEesdEv9dsfDodjAJ7CekDTUt9WqFz/b5r3Zd2Smn01PxuDPMGF3fPoR k5DuAnyZD4I5U5ewhY+KbGR8MFlufYJTaQnzFD/bKEPCCZXJpBf5l+vCN2zp0rAZQxAK2ZojrgeG jb79pBwk8lAPp4+VDafeGM8Z8tRf9gFpmllAA7+R9YYGEJ3cJZ7UtzGRQjPVhyKnEhcrDVZaM01r mWdHR/1zw+zIzwbkSjhN2Z2UDBCQ00xjMmpSYwnah7CV6wr2TO4H2saF7bCnpSWqOH5J4SBCFlQa sHRuGRi/XIBKkYS6NG6wJu7VLJtCUxWcd7OlrV0llSQuTJtB4MRZ4GqV4Vn9DYyhRsFWcIrYWtm3 FxyixDfn6Wy0eBmNYV3AtqdnptUzTo1Rzxh1+was/JN7mWjiUqPzaRuollVxv8az2c8mRnVmoZTC OsglQHAhaIEKzlaaYyOyhG8UGNCH0nDV9tRadCDBtldhc7GrPXnjzcRGzX5gzRnoXLzq8KU5RCvs U7AHykakfZS6+TLmrHPAZp6mqYH1hZDx4TtW8qY866PNJnPgtRUT08s1e5insM2uIpdIbqKwgkmQ OovNsmoafql34EDhNxdu1NGeNKV0CiYXsxLlOt9W04ag+Af8SyvF2kdMGf6ZCWXUfshsWXz/c7Lh zvJw4VRC+Aem1FZwslneyvWme/R8zZ9BfAcf3DQYzRjE+ouY4YEhLlrNGhV1PV9JYexVh9wbM6nC J9jqp16FlQN3KnkZuGB9u/ytV0TI0jaKAaZnmFPMbxU6qgiQMf8/3CrT3DoQr0JCfDVTryPEARwR ZEBRAQiEq9XrYY0ikHt4wERYcQ9ruXPVMMZQJJod1j7hZzegGLI7hq9ompxtxXe/tp617+62PtUI UADVMjGLGgI56i7ibxanXa/Palng+0PoAtsNfEgV8jUraL+o7uwL+B/R42PVIe3p+3J/Dy4XMEvn H2iDJfjOhvPA4y2xeIgrKrFC+f+IPW5U2EabKslVtso/QWSjbZZX5bvm+QjN/nkLvVcNDwAtCEsv Q2GEO0kQ3W7FTB7ARVM8E4ScUUZzEAQSUA4/fBDlNkiZY/v40OcpjMhHoCvx2A8/LX7Cb4tb2au2 eSAe7C2iIJ0v5Cu5LGFGJgLmiGOXeFN3ZS/hLIXP6YjKFd4cXUDi2xHnG267OMhdD18cZoRifPe1 vdsQdivISCx8bhfzBNfhU2mn2toRNKq9+F4L/mxfLzxIZ8RLWMdOY8lbNhm+PrzgLOL5a+dr9A7U S66AxgHytNdgASBH1x4+GQ3tOBa0XB6Dot1MXvk2lmSGQyHepuFtIaiovr12H9BAi0S5Zn4QwQ5d z05mB8xezQ7r9T1a6MSKOfcP/UC05Z3WIdnfGzK/uJ0f5drtTwJSGbY6F5JF0w3NBrOW1goqwmWp 1+VMElAiKSNVkaWWDUBwrLVqxZwb35ES57c8PlCd4uRtkRA1NQls+5nLYGj6JrCCzOLVNmY4xIlM bTYfeEHeAsEGzXJ3B/YBcwJ90HsN5X12+KzB+A3Y1u7BAXt2Ca2Z7S2FINAujPHYdjJ/FJWCbpQC hHb8oKSe+3gsqQR5o6nEVQEILCP6Z4RDlmrlXC2/b6m280yseE2DNwz4HJdHzcrgH7RO0uQboUYh aD7xM7DVtQlBmcpOixcajS12QKtbgKgOZtqP+NXh1nft+ztm2zkoGR/SzCCBFrQrlpetOYFCwVq1 R3pplWUg8r/mkf/JzodzrzlHYs/jkk0/Oiaua7WFTD9UamSgkW/Yzr+dIafCkWZM5SsrjgOyRQ+v NK1LYwJJtrIx7Oow7NK0fg+TXnmRgEu9TTfmWB30zVMsEVJeITYKUudwBewNKFuCY8jtfk/54SfU kLdJOdWk11MOQNmaRy4um1nyKwYyixbWdJddJH5412BbSPoLE5nD3+v1F//EN18H7KuaFf4Yox5C AGfbgjUB28DfU/DBYwF2S/o75PyQLc76PWBHyqNpKGiHlW3jHoWWL6CEhkoXcTjFk5LqlEIxKM3j Q8EE/mbK4afw2v2k9qxtsf6s2RRlU31QbjaveIS/X9Fgv7RdftX2U8in9n75cbcYWQjaCkL8/YrD CpH8Ym0zcBGMFuHRXrEx/rU2B3ZlHwq0LaxcXR0LCFSUCHmgEjCOMsf1OqqvXUK/b2f4lqGXl/I/ 2ujzwLwtIowFObDZkApWblCTdCGWEVBDVdQOgqGs3FEglnGVLZvyLkeGKhG+ZBDrMOff52z/bxJV k+g+xCS6yiS6VZMod3QfYhLHwgrU0sivM4679oYYgwKumyQkfi2mcouuBuYyenowfFxgQIaK4j2o sMXsElREHtgKBA47nsjC/DiEn+Khudh4MTFWH98oTZafTBuqWbClqXGO74ile2RPFhqa+OUg5EN9 ns/r+CtA4o1Wo1nfpudUDfkRMOKr4IoX8PA1wpfsQwuqg8Ya9FABFgsNxC8NNcW7dBdR8Ff2WHPv xQsmPjrje9zAZenza/blK9s62Cq8d0DFCj1FBVpgQfAXlvBv/VPLGL3Hp/LNC3yhgRDZ7Y/41mWh V8jj/qHkqUWszIARtMh8ZR6KoPTWId2rlEYaUVlfDdzuxelhO+/ZcO2nBtutYgOfnhSaYHJ4JhOG J96V0ekiv8Sr0TFjK75rwX9z5WlBuBGrYMf3YBZPZln8QddGFW2KOyKXh+Sbhsn/8gCDuTyMZTwI SDV5Lb77FTbVnNX23V3tkzoGVr8LP4BUWfD2XfXLSYF6dpQoRU6SBExa9rjUk92ktrKr1EzGYgD1 os3sicvCnfbff23/81m9vrND6i6lMSKH+eEwR1Xnm+LY2pULzFhrS4CC3ioGV8utqgRaTJKQ0tZW 9bCX6QY14bZL2qhuPG5pYxGKVCIALrJf0FmRAphRCN42Wcev8F25HhFPpLysqohkfH4XfWOSmDsg USEAPLniDJsnWAcuzVRIE/8lya5bZo1I58xVo9QmmIqmqwfObPHuO3nmKQIrbEWHFIjUzLUinIJp tdrf4K0AWZjlmypvfneDev36dWmDsp9H1ze4Rf3jgDVpHX5YR9vf32f4pvQyZrtV/AdgV3bFhyHh lAKp8HRu/VdxiZYkB7TQfsUkzYkYK2xRWGnOxcdm6sNdS/wmKaSoiwD2wqLu7hjuxRAB1ZbcYIiM 8/6Sg7USO2rNP9+3UYpJxXRN8XzpXzcxfUOhu7XUhwrd7yNHwovFP4EgP6ew9yIvU28txD8o0GJA guO/ewD2Nk9t8e894CcG9a8mlP6ZA/E5YznDT6fiJlT8SxsrecVn++JDA1ACLuTXFZGgYG4idXJv orGuitQnZazpgt2xTK03oFR8rqdMoXldSraUIV6Xcpi1eCF31U0DaImKfpk4OKNjKUP9n1autreN GwZ/v18h3IKlAWrf0GwDJsNFgSBYgKLJkHVDiyRd3Nx5CWCnrs/NEqT57yOpN1LSnV2jAVokdyLF k0iKlB7qI0QOMhKXLGwoLhbQD2cf9Pl5daHP8P/nFayjPiAH1nXjPMzO49s3WCA7qFbzxVM1mQ/q q8EO/FSlDO2j7/Evh0MGwRoMzLIEbgl+N3hj7CT6Gu/JTPx0cHR48PqfAJ/iXrFnv27d+/ruZm0b Up+1rVxx/4btNmPq4/H1H5JG73byusbV+X1JFSaUq3QnG2j47JFxxGUNZhumlmRNIqedoFglX9N6 vswe5Y4lsRzvLXlEw7slFzae+TFlM+GJ0lajwOjJpIEWEiQpR35dfgrqnW25kc7QQiX48KDNObxN OIU0sNPJvnK5U8wfnPqymdQPFLlxd1+6HRRKr65HbTWsxtW/o8XoHv/tZrJWPHrz3iidCBo0F0lf Zlv5LBbXyP9g+Z9dYrE8hCT+1OXRni0dnp6enGqzS6NmzXSlJtNVswyapUs14hri4/tbHAcHUyjj EB5/LPoBbIoM07Z1tw3tlYLv9Eb2s+7DRGOvUerljy+inF6HyWUo0V2fXOzSEQqXX4yMZEaYiU+3 swcCCdAlZy4koBXDD5aRSNlNbeiYT1duw4FPVfNZ/eS3vrpnCm9Vo2XK4z/s5Pk+osnr6523k8Np MPuTuSbE+GRe2GGNsfzmbbjECxc+qo/wSFbmS7VifzAm/CliATfF63VDZgrH03eZdkfxc3gvqyF8 I6ydCI1kJUXAHelcSYQXgo8jIpJ611gjCF75xvsEykL4i67iCl9MgNsfursQILrYAVOy7JUNLjlL b/TpI5HPscvxoDWMLt0mMGa/+BqM8etXp4hG7SPhMLYdU1t8MA6E5aWTSyAiCN5zc6UdYDX8HfZk /TO3LetB9qzwAfQoAS8EQrswUCbhoD/wK7RHwFVNy0Igb+39c6UnBHurm1kD42ENnHKH+QT8TPP5 C5i3uQJtMlMImiX6ZUPGPyzNl+kY8uG+GBVOiKsEIlfx0ULVCs4jBxphY9RdJLLnW/mqi8AqyAOK nUwCe3JdM0/mxcUcXuymg8R3N1pWU9Ez8h9UdKmj0ivz1L0XphXsO2AHpfkRjIFOTXM4w6KIbJd1 4UTJVWyFVqA7Whq44RJrn07BNNvN0nIaba3S5Uk/rxpT1JPOZdIvDhuf4FQyO7sCraRVFrokEU3I OmPPKoNQL4pFPdWykI6emfFbwJrDa+rwiXkT/DX2lgM3x4V28InmGC6vArK17izTK4rhH0cnx+/x LCEFCJoTS3s2hDG+kdCmc04zjC2hOH1GnsDD6LwKiaKDULENwwJsvw0RJlqa4lb2m8OnkWRR1OXO nyxxlPFhDmzsPaqpxNFWbMKiIkmXO4XZzxk/s3S0/3gtXuMceuotk1WekUX1mFx9VEYTO6pAmUtR WVXltCkZxQ0y34/cEqPH4EzEdGFoZIiHNLF/6HQYucaMFfMCWS+B1KmjyPsddBzKeAukk/W4i1aR txAehE5nY9gO9wuKe5atHEtnvW8yjdmgs0iVUxPc56ynFIIVpl+kaRHe9QpJ8RIvYsUtS8gVWvpl LbcyAIGCBG7N6e9URZUXecINJVDfiVv6Od/4Ed9D9G8WeGohHpiUktz3gQ4y4XsvubsKofJ3IsAX Du6I8gf1Fq9GttiwVp3tD3/57fn+8Nf9PYT2/378F11OhmEq6ktzjwk/rWG+FgDrBk4cqh6S6Pah XTVzRXdsq2cYL//50P6tIAoGM21XexQMf8R7qq+apsZ7sYfHJ4fv8GoaXfwPFJRH+sFcAAA= ------=_NextPart_000_0007_01C6C947.51DAE9C0-- From sergstesh@yahoo.com Sat Aug 26 19:46:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 831C43B010E for ; Sat, 26 Aug 2006 19:46:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09405-06 for ; Sat, 26 Aug 2006 19:46:18 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 7B1683B010D for ; Sat, 26 Aug 2006 19:46:18 -0400 (EDT) Received: (qmail 77568 invoked by uid 60001); 26 Aug 2006 23:46:18 -0000 Message-ID: <20060826234618.77566.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35209.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:46:18 PDT Date: Sat, 26 Aug 2006 16:46:18 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c968$da2b7260$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.455 tagged_above=-999 required=2 tests=[AWL=-1.288, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.455 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:46:19 -0000 --- Bill Cunningham wrote: > Sergei, > > Thanks for your help. It's make that's giving some problems. It's probably > something simple that I'm overlooking. Here's an attached makefile. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Please run make 1>make.log 2>&1 and attach make.log - gzipped if the list rejects it. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 19:57:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 875183B0071 for ; Sat, 26 Aug 2006 19:57:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10107-01 for ; Sat, 26 Aug 2006 19:57:58 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 7DFE93B00C5 for ; Sat, 26 Aug 2006 19:57:58 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00JRTQKB2FBB@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 18:57:48 -0500 (CDT) Date: Sat, 26 Aug 2006 19:56:04 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C949.A9F2E020" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.612 tagged_above=-999 required=2 tests=[AWL=-0.296, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.612 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:57:59 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C949.A9F2E020 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok this is it. This is the error I'm getting. ------=_NextPart_000_0007_01C6C949.A9F2E020 Content-Type: application/x-gzip; name="make.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="make.log.gz" H4sICOve8EQAA21ha2UubG9nAO1ba28aRxT9XH7FiFahjQQEkkapk1iKEjuxlDiuavVLEplld5ad 7GPo7iw2bvrfO8ueu++lwalUbcESvsN9nPuYOTBG2DdczpjhecOQm3EYiRXv+Vr3YfLpiJ0Eioci WDBLaKuS4ZrNxrYMlCkDWyyG09F09HDQe2e4iZMGYSJguT0Fmn4tUEExyEPPpXKSSCXZnDNLBlxn CNlMZxuMcre33FjtlKBStDn0jGD3itOwQU/YbGGabPjqzYvfT65evj8/PXt99YYNz0b0SH+No9Ck Z+M4CseeNA1vLALTiy0+tkPO1XrJp41mpn+GCzZ8r83vLqnmkdTPXunHhX6csv7I4suIKhtdLmWf fex9pyN1YlkImikeKTa02YB05oB9+cK46Ug2GI0Hs0z/NEFQDg+Yv0oimnJUdBeyv4niXsRZ6LdE PWX8Rig22bjaojeei2AcOUwPyhNzJaXHhkNfWvy5JwJ3M2KaACt0wwptsZ7v6j1jIw0Q9TabgpHl 7rl3Ly3NNjfPnZ6OfD5bXluzp+xH02Ijdu8e++FPrf2L6maGMZKhcpgxh7QhfcgQMlJYrChiDXmb yrlBEqFzDrmAdEhKLATJAAuS5IDk8wgyRg6TJFKYDkmfFgg1AWUCwowhV5DowgKiBUQLXXEPEqVx 4HHgcYyFA9cGjo3e7M+QiLNRlx17tCANKlkAYWFBcpSyQMQCpSyQcoFWHIPkNRboxUEtNHeajQMA B5kFAATNX6AEASDhQpIdQxAYggDgZwC5maQFKnEB5KIlF9vmojVXkiRHZHJjkhSB5l307KIXDxk9 nGuPpugB2kPNHgB8nFIfR8lHqT4q8FGqjxJ94PgYpg88HwUESBxgdgHiA8QHiA/gL01INCaBK9H5 EvFL5AnhFwInxGQigyQaiYgCEScJqIg80GqEViOy+yQJ0/9Mi4AWKC+iJH9AovwI442wP9EaBgVM haoU5q9QlBJXPMyXipbkhloValUoSKEORbGoTxEA6lBrFBYDMAYg0THGeVkR81eY0kqSBOQ1Orkm z2t43KCVtbHEAhBrONw6V2aQLR03W/q5Q7TIllT7bbrVP7FnyVsLXsnHeNVXvj4pDjvO3wV2vFXQ JaB8pdDv9LteJ3TI5irR/jZoSn8pPP41l43drxfNylen788vkeTixeWb54N+wY0rc9NH1B9UbjnV y4qhpC/MkddyXYG5fl/J44o3FmjrVxYytN5Ziomqygtvy7WlEFi9txSvHP/p3nxs3JuP/eoN9J83 pt51siP5fPUG2RdnL3UNm98y7T4PkHsziOIplex4bPHVOIj1i8D0+N7kf0vnuX7N03eMNjrDXKdz HlekM7R1OpOhlc7FRFXlVjoXAqt07tzJbd6MeqfpyaWZtlIYDh2k8B0HUTyZ+0Nh0zD1HzxtDE6t dQJnUUX+pso6faFvZW8hSUW3lbt5WOep27gJtT7T84pptvI2tXeQtncZQuEw7hFl7UU7Ye2mj/sQ USKr3fRZ30bbTlS7+jlfotlOUrv5Q77unc760Cs94mQmE2wnp7Z2kZo7NZ8duT2ipGOEEVfttIS9 gZp5ZImeUDdQlCztNC0mq2m307UQ2n3KNm9KQ684vTTZdvrCo4sUvvMwSsd0fyhtzdvfZRNbncqI KNI4UdUpvNG20jcDL2m20pZCOk/ZhqFXekxP52aCrTRNrB2k6G7NZ0dujyjJbSP22t9lyd5AzTyy RE+oGyhKlnaaFpPVtNvpWgjtPmWbN6WhV5xemmw7feHRRQrfeRilY7pHlBZhO521rYHKaUSJxlrV QOFE205fAi9pttMWId2nbH3olR5xOpMJttNUW7tI0Z2az47c/lCSkrfyMnOok7MYW2Ropq/TNDe1 crWcsK7eytpScOep27Y5Td2m5zifbyuTMxfZK/of/fzwaPLgiH1PLfCbJTdVxPqnZ29Pzl+8O+kz GbJn9Oy4HM3OAmbHgamEDNjs1HzN1YW44d5v4pYPjsq+08dPjhgPQxkeMYuH3NaPwEy+K7GUIvna RPLVT12GZpXHFWdJ2PZsp9p0qU2/xjxcV9M9mXxruifTx9+K8Ohba/jlwaN/EUEEK8MT1saLGeEi 9nmgmLTZbHg8OCQ+JD4kPiQ+JD4kPiQ+JD4kPiQ+JO5y4uxb6ffv32cfSn9YfmInCQKb7Pgd+M03 17P/G9zglv6nsII7+UrcFDMHJJhp729uba7luDgAAA== ------=_NextPart_000_0007_01C6C949.A9F2E020-- From sergstesh@yahoo.com Sat Aug 26 20:11:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D84BF3B0071 for ; Sat, 26 Aug 2006 20:11:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10557-04 for ; Sat, 26 Aug 2006 20:11:31 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 967543B010E for ; Sat, 26 Aug 2006 20:11:30 -0400 (EDT) Received: (qmail 40590 invoked by uid 60001); 27 Aug 2006 00:11:30 -0000 Message-ID: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35211.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 17:11:30 PDT Date: Sat, 26 Aug 2006 17:11:30 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.448 tagged_above=-999 required=2 tests=[AWL=-1.281, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.448 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:11:34 -0000 --- Bill Cunningham wrote: > Ok this is it. This is the error I'm getting. > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is your first error message: " 84 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../src -g -O2 -MT fcfreetype.l 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o .libs/fcfreetype.o 85 fcfreetype.c:53:10: #include expects "FILENAME" or ". And it is exactly the same error message which caused me to file already mentioned bug report: https://bugs.freedesktop.org/show_bug.cgi?id=7862 . Did you read the bug report and did you compare my report with your error message ? I have no idea how to fix this. My tool currently uses installed at system level fontconfig. You can isntall precompiled RPM on your system or you can start rolling back versions trying to find the one which compiles. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From g.tagliaretti@gmail.com Sat Aug 26 20:17:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4614A3B012D for ; Sat, 26 Aug 2006 20:17:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10473-09 for ; Sat, 26 Aug 2006 20:17:10 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by menubar.gnome.org (Postfix) with ESMTP id C3C963B0116 for ; Sat, 26 Aug 2006 20:17:09 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so2558982ugf for ; Sat, 26 Aug 2006 17:17:09 -0700 (PDT) Received: by 10.67.103.7 with SMTP id f7mr2855955ugm; Sat, 26 Aug 2006 17:17:09 -0700 (PDT) Received: by 10.67.123.10 with HTTP; Sat, 26 Aug 2006 17:17:08 -0700 (PDT) Message-ID: <35bf41160608261717g40e347te71aec0363699144@mail.gmail.com> Date: Sun, 27 Aug 2006 02:17:08 +0200 From: "Gian Mario Tagliaretti" To: "Bill Cunningham" Subject: Re: fontconfig error In-Reply-To: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.442 tagged_above=-999 required=2 tests=[AWL=-0.042, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.442 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:17:13 -0000 2006/8/27, Bill Cunningham : > Ok this is it. This is the error I'm getting. can you please STOP to open a brand new thread for EVERY message you have to send to this Mailing list? thanks in advance for your cooperation -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ From billcu1@verizon.net Sat Aug 26 20:42:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0714E3B0012 for ; Sat, 26 Aug 2006 20:42:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11669-02 for ; Sat, 26 Aug 2006 20:42:39 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 0291A3B0116 for ; Sat, 26 Aug 2006 20:42:39 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M008IUSN0UQK0@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 19:42:38 -0500 (CDT) Date: Sat, 26 Aug 2006 20:40:55 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Sergei Steshenko" , Message-id: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.371 tagged_above=-999 required=2 tests=[AWL=1.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 0.371 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:42:40 -0000 > This is your first error message: > > " > 84 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local /include > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ src -g -O2 -MT > fcfreetype.l > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o .libs/fcfreetype.o > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > ". > > And it is exactly the same error message which caused me to file > already mentioned bug report: > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > . > > Did you read the bug report and did you compare my report with > your error message ? > > I have no idea how to fix this. > > My tool currently uses installed at system level fontconfig. Ok I might try as a last resort to compile and install fontconfig at the system level too instead of putting it into /usr/local but I doubt very seriously that that would change anything. Bill From sergstesh@yahoo.com Sat Aug 26 20:56:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BBC3D3B0139 for ; Sat, 26 Aug 2006 20:56:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12062-08 for ; Sat, 26 Aug 2006 20:56:35 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id D67733B0129 for ; Sat, 26 Aug 2006 20:56:34 -0400 (EDT) Received: (qmail 56939 invoked by uid 60001); 27 Aug 2006 00:56:34 -0000 Message-ID: <20060827005634.56937.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35211.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 17:56:34 PDT Date: Sat, 26 Aug 2006 17:56:34 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.48 tagged_above=-999 required=2 tests=[AWL=-1.236, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.48 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:56:35 -0000 --- Bill Cunningham wrote: > > > This is your first error message: > > > > " > > 84 > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > /include > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > src -g -O2 -MT > > fcfreetype.l > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > .libs/fcfreetype.o > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > ". > > > > And it is exactly the same error message which caused me to file > > already mentioned bug report: > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > . > > > > Did you read the bug report and did you compare my report with > > your error message ? > > > > I have no idea how to fix this. > > > > My tool currently uses installed at system level fontconfig. > > Ok I might try as a last resort to compile and install fontconfig at the > system level too instead of putting it into /usr/local but I doubt very > seriously that that would change anything. > > Bill > > > It's compilation error, so if you compile it yourself, it doesn't matter what the install destination is. I suggested you to install binary package, --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From leolists@leonardteo.com Sat Aug 26 23:49:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50F413B0195 for ; Sat, 26 Aug 2006 23:49:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17610-01 for ; Sat, 26 Aug 2006 23:49:25 -0400 (EDT) Received: from ash25e.internode.on.net (ash25e.internode.on.net [203.16.214.182]) by menubar.gnome.org (Postfix) with ESMTP id 8BC5D3B0071 for ; Sat, 26 Aug 2006 23:49:24 -0400 (EDT) Received: from [192.168.1.10] (ppp211-139.lns1.adl2.internode.on.net [203.122.211.139]) by ash25e.internode.on.net (8.13.6/8.13.5) with ESMTP id k7R3n8QN047477 for ; Sun, 27 Aug 2006 13:19:23 +0930 (CST) (envelope-from leolists@leonardteo.com) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <0323DC2E-D9AA-4B37-BBD4-D1549A09906E@leonardteo.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: gtk-list@gnome.org From: Leonard Teo Subject: Compiling gtk+-2.10.2 - can't find pangocairo package Date: Sun, 27 Aug 2006 13:19:06 +0930 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 03:49:56 -0000 Hi all, I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat Enterprise Linux ES release 4 (Nahant Update 4). I've installed cairo and pango successfully, but upon trying to ./ configure --prefix=/usr gtk+, I get the following error: --- checking Pango flags... configure: error: *** Pango not found. Pango built with Cairo support is required *** to build GTK+. See http://www.pango.org for Pango information. --- Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ -- [root@server1 ~]# pkg-config --cflags pango -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/ include -- Looking at the configure file, I see that it's trying to look for a package called "pangocairo". The line in the configure file shows: PANGO_PACKAGES="pango pangocairo" When I run pkg-config to search for 'pangocairo', it's not found. I've gone back to the installation of Pango and found that pangocairo.pc is in the build directory. It's all there but for some reason, make install of Pango doesn't copy pangocairo.pc or any of the pangocairo files into the respective installation directories. I've tried to set the PKG_CONFIG_PATH to the build directory of pango, which forces gtk+ to configure but when it comes to build time, it fails. Does anyone know how to build and install 'pangocairo' so that gtk+ can compile without a hitch? Thanks! Leonard From sergstesh@yahoo.com Sat Aug 26 23:58:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0A1953B0126 for ; Sat, 26 Aug 2006 23:58:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17973-02 for ; Sat, 26 Aug 2006 23:58:43 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 4AF793B0139 for ; Sat, 26 Aug 2006 23:58:43 -0400 (EDT) Received: (qmail 57304 invoked by uid 60001); 27 Aug 2006 03:58:43 -0000 Message-ID: <20060827035843.57302.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 20:58:43 PDT Date: Sat, 26 Aug 2006 20:58:43 -0700 (PDT) From: Sergei Steshenko Subject: Re: Compiling gtk+-2.10.2 - can't find pangocairo package To: Leonard Teo , gtk-list@gnome.org In-Reply-To: <0323DC2E-D9AA-4B37-BBD4-D1549A09906E@leonardteo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.435 tagged_above=-999 required=2 tests=[AWL=-1.268, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.435 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 03:58:46 -0000 --- Leonard Teo wrote: > Hi all, > > I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat > Enterprise Linux ES release 4 (Nahant Update 4). > > I've installed cairo and pango successfully, but upon trying to ./ > configure --prefix=/usr gtk+, I get the following error: > > --- > checking Pango flags... configure: error: > *** Pango not found. Pango built with Cairo support is required > *** to build GTK+. See http://www.pango.org for Pango information. > --- > > Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ > > -- > [root@server1 ~]# pkg-config --cflags pango > -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/ > include > -- > > Looking at the configure file, I see that it's trying to look for a > package called "pangocairo". The line in the configure file shows: > PANGO_PACKAGES="pango pangocairo" > > When I run pkg-config to search for 'pangocairo', it's not found. > > I've gone back to the installation of Pango and found that > pangocairo.pc is in the build directory. It's all there but for some > reason, make install of Pango doesn't copy pangocairo.pc or any of > the pangocairo files into the respective installation directories. > > I've tried to set the PKG_CONFIG_PATH to the build directory of > pango, which forces gtk+ to configure but when it comes to build > time, it fails. > > Does anyone know how to build and install 'pangocairo' so that gtk+ > can compile without a hitch? > > Thanks! > > Leonard > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool - see signature. You'll need to perform trivial editing: http://appsfromscratch.berlios.de/ -> http://appsfromscratch.berlios.de/README -> 3. FOR THE IMPATIENT: CHANGING VERSIONS OF TARGETS TO BE BUILT. I did check myself that gtk+-2.10.1 compiles. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From leolists@leonardteo.com Sun Aug 27 03:35:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E12C3B00E6 for ; Sun, 27 Aug 2006 03:35:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-09 for ; Sun, 27 Aug 2006 03:35:57 -0400 (EDT) Received: from server1.leonardteo.com (ensim1.ausrack.com [216.127.84.46]) by menubar.gnome.org (Postfix) with ESMTP id 2D9B93B00F9 for ; Sun, 27 Aug 2006 03:35:57 -0400 (EDT) Received: (qmail 25133 invoked from network); 26 Aug 2006 20:42:05 -0500 Received: from localhost (127.0.0.1) by localhost with SMTP; 26 Aug 2006 20:42:05 -0500 Received: from ppp211-139.lns1.adl2.internode.on.net (ppp211-139.lns1.adl2.internode.on.net [203.122.211.139]) by webmail.leonardteo.com (Horde MIME library) with HTTP; Sat, 26 Aug 2006 20:42:05 -0500 Message-ID: <20060826204205.2oc3m5yhsg800c44@webmail.leonardteo.com> Date: Sat, 26 Aug 2006 20:42:05 -0500 From: leolists@leonardteo.com To: gtk-list@gnome.org Subject: Compiling gtk+-2.10.2 - can't find pangocairo package MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.503 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -1.503 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 07:35:58 -0000 Hi all, I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat Enterprise Linux ES release 4 (Nahant Update 4). I've installed cairo and pango successfully, but upon trying to ./configure --prefix=/usr gtk+, I get the following error: --- checking Pango flags... configure: error: *** Pango not found. Pango built with Cairo support is required *** to build GTK+. See http://www.pango.org for Pango information. --- Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ -- [root@server1 ~]# pkg-config --cflags pango -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -- Looking at the configure file, I see that it's trying to look for a package called "pangocairo". The line in the configure file shows: PANGO_PACKAGES="pango pangocairo" When I run pkg-config to search for 'pangocairo', it's not found. I've gone back to the installation of Pango and found that pangocairo.pc is in the build directory. It's all there but for some reason, make install of Pango doesn't copy pangocairo.pc or any of the pangocairo files into the respective installation directories. I've tried to set the PKG_CONFIG_PATH to the build directory of pango, which forces gtk+ to configure but when it comes to build time, it fails. Does anyone know how to build and install 'pangocairo' so that gtk+ can compile without a hitch? Thanks! Leonard From michael@elehack.net Sun Aug 27 14:06:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D3843B0079 for ; Sun, 27 Aug 2006 14:06:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16684-04 for ; Sun, 27 Aug 2006 14:06:10 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id C380A3B00D7 for ; Sun, 27 Aug 2006 14:06:09 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=bezalel.local) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GHP1L-0000Zl-8V; Sun, 27 Aug 2006 13:06:07 -0500 Subject: Re: fontconfig error From: Michael Ekstrand To: Bill Cunningham In-Reply-To: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> Content-Type: text/plain Date: Sun, 27 Aug 2006 13:06:06 -0500 Message-Id: <1156701966.7990.3.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.401 tagged_above=-999 required=2 tests=[AWL=0.063, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.401 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:06:13 -0000 On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > This is your first error message: > > > > " > > 84 > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > /include > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > src -g -O2 -MT > > fcfreetype.l > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > .libs/fcfreetype.o > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > ". > > > > And it is exactly the same error message which caused me to file > > already mentioned bug report: > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > . > > > > Did you read the bug report and did you compare my report with > > your error message ? > > > > I have no idea how to fix this. It looks like a result of FreeType's housecleaning.. The latest versions of freetype removed the public install of old internal headers, which half the projects on the Internet (it seems) used. They were never supposed to, but they did. Result: many packages are broken. Installing an older freetype (2.1.x I believe) is an intermediate fix; otherwise, there are patches from freetype's website for some packages, and many packages have appropriate fixes already. It's been a while since I looked into this, so I don't remember details, but that should give you a starting point. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From billcu1@verizon.net Sun Aug 27 14:29:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6FD563B0149 for ; Sun, 27 Aug 2006 14:29:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18408-08 for ; Sun, 27 Aug 2006 14:29:11 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id DCFDC3B002C for ; Sun, 27 Aug 2006 14:29:10 -0400 (EDT) Received: from win98 ([70.105.150.96]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4O00FSI608NDDE@vms044.mailsrvcs.net> for gtk-list@gnome.org; Sun, 27 Aug 2006 13:28:57 -0500 (CDT) Date: Sun, 27 Aug 2006 14:27:14 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Michael Ekstrand" Message-id: <000a01c6ca06$6be322a0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> <1156701966.7990.3.camel@bezalel.elehack.net> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.722 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.722 X-Spam-Level: * Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:29:13 -0000 > It looks like a result of FreeType's housecleaning.. The latest > versions of freetype removed the public install of old internal headers, > which half the projects on the Internet (it seems) used. They were > never supposed to, but they did. Result: many packages are broken. > Installing an older freetype (2.1.x I believe) is an intermediate fix; > otherwise, there are patches from freetype's website for some packages, > and many packages have appropriate fixes already. > > It's been a while since I looked into this, so I don't remember details, > but that should give you a starting point. > > - Michael > I came across a package called fcpackage. This enabled me to get fontconfig installed and cairo. Now it's Pango that's giving me the problems. Bill From sergstesh@yahoo.com Sun Aug 27 15:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 95EFB3B0079 for ; Sun, 27 Aug 2006 15:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21440-06 for ; Sun, 27 Aug 2006 15:44:00 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 914973B002C for ; Sun, 27 Aug 2006 15:44:00 -0400 (EDT) Received: (qmail 5432 invoked by uid 60001); 27 Aug 2006 19:44:00 -0000 Message-ID: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 12:44:00 PDT Date: Sun, 27 Aug 2006 12:44:00 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Michael Ekstrand In-Reply-To: <1156701966.7990.3.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.467 tagged_above=-999 required=2 tests=[AWL=-1.223, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.467 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 19:44:04 -0000 --- Michael Ekstrand wrote: > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > This is your first error message: > > > > > > " > > > 84 > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > /include > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > src -g -O2 -MT > > > fcfreetype.l > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > .libs/fcfreetype.o > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > ". > > > > > > And it is exactly the same error message which caused me to file > > > already mentioned bug report: > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > . > > > > > > Did you read the bug report and did you compare my report with > > > your error message ? > > > > > > I have no idea how to fix this. > > It looks like a result of FreeType's housecleaning.. The latest > versions of freetype removed the public install of old internal headers, > which half the projects on the Internet (it seems) used. They were > never supposed to, but they did. Result: many packages are broken. Do your words in simple English mean that fontconfig folks release packages which can't compile ? That is, they release packages not even trying to compile them ? > Installing an older freetype (2.1.x I believe) is an intermediate fix; > otherwise, there are patches from freetype's website for some packages, > and many packages have appropriate fixes already. Could you please be more specific about the patches ? I.e., could you please provide URLs to the patches ? > > It's been a while since I looked into this, so I don't remember details, > but that should give you a starting point. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From michael@elehack.net Sun Aug 27 16:41:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 31A5B3B0079 for ; Sun, 27 Aug 2006 16:41:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23769-06 for ; Sun, 27 Aug 2006 16:41:05 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id 552EA3B00BC for ; Sun, 27 Aug 2006 16:41:05 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=bezalel.local) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GHRRH-00068v-PG; Sun, 27 Aug 2006 15:41:04 -0500 Subject: Re: fontconfig error From: Michael Ekstrand To: Sergei Steshenko In-Reply-To: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> References: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> Content-Type: text/plain Date: Sun, 27 Aug 2006 15:41:03 -0500 Message-Id: <1156711263.18069.4.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.403 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.403 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:41:07 -0000 On Sun, 2006-08-27 at 12:44 -0700, Sergei Steshenko wrote: > > --- Michael Ekstrand wrote: > > > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > > This is your first error message: > > > > > > > > " > > > > 84 > > > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > > /include > > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > > src -g -O2 -MT > > > > fcfreetype.l > > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > > .libs/fcfreetype.o > > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > > > ". > > > > > > > > And it is exactly the same error message which caused me to file > > > > already mentioned bug report: > > > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > > . > > > > > > > > Did you read the bug report and did you compare my report with > > > > your error message ? > > > > > > > > I have no idea how to fix this. > > > > It looks like a result of FreeType's housecleaning.. The latest > > versions of freetype removed the public install of old internal headers, > > which half the projects on the Internet (it seems) used. They were > > never supposed to, but they did. Result: many packages are broken. > > Do your words in simple English mean that fontconfig folks release > packages which can't compile ? > > That is, they release packages not even trying to compile them ? No. They release packages which use internal/experimental FreeType headers, which up through 2.1, FreeType had installed. The FreeType folks released these so developers could experiment with new features and concepts, but never intended for the features to be used in released code. With 2.2, they removed these headers, so that only the documented, public API's are exposed. fontconfig used the old headers. It will build fine with freetype 2.1.x, but not 2.2. fontconfig is "broken" in that it uses internal/undocumented API's, but not "broken" in the sense of them failing to test. The problem is fixed in FontConfig 2.3.93 and later. The following page has all the details: http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html > > Installing an older freetype (2.1.x I believe) is an intermediate fix; > > otherwise, there are patches from freetype's website for some packages, > > and many packages have appropriate fixes already. > > Could you please be more specific about the patches ? I.e., could you please > provide URLs to the patches ? URL above has a link to freetype's info and patch page. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From sergstesh@yahoo.com Sun Aug 27 17:23:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B96383B0149 for ; Sun, 27 Aug 2006 17:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25336-06 for ; Sun, 27 Aug 2006 17:23:39 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 2E3533B002C for ; Sun, 27 Aug 2006 17:23:39 -0400 (EDT) Received: (qmail 83585 invoked by uid 60001); 27 Aug 2006 21:23:38 -0000 Message-ID: <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35206.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 14:23:38 PDT Date: Sun, 27 Aug 2006 14:23:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Michael Ekstrand In-Reply-To: <1156711263.18069.4.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.461 tagged_above=-999 required=2 tests=[AWL=-1.217, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.461 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:23:40 -0000 --- Michael Ekstrand wrote: > On Sun, 2006-08-27 at 12:44 -0700, Sergei Steshenko wrote: > > > > --- Michael Ekstrand wrote: > > > > > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > > > This is your first error message: > > > > > > > > > > " > > > > > 84 > > > > > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > > > /include > > > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > > > src -g -O2 -MT > > > > > fcfreetype.l > > > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > > > .libs/fcfreetype.o > > > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > > > > > ". > > > > > > > > > > And it is exactly the same error message which caused me to file > > > > > already mentioned bug report: > > > > > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > > > . > > > > > > > > > > Did you read the bug report and did you compare my report with > > > > > your error message ? > > > > > > > > > > I have no idea how to fix this. > > > > > > It looks like a result of FreeType's housecleaning.. The latest > > > versions of freetype removed the public install of old internal headers, > > > which half the projects on the Internet (it seems) used. They were > > > never supposed to, but they did. Result: many packages are broken. > > > > Do your words in simple English mean that fontconfig folks release > > packages which can't compile ? > > > > That is, they release packages not even trying to compile them ? > > No. They release packages which use internal/experimental FreeType > headers, which up through 2.1, FreeType had installed. The FreeType > folks released these so developers could experiment with new features > and concepts, but never intended for the features to be used in released > code. With 2.2, they removed these headers, so that only the > documented, public API's are exposed. fontconfig used the old headers. > It will build fine with freetype 2.1.x, but not 2.2. fontconfig is > "broken" in that it uses internal/undocumented API's, but not "broken" > in the sense of them failing to test. The problem is fixed in > FontConfig 2.3.93 and later. > > The following page has all the details: > > http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html > > > > Installing an older freetype (2.1.x I believe) is an intermediate fix; > > > otherwise, there are patches from freetype's website for some packages, > > > and many packages have appropriate fixes already. > > > > Could you please be more specific about the patches ? I.e., could you please > > provide URLs to the patches ? > > URL above has a link to freetype's info and patch page. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > Michael, thanks for your reply. Maybe I miss simething, but it appears that your reply addresses a problem which is different from the one I had. If I understand correctly, the link you gave, i.e. http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html explains root causes and fixes of problems in libraries/applications which depend on fontconfig. The problem I reported, i.e. https://bugs.freedesktop.org/show_bug.cgi?id=7862 , is about fontconfig itself. I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, wont'c compile. Here is how the '#include ...' part of the file looks: " ... 47 #include 48 #include 49 #include 50 #include "fcint.h" 51 #include 52 #include FT_FREETYPE_H 53 #include FT_INTERNAL_OBJECTS_H 54 #include FT_TRUETYPE_TABLES_H 55 #include FT_SFNT_NAMES_H 56 #include FT_TRUETYPE_IDS_H 57 #include FT_TYPE1_TABLES_H 58 #include FT_INTERNAL_STREAM_H 59 #include FT_INTERNAL_SFNT_H 60 #include FT_INTERNAL_TRUETYPE_TYPES_H 61 #if HAVE_FT_GET_X11_FONT_FORMAT 62 #include FT_XFREE86_H 63 #endif 64 65 #if HAVE_FT_GET_BDF_PROPERTY 66 #include FT_BDF_H 67 #include FT_MODULE_H ... ". As one can see, in addition to traditional #include or # include "file" there are lines like these: 52 #include FT_FREETYPE_H 53 #include FT_INTERNAL_OBJECTS_H 54 #include FT_TRUETYPE_TABLES_H 55 #include FT_SFNT_NAMES_H 56 #include FT_TRUETYPE_IDS_H 57 #include FT_TYPE1_TABLES_H 58 #include FT_INTERNAL_STREAM_H 59 #include FT_INTERNAL_SFNT_H 60 #include FT_INTERNAL_TRUETYPE_TYPES_H 61 #if HAVE_FT_GET_X11_FONT_FORMAT 62 #include FT_XFREE86_H 63 #endif . These lines are peculiar in that they have neither '"', nor '<', '>' to enclose the file names, and gcc complains: fcfreetype.c:53:10: error: #include expects "FILENAME" or fcfreetype.c:58:10: error: #include expects "FILENAME" or fcfreetype.c:59:10: error: #include expects "FILENAME" or fcfreetype.c:60:10: error: #include expects "FILENAME" or . As I said, the problematic file is a part of fontcofig source tarball: fontconfig-2.3.2/src/fcfreetype.c - it is not a part of some other library or application that depends on fontconfig. The same is true for fontconfig-2.3.95, and the same problematic '#include ...' statements are present in fontconfig-2.3.95, though I haven't tried to compile it. The point of my https://bugs.freedesktop.org/show_bug.cgi?id=7862 bug report is that first and formost the fontconfig-2.3.2/src/fcfreetype.c file has wrong syntax, the wrongness being lack of '"' or '<', '>' to enclose the included file names. If you think I'm missing something, could you please explain what it is ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 17:51:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E5A453B00CA for ; Sun, 27 Aug 2006 17:51:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26383-07 for ; Sun, 27 Aug 2006 17:51:09 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id B67FD3B00D3 for ; Sun, 27 Aug 2006 17:51:08 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7RLp6Wf028568 for ; Sun, 27 Aug 2006 23:51:07 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id ED6BA23D5B; Sun, 27 Aug 2006 23:51:06 +0200 (CEST) Date: Sun, 27 Aug 2006 23:51:11 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060827215111.GA5721@potato.chello.upc.cz> References: <1156711263.18069.4.camel@bezalel.elehack.net> <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, UPPERCASE_25_50=0] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:51:11 -0000 On Sun, Aug 27, 2006 at 02:23:38PM -0700, Sergei Steshenko wrote: > > I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, > wont'c compile. > > Here is how the '#include ...' part of the file looks: > > > " > ... > 47 #include > 48 #include > 49 #include > 50 #include "fcint.h" > 51 #include > 52 #include FT_FREETYPE_H > 53 #include FT_INTERNAL_OBJECTS_H > 54 #include FT_TRUETYPE_TABLES_H > 55 #include FT_SFNT_NAMES_H > 56 #include FT_TRUETYPE_IDS_H > 57 #include FT_TYPE1_TABLES_H > 58 #include FT_INTERNAL_STREAM_H > 59 #include FT_INTERNAL_SFNT_H > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > 62 #include FT_XFREE86_H > 63 #endif > 64 > 65 #if HAVE_FT_GET_BDF_PROPERTY > 66 #include FT_BDF_H > 67 #include FT_MODULE_H > ... > ". > > As one can see, in addition to traditional > > #include > > or > > # include "file" > > there are lines like these: > > 52 #include FT_FREETYPE_H > 53 #include FT_INTERNAL_OBJECTS_H > 54 #include FT_TRUETYPE_TABLES_H > 55 #include FT_SFNT_NAMES_H > 56 #include FT_TRUETYPE_IDS_H > 57 #include FT_TYPE1_TABLES_H > 58 #include FT_INTERNAL_STREAM_H > 59 #include FT_INTERNAL_SFNT_H > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > 62 #include FT_XFREE86_H > 63 #endif > . > > These lines are peculiar in that they have neither '"', nor '<', '>' to > enclose the file names ISO C allows 1. #include 2. #include "localheader.h" 3. #include MACRO where MACRO has to -- after all expansions -- give one of the former two cases. The FT_* macros are defined in freetype/config/ftheader.h and freetype/internal/internal.h. Except that the internal headers no longer exist in FreeType 2.2+. Neither are defined the corresponding FT_INTERNAL_* macros. When a FT_* macro is undefined none of the cases 1.-3. occurs, the preprocessor sees literal #include FT_INTERNAL_OBJECTS_H and complains. Thus you get errors on lines correspoding to inclusion of internal headers (through FT_INTERNAL_* macros). Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sun Aug 27 18:13:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 49F4F3B0079 for ; Sun, 27 Aug 2006 18:13:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27595-10 for ; Sun, 27 Aug 2006 18:13:21 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id F1AF23B00D3 for ; Sun, 27 Aug 2006 18:13:19 -0400 (EDT) Received: (qmail 68978 invoked by uid 60001); 27 Aug 2006 22:13:19 -0000 Message-ID: <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35203.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 15:13:19 PDT Date: Sun, 27 Aug 2006 15:13:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060827215111.GA5721@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:13:22 -0000 --- David Neèas (Yeti) wrote: > On Sun, Aug 27, 2006 at 02:23:38PM -0700, Sergei Steshenko wrote: > > > > I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, > > wont'c compile. > > > > Here is how the '#include ...' part of the file looks: > > > > > > " > > ... > > 47 #include > > 48 #include > > 49 #include > > 50 #include "fcint.h" > > 51 #include > > 52 #include FT_FREETYPE_H > > 53 #include FT_INTERNAL_OBJECTS_H > > 54 #include FT_TRUETYPE_TABLES_H > > 55 #include FT_SFNT_NAMES_H > > 56 #include FT_TRUETYPE_IDS_H > > 57 #include FT_TYPE1_TABLES_H > > 58 #include FT_INTERNAL_STREAM_H > > 59 #include FT_INTERNAL_SFNT_H > > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > > 62 #include FT_XFREE86_H > > 63 #endif > > 64 > > 65 #if HAVE_FT_GET_BDF_PROPERTY > > 66 #include FT_BDF_H > > 67 #include FT_MODULE_H > > ... > > ". > > > > As one can see, in addition to traditional > > > > #include > > > > or > > > > # include "file" > > > > there are lines like these: > > > > 52 #include FT_FREETYPE_H > > 53 #include FT_INTERNAL_OBJECTS_H > > 54 #include FT_TRUETYPE_TABLES_H > > 55 #include FT_SFNT_NAMES_H > > 56 #include FT_TRUETYPE_IDS_H > > 57 #include FT_TYPE1_TABLES_H > > 58 #include FT_INTERNAL_STREAM_H > > 59 #include FT_INTERNAL_SFNT_H > > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > > 62 #include FT_XFREE86_H > > 63 #endif > > . > > > > These lines are peculiar in that they have neither '"', nor '<', '>' to > > enclose the file names > > ISO C allows > > 1. #include > 2. #include "localheader.h" > 3. #include MACRO > > where MACRO has to -- after all expansions -- give one of > the former two cases. The FT_* macros are defined in > freetype/config/ftheader.h and freetype/internal/internal.h. > > Except that the internal headers no longer exist in FreeType > 2.2+. Neither are defined the corresponding FT_INTERNAL_* > macros. When a FT_* macro is undefined none of the cases > 1.-3. occurs, the preprocessor sees literal > > #include FT_INTERNAL_OBJECTS_H > > and complains. Thus you get errors on lines correspoding to > inclusion of internal headers (through FT_INTERNAL_* > macros). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > David, thanks for your clarifications. I understand that macros are first expanded, and thus, if they expand to a legal construct, i.e. "filename" or , then the compiler will accept them. Now here are your statements in a rephrased form - correct me if I'm wrong 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or '<', '>' are meant to be macros; 2) the above macros used to be defined in freetype/config/ftheader.h freetype/internal/internal.h files; 3) the above .h files are not within the source tarball anymore - here is my check of this statement: " [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 -name "*.h" fontconfig-2.3.2/src/fcint.h fontconfig-2.3.2/fontconfig/fontconfig.h fontconfig-2.3.2/fontconfig/fcfreetype.h fontconfig-2.3.2/fontconfig/fcprivate.h fontconfig-2.3.2/fc-case/fccase.h fontconfig-2.3.2/fc-case/fccase.tmpl.h fontconfig-2.3.2/fc-lang/fclang.h fontconfig-2.3.2/fc-lang/fclang.tmpl.h fontconfig-2.3.2/fc-glyphname/fcglyphname.h fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> " - indeed they are not in the tarball. Now, taking your statement: " When a FT_* macro is undefined none of the cases 1.-3. occurs, the preprocessor sees literal #include FT_INTERNAL_OBJECTS_H and complains. Thus you get errors on lines correspoding to inclusion of internal headers (through FT_INTERNAL_* macros). " may I rephrase it this way: fontconfig-2.3.2.tar.gz can NOT be compiled because some header files (namely freetype/config/ftheader.h, freetype/internal/internal.h) are missing in it ? If so, is my earlier statement, that fontconfig released a tarball which can not be compiled, correct ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 18:38:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CE5B3B00BC for ; Sun, 27 Aug 2006 18:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28726-04 for ; Sun, 27 Aug 2006 18:37:58 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id D66D73B012B for ; Sun, 27 Aug 2006 18:37:55 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7RMbsG9008492 for ; Mon, 28 Aug 2006 00:37:55 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 2D53023D5D; Mon, 28 Aug 2006 00:37:54 +0200 (CEST) Date: Mon, 28 Aug 2006 00:37:59 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060827223759.GB5721@potato.chello.upc.cz> References: <20060827215111.GA5721@potato.chello.upc.cz> <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:38:03 -0000 On Sun, Aug 27, 2006 at 03:13:19PM -0700, Sergei Steshenko wrote: > > 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or > '<', '>' are meant to be macros; Correct. > 2) the above macros used to be defined in > > freetype/config/ftheader.h > freetype/internal/internal.h > > files; Correct. However, these are FreeType headers, not fontconfig headers. FreeType 2.2+ installs ftheader.h as usual, but it does not install internal.h any more. > 3) the above .h files are not within the source tarball anymore - here is > my check of this statement: > > " > [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 > -name "*.h" > fontconfig-2.3.2/src/fcint.h > fontconfig-2.3.2/fontconfig/fontconfig.h > fontconfig-2.3.2/fontconfig/fcfreetype.h > fontconfig-2.3.2/fontconfig/fcprivate.h > fontconfig-2.3.2/fc-case/fccase.h > fontconfig-2.3.2/fc-case/fccase.tmpl.h > fontconfig-2.3.2/fc-lang/fclang.h > fontconfig-2.3.2/fc-lang/fclang.tmpl.h > fontconfig-2.3.2/fc-glyphname/fcglyphname.h > fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h > [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> > " > > - indeed they are not in the tarball. Indeed they do not belong to *fontconfig* source tarball. > fontconfig-2.3.2.tar.gz can NOT be compiled because some header files > (namely freetype/config/ftheader.h, freetype/internal/internal.h) are > missing in it No; if you have FreeType installed, you have ftheader.h. But if it's version 2.2+ you do not have internal.h which fontconfig uses too and therefore it does not compile. Have you tried to apply http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch ? Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sun Aug 27 19:18:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFBC73B00C4 for ; Sun, 27 Aug 2006 19:18:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30383-02 for ; Sun, 27 Aug 2006 19:18:20 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 539103B0079 for ; Sun, 27 Aug 2006 19:18:20 -0400 (EDT) Received: (qmail 63030 invoked by uid 60001); 27 Aug 2006 23:18:19 -0000 Message-ID: <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35211.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 16:18:19 PDT Date: Sun, 27 Aug 2006 16:18:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060827223759.GB5721@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:18:21 -0000 --- David Neèas (Yeti) wrote: > On Sun, Aug 27, 2006 at 03:13:19PM -0700, Sergei Steshenko wrote: > > > > 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or > > '<', '>' are meant to be macros; > > Correct. > > > 2) the above macros used to be defined in > > > > freetype/config/ftheader.h > > freetype/internal/internal.h > > > > files; > > Correct. > > However, these are FreeType headers, not fontconfig headers. > FreeType 2.2+ installs ftheader.h as usual, but it does not > install internal.h any more. > > > 3) the above .h files are not within the source tarball anymore - here is > > my check of this statement: > > > > " > > [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 > > -name "*.h" > > fontconfig-2.3.2/src/fcint.h > > fontconfig-2.3.2/fontconfig/fontconfig.h > > fontconfig-2.3.2/fontconfig/fcfreetype.h > > fontconfig-2.3.2/fontconfig/fcprivate.h > > fontconfig-2.3.2/fc-case/fccase.h > > fontconfig-2.3.2/fc-case/fccase.tmpl.h > > fontconfig-2.3.2/fc-lang/fclang.h > > fontconfig-2.3.2/fc-lang/fclang.tmpl.h > > fontconfig-2.3.2/fc-glyphname/fcglyphname.h > > fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h > > [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> > > " > > > > - indeed they are not in the tarball. > > Indeed they do not belong to *fontconfig* source tarball. > > > fontconfig-2.3.2.tar.gz can NOT be compiled because some header files > > (namely freetype/config/ftheader.h, freetype/internal/internal.h) are > > missing in it > > No; if you have FreeType installed, you have ftheader.h. > But if it's version 2.2+ you do not have internal.h which > fontconfig uses too and therefore it does not compile. > > Have you tried to apply > > http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch > > ? > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I haven't yet tried http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch . But my point is this: 1) the world is a mess; 2) to deal with the above mess 'configure' (autoconf, automake) were invented; 3) 'configure' is supposed to check all prerequisites - if they are in place, 'configure' should complete successfully (0 exit status); 4) if 'configure' completes successfully, 'make' should just work. In this case ( https://bugs.freedesktop.org/show_bug.cgi?id=7862 ) 'configure' did complete successfully, but 'make' failed. So, that's why I consider this to be a bug. I.e., I'm taking a tarball, I run 'configure', 'configure' does not complain about anything, but 'make' fails. I didn't find anything in the tarball about patches. So, to me it looks like the fontconfig team released a tarball which can't be compiled using the documented by the fontconfig team way, which happens to be standard UNIX ./configure make make install way. Because the source can't be compiled using the documented by the authors' team way, it's a bug - rememebr, 'configure' does not complain and exists with 0 status. ... Regarding the http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch patch - it appears to affect these files: fcfreetype.c fcftglue.c fcftglue.h Makefile.am Makefile.in files. Because of Makefile.am, Makefile.in files - is it correct to assume that the patch should be applied before 'configure' is run ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 20:34:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3D1413B007F for ; Sun, 27 Aug 2006 20:34:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00819-06 for ; Sun, 27 Aug 2006 20:34:55 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id C2B0C3B0079 for ; Sun, 27 Aug 2006 20:34:54 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7S0Yqpn026767 for ; Mon, 28 Aug 2006 02:34:54 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id EB4D023D5D; Mon, 28 Aug 2006 02:34:52 +0200 (CEST) Date: Mon, 28 Aug 2006 02:34:58 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060828003458.GC5721@potato.chello.upc.cz> References: <20060827223759.GB5721@potato.chello.upc.cz> <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 00:34:57 -0000 On Sun, Aug 27, 2006 at 04:18:19PM -0700, Sergei Steshenko wrote: > But my point is this: > > 1) the world is a mess; Definitely. > 2) to deal with the above mess 'configure' (autoconf, automake) were invented; > 3) 'configure' is supposed to check all prerequisites - if they are in place, > 'configure' should complete successfully (0 exit status); > 4) if 'configure' completes successfully, 'make' should just work. This of course contradicts with point 1)... configure typically checks only for a minimum required version. It normally suffices because things are backward compatible. But since the world is a mess, newer versions sometimes break dependent programs too. Usually because the dependency and the dependent part do not agree on what compatible means, i.e., what exactly the interfaces are. > In this case ( https://bugs.freedesktop.org/show_bug.cgi?id=7862 ) > 'configure' did complete successfully, but 'make' failed. As explained above, below, and in the FreeType document referred earlier in this thread. > So, that's why I consider this to be a bug. I.e., I'm taking a tarball, I run > 'configure', 'configure' does not complain about anything, but 'make' fails. The bug is the use of internal FreeType headers. The bug has been fixed and recent fontconfig does not use them any more. > I didn't find anything in the tarball about patches. How can the fontconfig 2.3.2 tarball contain anything about patches fixing *future* issues? If they predicted the issues, they would fix the problems right away. Putting information about patches someone will make in the future to fix a problem that does not exist yet into the source tarball would be a bit strange. > So, to me it looks like the fontconfig team released a tarball which > can't be compiled using the documented by the fontconfig team way, No, you got it all wrong. Please read the FreeType document referred earlier in this thread. 1. FreeType used to install internal headers people were not expected to use in public libraries and programs. 2. However people -- among them fontconfig people -- did use the internal headers. 3. At the time the fontconfig tarball was made, it compiled fine with the supported versions of FreeType. 4. FreeType people realized everyone and his dog uses the internal headers they should not use in public, and removed them. 5. Now old fontconfig does not build with new FreeType. Quite obviously, the old fontconfig does not contain any check for too new FreeType, because if its developers expected future FreeType to remove the headers they would not use them in the first place. > Because the source can't be compiled using the documented by the authors' team > way, it's a bug - rememebr, 'configure' does not complain and exists with > 0 status. Even if there was a zillion of bugs, to fix them in an already released version you would need a time machine. Therefore version 2.3.2 will continue to contain the bug. A newer version fixing the problems was already released. A patch for the old version exists too. What else do you want? > Regarding the > > http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch > > patch - it appears to affect these files: > > fcfreetype.c > fcftglue.c > fcftglue.h > Makefile.am > Makefile.in > > files. > > Because of Makefile.am, Makefile.in files - is it correct to assume that the patch > should be applied before 'configure' is run ? Of course. In fact, since it patches Makefile.am, the question should be `is it necessary to re-run automake?' Fortunately it consistently patches Makefile.am and Makefile.in therefore configure is enough. Yeti -- Anonyms eat their boogers. From o@sadglad.com Mon Aug 28 09:13:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C06A3B00F1 for ; Mon, 28 Aug 2006 09:13:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03800-04 for ; Mon, 28 Aug 2006 09:13:40 -0400 (EDT) Received: from mtaout5.barak.net.il (mtaout5.barak.net.il [212.150.49.175]) by menubar.gnome.org (Postfix) with ESMTP id 8B5773B00BA for ; Mon, 28 Aug 2006 09:13:39 -0400 (EDT) Received: from oded ([212.143.99.21]) by mtaout5.barak.net.il (Sun Java System Messaging Server 6.2-6.02 (built Apr 25 2006)) with ESMTPA id <0J4P009A3M2PKOG0@mtaout5.barak.net.il> for gtk-list@gnome.org; Mon, 28 Aug 2006 16:13:38 +0300 (IDT) Date: Mon, 28 Aug 2006 16:13:54 +0200 From: oded Subject: problem with modify_fg To: gtk-list@gnome.org Message-id: <002d01c6caac$324869f0$5c01a8c0@oded> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 X-Mailer: Microsoft Outlook Express 6.00.2900.2670 Content-type: text/plain; format=flowed; charset=windows-1255; reply-type=original Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.001 tagged_above=-999 required=2 tests=[BAYES_50=0.001] X-Spam-Score: 0.001 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 13:13:41 -0000 Hello, I am using Gtkmm, and I am new to it and to Gtk. I'v got a Gtk::Label widget, and I'm trying to change it's forground color, but it remain black. Here is the code where I try to change the color of the widget, which has been inilized earlier in the program, and has already been displayed. Gdk::Color color; color.set_rgb(0,0,255); m_label->modify_fg(Gtk::STATE_NORMAL, color); m_label->modify_fg(Gtk::STATE_ACTIVE, color); m_label->modify_fg(Gtk::STATE_INSENSITIVE, color); m_label->modify_fg(Gtk::STATE_PRELIGHT, color); m_label->modify_fg(Gtk::STATE_SELECTED, color); Thanks, Oded. From kereoz@yahoo.fr Mon Aug 28 10:36:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2D2823B000C for ; Mon, 28 Aug 2006 10:36:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08667-05 for ; Mon, 28 Aug 2006 10:36:18 -0400 (EDT) Received: from web25908.mail.ukl.yahoo.com (web25908.mail.ukl.yahoo.com [217.12.10.206]) by menubar.gnome.org (Postfix) with SMTP id 270F93B0018 for ; Mon, 28 Aug 2006 10:36:18 -0400 (EDT) Received: (qmail 21055 invoked by uid 60001); 28 Aug 2006 14:36:17 -0000 Message-ID: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> Received: from [194.2.163.124] by web25908.mail.ukl.yahoo.com via HTTP; Mon, 28 Aug 2006 16:36:17 CEST Date: Mon, 28 Aug 2006 16:36:17 +0200 (CEST) From: Christophe HAUSER Subject: Mouse cursor To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.166 tagged_above=-999 required=2 tests=[AWL=-0.981, BAYES_40=-0.185] X-Spam-Score: -1.166 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:36:22 -0000 Hello, I would like to hide the mouse cursor in my GTK application, but I can't find any related function. Christophe HAUSER http://kereoz.sup.fr p4.vert.ukl.yahoo.com uncompressed/chunked Mon Aug 28 14:13:45 GMT 2006 ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From tvb@gnome.org Mon Aug 28 10:42:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2950F3B006A for ; Mon, 28 Aug 2006 10:42:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09153-05 for ; Mon, 28 Aug 2006 10:42:16 -0400 (EDT) Received: from mail.touchtunes.com (mail.touchtunes.com [207.96.182.162]) by menubar.gnome.org (Postfix) with ESMTP id 0C2783B0018 for ; Mon, 28 Aug 2006 10:42:16 -0400 (EDT) Received: from [192.168.0.138] (unknown [192.168.0.138]) by mail.touchtunes.com (Postfix) with ESMTP id 3BA0715A71; Mon, 28 Aug 2006 10:42:11 -0400 (EDT) Message-ID: <44F30323.2060300@gnome.org> Date: Mon, 28 Aug 2006 10:52:19 -0400 From: Tristan Van Berkom User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christophe HAUSER Subject: Re: Mouse cursor References: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> In-Reply-To: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:42:17 -0000 Christophe HAUSER wrote: > Hello, > > I would like to hide the mouse cursor in my GTK > application, but I can't find any related function. > You can set the cursor graphic to a transperent png, setting the cursor is GdkWindow specific. http://developer.gnome.org/doc/API/2.0/gdk/gdk-Cursors.html Cheers, -Tristan From kereoz@yahoo.fr Mon Aug 28 10:51:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D77A53B0097 for ; Mon, 28 Aug 2006 10:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09432-07 for ; Mon, 28 Aug 2006 10:51:10 -0400 (EDT) Received: from web25915.mail.ukl.yahoo.com (web25915.mail.ukl.yahoo.com [217.146.176.253]) by menubar.gnome.org (Postfix) with SMTP id B1F5D3B00D1 for ; Mon, 28 Aug 2006 10:51:09 -0400 (EDT) Received: (qmail 275 invoked by uid 60001); 28 Aug 2006 14:51:08 -0000 Message-ID: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> Received: from [194.2.163.124] by web25915.mail.ukl.yahoo.com via HTTP; Mon, 28 Aug 2006 16:51:08 CEST Date: Mon, 28 Aug 2006 16:51:08 +0200 (CEST) From: Christophe HAUSER Subject: Focus To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.364 tagged_above=-999 required=2 tests=[AWL=0.235, BAYES_00=-2.599] X-Spam-Score: -2.364 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:51:12 -0000 I also would like to set the focus on one widget into the Window. How should I do ? Thanks, Christophe HAUSER http://kereoz.sup.fr p5.vert.ukl.yahoo.com uncompressed/chunked Mon Aug 28 11:13:44 GMT 2006 ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From tvb@gnome.org Mon Aug 28 11:03:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DA97C3B0132 for ; Mon, 28 Aug 2006 11:03:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10335-01 for ; Mon, 28 Aug 2006 11:03:27 -0400 (EDT) Received: from mail.touchtunes.com (mail.touchtunes.com [207.96.182.162]) by menubar.gnome.org (Postfix) with ESMTP id 9A37A3B0018 for ; Mon, 28 Aug 2006 11:03:24 -0400 (EDT) Received: from [192.168.0.138] (unknown [192.168.0.138]) by mail.touchtunes.com (Postfix) with ESMTP id 50C1B15A30; Mon, 28 Aug 2006 11:03:20 -0400 (EDT) Message-ID: <44F30818.8000801@gnome.org> Date: Mon, 28 Aug 2006 11:13:28 -0400 From: Tristan Van Berkom User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christophe HAUSER Subject: Re: Focus References: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> In-Reply-To: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:03:28 -0000 Christophe HAUSER wrote: > I also would like to set the focus on one widget into > the Window. > How should I do ? You should go here: http://developer.gnome.org/doc/API/2.0/gtk/ix01.html search for the keyword "focus" - tab down till you find the right one - so that others dont have to do it for you :) Cheers, -Tristan From billcu1@verizon.net Fri Aug 25 07:30:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 534CE3B0098 for ; Fri, 25 Aug 2006 07:30:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17601-07 for ; Fri, 25 Aug 2006 07:30:01 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id CD1B13B008D for ; Fri, 25 Aug 2006 07:29:59 -0400 (EDT) Received: from win98 ([141.153.25.143]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4J001RFX9P5OP3@vms046.mailsrvcs.net> for gtk-list@gnome.org; Fri, 25 Aug 2006 06:29:50 -0500 (CDT) Date: Fri, 25 Aug 2006 07:28:09 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000501c6c839$8c31c1c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.723 tagged_above=-999 required=2 tests=[AWL=1.184, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_BJ=0.077, TW_PG=0.077, TW_XL=0.077] X-Spam-Score: 0.723 X-Spam-Level: X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:08 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 11:30:06 -0000 I hope this log helps explain error to others. It involves some library file. ---------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.59. Invocation command line was $ ./configure --with-expat-includes=/usr/local/include --with-expat-lib=/usr/l ocal/lib ## --------- ## ## Platform. ## ## --------- ## hostname = localhost.localdomain uname -m = i686 uname -r = 2.2.16-22 uname -s = Linux uname -v = #1 Tue Aug 22 16:49:06 EDT 2000 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = i686 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1549: checking for a BSD-compatible install configure:1604: result: /usr/bin/install -c configure:1615: checking whether build environment is sane configure:1658: result: yes configure:1691: checking for gawk configure:1707: found /bin/gawk configure:1717: result: gawk configure:1727: checking whether make sets $(MAKE) configure:1747: result: yes configure:1911: checking whether to enable maintainer-specific portions of Makefiles configure:1920: result: no configure:1999: checking for gcc configure:2015: found /usr/bin/gcc configure:2025: result: gcc configure:2269: checking for C compiler version configure:2272: gcc --version &5 gcc (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2275: $? = 0 configure:2277: gcc -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=/opt/usr Thread model: posix gcc version 3.4.6 configure:2280: $? = 0 configure:2282: gcc -V &5 gcc: `-V' option must have argument configure:2285: $? = 1 configure:2308: checking for C compiler default output file name configure:2311: gcc conftest.c >&5 configure:2314: $? = 0 configure:2360: result: a.out configure:2365: checking whether the C compiler works configure:2371: ./a.out configure:2374: $? = 0 configure:2391: result: yes configure:2398: checking whether we are cross compiling configure:2400: result: no configure:2403: checking for suffix of executables configure:2405: gcc -o conftest conftest.c >&5 configure:2408: $? = 0 configure:2433: result: configure:2439: checking for suffix of object files configure:2460: gcc -c conftest.c >&5 configure:2463: $? = 0 configure:2485: result: o configure:2489: checking whether we are using the GNU C compiler configure:2513: gcc -c conftest.c >&5 configure:2519: $? = 0 configure:2522: test -z || test ! -s conftest.err configure:2525: $? = 0 configure:2528: test -s conftest.o configure:2531: $? = 0 configure:2544: result: yes configure:2550: checking whether gcc accepts -g configure:2571: gcc -c -g conftest.c >&5 configure:2577: $? = 0 configure:2580: test -z || test ! -s conftest.err configure:2583: $? = 0 configure:2586: test -s conftest.o configure:2589: $? = 0 configure:2600: result: yes configure:2617: checking for gcc option to accept ANSI C configure:2687: gcc -c -g -O2 conftest.c >&5 configure:2693: $? = 0 configure:2696: test -z || test ! -s conftest.err configure:2699: $? = 0 configure:2702: test -s conftest.o configure:2705: $? = 0 configure:2723: result: none needed configure:2741: gcc -c -g -O2 conftest.c >&5 conftest.c:2: error: syntax error before "me" configure:2747: $? = 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:2888: checking for style of include used by make configure:2916: result: GNU configure:2944: checking dependency style of gcc configure:3027: result: gcc3 configure:3057: checking for a BSD-compatible install configure:3112: result: /usr/bin/install -c configure:3123: checking whether ln -s works configure:3127: result: yes configure:3214: checking build system type configure:3232: result: i686-pc-linux-gnu configure:3240: checking host system type configure:3254: result: i686-pc-linux-gnu configure:3262: checking for a sed that does not truncate output configure:3316: result: /bin/sed configure:3319: checking for egrep configure:3329: result: grep -E configure:3345: checking for ld used by gcc configure:3412: result: /usr/bin/ld configure:3421: checking if the linker (/usr/bin/ld) is GNU ld configure:3436: result: yes configure:3441: checking for /usr/bin/ld option to reload object files configure:3448: result: -r configure:3457: checking for BSD-compatible nm configure:3499: result: /usr/bin/nm -B configure:3503: checking how to recognise dependent libraries configure:3677: result: pass_all configure:4132: checking how to run the C preprocessor configure:4167: gcc -E conftest.c configure:4173: $? = 0 configure:4205: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4211: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4250: result: gcc -E configure:4274: gcc -E conftest.c configure:4280: $? = 0 configure:4312: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4318: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4362: checking for ANSI C header files configure:4387: gcc -c -g -O2 conftest.c >&5 configure:4393: $? = 0 configure:4396: test -z || test ! -s conftest.err configure:4399: $? = 0 configure:4402: test -s conftest.o configure:4405: $? = 0 configure:4491: gcc -o conftest -g -O2 conftest.c >&5 configure:4494: $? = 0 configure:4496: ./conftest configure:4499: $? = 0 configure:4514: result: yes configure:4538: checking for sys/types.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for sys/stat.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for stdlib.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for string.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for memory.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for strings.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for inttypes.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for stdint.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for unistd.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4609: checking dlfcn.h usability configure:4621: gcc -c -g -O2 conftest.c >&5 configure:4627: $? = 0 configure:4630: test -z || test ! -s conftest.err configure:4633: $? = 0 configure:4636: test -s conftest.o configure:4639: $? = 0 configure:4649: result: yes configure:4653: checking dlfcn.h presence configure:4663: gcc -E conftest.c configure:4669: $? = 0 configure:4689: result: yes configure:4724: checking for dlfcn.h configure:4731: result: yes configure:4796: checking for g++ configure:4812: found /usr/bin/g++ configure:4822: result: g++ configure:4838: checking for C++ compiler version configure:4841: g++ --version &5 g++ (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4844: $? = 0 configure:4846: g++ -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=/opt/usr Thread model: posix gcc version 3.4.6 configure:4849: $? = 0 configure:4851: g++ -V &5 g++: `-V' option must have argument configure:4854: $? = 1 configure:4857: checking whether we are using the GNU C++ compiler configure:4881: g++ -c conftest.cc >&5 configure:4887: $? = 0 configure:4890: test -z || test ! -s conftest.err configure:4893: $? = 0 configure:4896: test -s conftest.o configure:4899: $? = 0 configure:4912: result: yes configure:4918: checking whether g++ accepts -g configure:4939: g++ -c -g conftest.cc >&5 configure:4945: $? = 0 configure:4948: test -z || test ! -s conftest.err configure:4951: $? = 0 configure:4954: test -s conftest.o configure:4957: $? = 0 configure:4968: result: yes configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? = 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? = 0 configure:5025: test -s conftest.o configure:5028: $? = 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 conftest.cc: In function `int main()': conftest.cc:26: error: `exit' was not declared in this scope configure:5060: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | | int | main () | { | exit (42); | ; | return 0; | } configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? = 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? = 0 configure:5025: test -s conftest.o configure:5028: $? = 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 configure:5060: $? = 0 configure:5063: test -z || test ! -s conftest.err configure:5066: $? = 0 configure:5069: test -s conftest.o configure:5072: $? = 0 configure:5097: checking dependency style of g++ configure:5180: result: gcc3 configure:5202: checking how to run the C++ preprocessor configure:5233: g++ -E conftest.cc configure:5239: $? = 0 configure:5271: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5277: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5316: result: g++ -E configure:5340: g++ -E conftest.cc configure:5346: $? = 0 configure:5378: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5384: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5479: checking for g77 configure:5508: result: no configure:5479: checking for f77 configure:5508: result: no configure:5479: checking for xlf configure:5508: result: no configure:5479: checking for frt configure:5508: result: no configure:5479: checking for pgf77 configure:5508: result: no configure:5479: checking for fort77 configure:5508: result: no configure:5479: checking for fl32 configure:5508: result: no configure:5479: checking for af77 configure:5508: result: no configure:5479: checking for f90 configure:5508: result: no configure:5479: checking for xlf90 configure:5508: result: no configure:5479: checking for pgf90 configure:5508: result: no configure:5479: checking for epcf90 configure:5508: result: no configure:5479: checking for f95 configure:5508: result: no configure:5479: checking for fort configure:5508: result: no configure:5479: checking for xlf95 configure:5508: result: no configure:5479: checking for ifc configure:5508: result: no configure:5479: checking for efc configure:5508: result: no configure:5479: checking for pgf95 configure:5508: result: no configure:5479: checking for lf95 configure:5508: result: no configure:5479: checking for gfortran configure:5508: result: no configure:5523: checking for Fortran 77 compiler version configure:5523: --version &5 ./configure: --version: command not found configure:5526: $? = 127 configure:5528: -v &5 ./configure: -v: command not found configure:5531: $? = 127 configure:5533: -V &5 ./configure: -V: command not found configure:5536: $? = 127 configure:5544: checking whether we are using the GNU Fortran 77 compiler configure:5558: -c conftest.F >&5 ./configure: -c: command not found configure:5564: $? = 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif | | end configure:5589: result: no configure:5595: checking whether accepts -g configure:5607: -c -g conftest.f >&5 ./configure: -c: command not found configure:5613: $? = 127 configure: failed program was: | program main | | end configure:5637: result: no configure:5667: checking the maximum length of command line arguments configure:5732: result: 32768 configure:5743: checking command to parse /usr/bin/nm -B output from gcc object configure:5832: gcc -c -g -O2 conftest.c >&5 configure:5835: $? = 0 configure:5839: /usr/bin/nm -B conftest.o \| sed -n -e s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\ )$/\1 \2\3 \3/p' \> conftest.nm configure:5842: $? = 0 configure:5894: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5897: $? = 0 configure:5935: result: ok configure:5939: checking for objdir configure:5954: result: .libs configure:6044: checking for ar configure:6060: found /usr/bin/ar configure:6071: result: ar configure:6124: checking for ranlib configure:6140: found /usr/bin/ranlib configure:6151: result: ranlib configure:6204: checking for strip configure:6220: found /usr/bin/strip configure:6231: result: strip configure:6493: checking if gcc static flag works configure:6516: result: yes configure:6534: checking if gcc supports -fno-rtti -fno-exceptions configure:6555: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:6559: $? = 0 configure:6567: result: no configure:6582: checking for gcc option to produce PIC configure:6759: result: -fPIC configure:6767: checking if gcc PIC flag -fPIC works configure:6788: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 configure:6792: $? = 0 configure:6800: result: yes configure:6824: checking if gcc supports -c -o file.o configure:6848: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:6852: $? = 0 configure:6869: result: yes configure:6895: checking whether the gcc linker (/usr/bin/ld) supports shared libraries configure:7742: result: yes configure:7768: checking whether -lc should be explicitly linked in configure:7773: gcc -c -g -O2 conftest.c >&5 configure:7776: $? = 0 configure:7790: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:7793: $? = 0 configure:7805: result: no configure:7813: checking dynamic linker characteristics configure:8353: result: GNU/Linux ld.so configure:8357: checking how to hardcode library paths into programs configure:8382: result: immediate configure:8396: checking whether stripping libraries is possible configure:8401: result: yes configure:9224: checking if libtool supports shared libraries configure:9226: result: yes configure:9229: checking whether to build shared libraries configure:9287: result: yes configure:9290: checking whether to build static libraries configure:9294: result: yes configure:9386: creating libtool configure:9933: checking for ld used by g++ configure:10000: result: /usr/bin/ld configure:10009: checking if the linker (/usr/bin/ld) is GNU ld configure:10024: result: yes configure:10075: checking whether the g++ linker (/usr/bin/ld) supports shared libraries configure:10901: result: yes configure:10919: g++ -c -g -O2 conftest.cc >&5 configure:10922: $? = 0 configure:11018: checking for g++ option to produce PIC configure:11270: result: -fPIC configure:11278: checking if g++ PIC flag -fPIC works configure:11299: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5 configure:11303: $? = 0 configure:11311: result: yes configure:11335: checking if g++ supports -c -o file.o configure:11359: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5 configure:11363: $? = 0 configure:11380: result: yes configure:11406: checking whether the g++ linker (/usr/bin/ld) supports shar ed libraries configure:11434: result: yes configure:11505: checking dynamic linker characteristics configure:12045: result: GNU/Linux ld.so configure:12049: checking how to hardcode library paths into programs configure:12074: result: immediate configure:12088: checking whether stripping libraries is possible configure:12093: result: yes configure:19312: checking whether make sets $(MAKE) configure:19332: result: yes configure:19420: checking for dirent.h that defines DIR configure:19444: gcc -c -g -O2 conftest.c >&5 configure:19450: $? = 0 configure:19453: test -z || test ! -s conftest.err configure:19456: $? = 0 configure:19459: test -s conftest.o configure:19462: $? = 0 configure:19473: result: yes configure:19486: checking for library containing opendir configure:19516: gcc -o conftest -g -O2 conftest.c >&5 configure:19522: $? = 0 configure:19525: test -z || test ! -s conftest.err configure:19528: $? = 0 configure:19531: test -s conftest configure:19534: $? = 0 configure:19603: result: none required configure:19737: checking for ANSI C header files configure:19889: result: yes configure:19916: checking fcntl.h usability configure:19928: gcc -c -g -O2 conftest.c >&5 configure:19934: $? = 0 configure:19937: test -z || test ! -s conftest.err configure:19940: $? = 0 configure:19943: test -s conftest.o configure:19946: $? = 0 configure:19956: result: yes configure:19960: checking fcntl.h presence configure:19970: gcc -E conftest.c configure:19976: $? = 0 configure:19996: result: yes configure:20031: checking for fcntl.h configure:20038: result: yes configure:19907: checking for stdlib.h configure:19912: result: yes configure:19907: checking for string.h configure:19912: result: yes configure:19907: checking for unistd.h configure:19912: result: yes configure:20053: checking for an ANSI C-conforming const configure:20120: gcc -c -g -O2 conftest.c >&5 configure:20126: $? = 0 configure:20129: test -z || test ! -s conftest.err configure:20132: $? = 0 configure:20135: test -s conftest.o configure:20138: $? = 0 configure:20149: result: yes configure:20159: checking for pid_t configure:20183: gcc -c -g -O2 conftest.c >&5 configure:20189: $? = 0 configure:20192: test -z || test ! -s conftest.err configure:20195: $? = 0 configure:20198: test -s conftest.o configure:20201: $? = 0 configure:20212: result: yes configure:20230: checking for vprintf configure:20287: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:55: warning: conflicting types for built-in function 'vprintf' configure:20293: $? = 0 configure:20296: test -z || test ! -s conftest.err configure:20299: $? = 0 configure:20302: test -s conftest configure:20305: $? = 0 configure:20317: result: yes configure:20324: checking for _doprnt configure:20381: gcc -o conftest -g -O2 conftest.c >&5 /tmp/ccwoMPei.o: In function `main': /fontconfig-2.2.3/conftest.c:72: undefined reference to `_doprnt' /tmp/ccwoMPei.o:(.data+0x0): undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:20387: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _doprnt | | /* Override any gcc2 internal prototype to avoid an error. */ | #ifdef __cplusplus | extern "C" | { | #endif | /* We use char because int might match the return type of a gcc2 | builtin and then its argument prototype would still apply. */ | char _doprnt (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined (__stub__doprnt) || defined (__stub____doprnt) | choke me | #else | char (*f) () = _doprnt; | #endif | #ifdef __cplusplus | } | #endif | | int | main () | { | return f != _doprnt; | ; | return 0; | } configure:20411: result: no configure:20439: checking for geteuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for link configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for memmove configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:59: warning: conflicting types for built-in function 'memmove' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for memset configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:60: warning: conflicting types for built-in function 'memset' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for mkstemp configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:62: warning: conflicting types for built-in function 'strchr' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strrchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:63: warning: conflicting types for built-in function 'strrchr' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strtol configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getopt configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getopt_long configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20553: checking for freetype-config configure:20571: found /usr/local/bin/freetype-config configure:20584: result: /usr/local/bin/freetype-config configure:20620: checking for FT_Get_First_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20620: checking for FT_Get_Next_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20620: checking for FT_Get_BDF_Property configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20717: checking for FT_Bitmap_Size.y_ppem configure:20742: gcc -c -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c >&5 configure:20748: $? = 0 configure:20751: test -z || test ! -s conftest.err configure:20754: $? = 0 configure:20757: test -s conftest.o configure:20760: $? = 0 configure:20818: result: yes configure:20908: checking expat.h usability configure:20920: gcc -c -g -O2 -I/usr/local/include conftest.c >&5 configure:20926: $? = 0 configure:20929: test -z || test ! -s conftest.err configure:20932: $? = 0 configure:20935: test -s conftest.o configure:20938: $? = 0 configure:20948: result: yes configure:20952: checking expat.h presence configure:20962: gcc -E -I/usr/local/include conftest.c configure:20968: $? = 0 configure:20988: result: yes configure:21023: checking for expat.h configure:21030: result: yes configure:21205: checking for XML_ParserCreate configure:21262: gcc -o conftest -g -O2 -I/usr/local/include conftest.c -L/usr/local/lib -lexpat >&5 configure:21268: $? = 0 configure:21271: test -z || test ! -s conftest.err configure:21274: $? = 0 configure:21277: test -s conftest configure:21280: $? = 0 configure:21292: result: yes configure:21492: checking for docbook2html configure:21519: result: no configure:21716: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on localhost.localdomain config.status:799: creating Makefile config.status:799: creating fontconfig/Makefile config.status:799: creating fc-lang/Makefile config.status:799: creating src/Makefile config.status:799: creating src/fontconfig.def config.status:799: creating fc-cache/Makefile config.status:799: creating fc-list/Makefile config.status:799: creating doc/Makefile config.status:799: creating doc/version.sgml config.status:799: creating test/Makefile config.status:799: creating fontconfig.spec config.status:799: creating fontconfig.pc config.status:799: creating fonts.conf config.status:799: creating fontconfig-zip config.status:865: creating config.h config.status:1225: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_build_alias=i686-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_F77_set= ac_cv_env_F77_value= ac_cv_env_FFLAGS_set= ac_cv_env_FFLAGS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_exeext= ac_cv_f77_compiler_gnu=no ac_cv_func_FT_Get_BDF_Property=yes ac_cv_func_FT_Get_First_Char=yes ac_cv_func_FT_Get_Next_Char=yes ac_cv_func_XML_ParserCreate=yes ac_cv_func__doprnt=no ac_cv_func_geteuid=yes ac_cv_func_getopt=yes ac_cv_func_getopt_long=yes ac_cv_func_getuid=yes ac_cv_func_link=yes ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_mkstemp=yes ac_cv_func_strchr=yes ac_cv_func_strrchr=yes ac_cv_func_strtol=yes ac_cv_func_vprintf=yes ac_cv_header_dirent_dirent_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_expat_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=i686-pc-linux-gnu ac_cv_host_alias=i686-pc-linux-gnu ac_cv_member_FT_Bitmap_Size_y_ppem=yes ac_cv_objext=o ac_cv_path_ft_config=/usr/local/bin/freetype-config ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_HASDOCBOOK=no ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc= ac_cv_prog_cxx_g=yes ac_cv_prog_egrep='grep -E' ac_cv_prog_f77_g=no ac_cv_prog_make_make_set=yes ac_cv_search_opendir='none required' ac_cv_type_pid_t=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_SED=/bin/sed lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sys_global_symbol_pipe='sed -n -e \''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9 ]*\)$/\1 \2\3 \3/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' lt_cv_sys_max_cmd_len=32768 lt_lt_cv_prog_compiler_c_o='"yes"' lt_lt_cv_prog_compiler_c_o_CXX='"yes"' lt_lt_cv_sys_global_symbol_pipe='"sed -n -e \''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za -z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /fontconfig-2.2.3/missing --run aclocal-1.7' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /fontconfig-2.2.3/missing --run tar' AR='ar' AS='as' AUTOCONF='${SHELL} /fontconfig-2.2.3/missing --run autoconf' AUTOHEADER='${SHELL} /fontconfig-2.2.3/missing --run autoheader' AUTOMAKE='${SHELL} /fontconfig-2.2.3/missing --run automake-1.7' AWK='gawk' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CONFDIR='${sysconfdir}/fonts' CPP='gcc -E' CPPFLAGS='' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='dlltool' DOCDIR='${datadir}/doc/fontconfig' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='grep -E' ENABLE_DOCS_FALSE='' ENABLE_DOCS_TRUE='#' EXEEXT='' EXPAT_CFLAGS='-I/usr/local/include' EXPAT_LIBS='-L/usr/local/lib -lexpat' F77='' FC_ADD_FONTS='' FC_DEFAULT_FONTS='/usr/share/fonts' FC_FONTDATE='Fri Aug 25 07:21:39 EDT 2006' FC_FONTPATH='' FFLAGS='' FREETYPE_CFLAGS='-I/usr/local/include/freetype2 -I/usr/local/include' FREETYPE_LIBS='-L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -l z' HASDOCBOOK='no' HAVE_EXPAT='1' HAVE_XMLPARSE_H='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LN_S='ln -s' LTLIBOBJS='' LT_CURRENT='1' LT_CURRENT_MINUS_AGE='1' LT_REVISION='4' LT_VERSION_INFO='1:4:0' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /fontconfig-2.2.3/missing --run makeinfo' MS_LIB_AVAILABLE_FALSE='' MS_LIB_AVAILABLE_TRUE='#' OBJDUMP='objdump' OBJEXT='o' ORTH_FILES='aa.orth ab.orth af.orth am.orth ar.orth ast.orth ava.orth ay.orth az.orth ba.orth bam.orth be.orth bg.orth bh.orth bho.orth bi.orth bin.orth bn.orth bo.orth br.orth bs.orth bua.orth ca.orth ce.orth ch.orth chm.orth chr.orth co.orth cs.orth cu.orth cv.orth cy.orth da.orth de.orth dz.orth el.orth en.orth eo.orth es.orth et.orth eu.orth fa.orth fi.orth fj.orth fo.orth fr.orth ful.orth fur.orth fy.orth ga.orth gd.orth gez.orth gl.orth gn.orth gu.orth gv.orth ha.orth haw.orth he.orth hi.orth ho.orth hr.orth hu.orth hy.orth ia.orth ibo.orth id.orth ie.orth ik.orth io.orth is.orth it.orth iu.orth ja.orth ka.orth kaa.orth ki.orth kk.orth kl.orth km.orth kn.orth ko.orth kok.orth ks.orth ku.orth kum.orth kv.orth kw.orth ky.orth la.orth lb.orth lez.orth lo.orth lt.orth lv.orth mg.orth mh.orth mi.orth mk.orth ml.orth mn.orth mo.orth mr.orth mt.orth my.orth nb.orth ne.orth nl.orth nn.orth no.orth ny.orth oc.orth om.orth or.orth os.orth pl.orth pt.orth rm.orth ro.orth ru.orth sa.orth sah.orth sco.orth se.orth sel.orth sh.orth si.orth sk.orth sl.orth sm.orth sma.orth smj.orth smn.orth sms.orth so.orth sq.orth sr.orth sv.orth sw.orth syr.orth ta.orth te.orth tg.orth th.orth ti_er.orth ti_et.orth tig.orth tk.orth tl.orth tn.orth to.orth tr.orth ts.orth tt.orth tw.orth tyv.orth ug.orth uk.orth ur.orth uz.orth ven.orth vi.orth vo.orth vot.orth wa.orth wen.orth wo.orth xh.orth yap.orth yi.orth yo.orth zh_cn.orth zh_hk.orth zh_mo.orth zh_sg.orth zh_tw.orth zu.orth' OS_WIN32_FALSE='' OS_WIN32_TRUE='#' PACKAGE='fontconfig' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' RANLIB='ranlib' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='2.2.3' ac_ct_AR='ar' ac_ct_AS='' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_DLLTOOL='' ac_ct_F77='' ac_ct_OBJDUMP='' ac_ct_RANLIB='ranlib' ac_ct_STRIP='strip' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__leading_dot='.' am__quote='' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' confdir='${sysconfdir}/fonts' datadir='${prefix}/share' exec_prefix='${prefix}' ft_config='/usr/local/bin/freetype-config' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' includedir='${prefix}/include' infodir='${prefix}/info' install_sh='/fontconfig-2.2.3/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localstatedir='${prefix}/var' mandir='${prefix}/man' ms_librarian='' oldincludedir='/usr/include' prefix='/usr/local' program_transform_name='s,x,x,' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define CONFDIR "${sysconfdir}/fonts" #define FC_ADD_FONTS "yes" #define FC_DEFAULT_FONTS "/usr/share/fonts" #define HAVE_DIRENT_H 1 #define HAVE_DLFCN_H 1 #define HAVE_EXPAT 1 #define HAVE_FCNTL_H 1 #define HAVE_FT_BITMAP_SIZE_Y_PPEM 1 #define HAVE_FT_GET_BDF_PROPERTY 1 #define HAVE_FT_GET_FIRST_CHAR 1 #define HAVE_FT_GET_NEXT_CHAR 1 #define HAVE_GETEUID 1 #define HAVE_GETOPT 1 #define HAVE_GETOPT_LONG 1 #define HAVE_GETUID 1 #define HAVE_INTTYPES_H 1 #define HAVE_LINK 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMORY_H 1 #define HAVE_MEMSET 1 #define HAVE_MKSTEMP 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRCHR 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_STRING_H 1 #define HAVE_STRRCHR 1 #define HAVE_STRTOL 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UNISTD_H 1 #define HAVE_VPRINTF 1 #define HAVE_XML_PARSERCREATE 1 #define PACKAGE "fontconfig" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define STDC_HEADERS 1 #define STDC_HEADERS 1 #define VERSION "2.2.3" #endif #ifdef __cplusplus extern "C" void std::exit (int) throw (); using std::exit; configure: exit 0 From bounces@nabble.com Sat Aug 26 07:36:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 39EDA3B00A1 for ; Sat, 26 Aug 2006 07:36:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12918-03 for ; Sat, 26 Aug 2006 07:36:11 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 4F7213B024F for ; Sat, 26 Aug 2006 07:31:49 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GGwOC-00077F-Iu for gtk-list@gnome.org; Sat, 26 Aug 2006 04:31:48 -0700 Message-ID: <5996953.post@talk.nabble.com> Date: Sat, 26 Aug 2006 04:31:48 -0700 (PDT) From: Tintin72 To: gtk-list@gnome.org Subject: GTK window and DLL ? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:08 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 11:36:22 -0000 Hi all, I'd like to associate a GTK window with a dll under Windows XP. What I want to do is that the GTK window retrieves the messages emited from the dll. I wrote (just for testing) a dll wich start a timer and send a message to the host window (my GTK window in this case) each second . I know I have to use the gdk_window_add_filter function, but I don 't know how to translate my GTK window to a Windows handle (HWND) and get an ID in order to receive the messages from the dll. I found a macro in the gdkwin32.h file that would be able to do the job: /* Translate from drawable to Windows handle */ 064 HGDIOBJ gdk_win32_drawable_get_handle (GdkDrawable *drawable); but it doesn't work. Here is some parts of my code: in the main function: HWND hWnd; hWnd = (HWND)gdk_win32_drawable_get_handle(myApp.pWin->window); gdk_window_add_filter(myApp.pWin->window, msgFunc, &myApp); timer(hWnd); //start the timer and my filter function: GdkFilterReturn msgFunc (GdkXEvent *xevent,GdkEvent *event, gpointer userData) { APPLICATION *pApp = (APPLICATION*)userData; MSG *WndMsg = (MSG*) xevent; if(WndMsg->message == DLL_MSG) { addText(pApp->pDrawArea, "DLL Message!", userData); //Display text each time a message is sent } return GDK_FILTER_CONTINUE; } it seems that the GTK window doesn't receive any messages from the dll. Can somebody help me ? Thanks for advance -- View this message in context: http://www.nabble.com/GTK-window-and-DLL---tf2168964.html#a5996953 Sent from the Gtk+ - General forum at Nabble.com. From billcu1@verizon.net Sat Aug 26 17:36:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0C63B0078 for ; Sat, 26 Aug 2006 17:36:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04662-09 for ; Sat, 26 Aug 2006 17:36:06 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id F39393B0071 for ; Sat, 26 Aug 2006 17:36:05 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00F2GK03BUV2@vms040.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 16:36:05 -0500 (CDT) Date: Sat, 26 Aug 2006 17:34:22 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c957$65f79560$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C935.DE3E1CA0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.731 tagged_above=-999 required=2 tests=[AWL=-0.177, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.731 X-Spam-Level: * X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:09 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:36:07 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C935.DE3E1CA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit hope this att answers some questions ------=_NextPart_000_0007_01C6C935.DE3E1CA0 Content-Type: application/octet-stream; name="Config.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.59. Invocation command line was $ ./configure --disable-win32 = --with-expat-includes=3D/usr/local/include = --with-expat-lib=3D/usr/local/lib ## --------- ## ## Platform. ## ## --------- ## hostname =3D localhost.localdomain uname -m =3D i686 uname -r =3D 2.2.16-22 uname -s =3D Linux uname -v =3D #1 Tue Aug 22 16:49:06 EDT 2000 /usr/bin/uname -p =3D unknown /bin/uname -X =3D unknown /bin/arch =3D i686 /usr/bin/arch -k =3D unknown /usr/convex/getsysinfo =3D unknown hostinfo =3D unknown /bin/machine =3D unknown /usr/bin/oslevel =3D unknown /bin/universe =3D unknown PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1549: checking for a BSD-compatible install configure:1604: result: /usr/bin/install -c configure:1615: checking whether build environment is sane configure:1658: result: yes configure:1691: checking for gawk configure:1707: found /bin/gawk configure:1717: result: gawk configure:1727: checking whether make sets $(MAKE) configure:1747: result: yes configure:1911: checking whether to enable maintainer-specific portions = of Makefiles configure:1920: result: no configure:1999: checking for gcc configure:2015: found /usr/bin/gcc configure:2025: result: gcc configure:2269: checking for C compiler version configure:2272: gcc --version &5 gcc (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is = NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR = PURPOSE. configure:2275: $? =3D 0 configure:2277: gcc -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=3D/opt/usr Thread model: posix gcc version 3.4.6 configure:2280: $? =3D 0 configure:2282: gcc -V &5 gcc: `-V' option must have argument configure:2285: $? =3D 1 configure:2308: checking for C compiler default output file name configure:2311: gcc conftest.c >&5 configure:2314: $? =3D 0 configure:2360: result: a.out configure:2365: checking whether the C compiler works configure:2371: ./a.out configure:2374: $? =3D 0 configure:2391: result: yes configure:2398: checking whether we are cross compiling configure:2400: result: no configure:2403: checking for suffix of executables configure:2405: gcc -o conftest conftest.c >&5 configure:2408: $? =3D 0 configure:2433: result:=20 configure:2439: checking for suffix of object files configure:2460: gcc -c conftest.c >&5 configure:2463: $? =3D 0 configure:2485: result: o configure:2489: checking whether we are using the GNU C compiler configure:2513: gcc -c conftest.c >&5 configure:2519: $? =3D 0 configure:2522: test -z || test ! -s conftest.err configure:2525: $? =3D 0 configure:2528: test -s conftest.o configure:2531: $? =3D 0 configure:2544: result: yes configure:2550: checking whether gcc accepts -g configure:2571: gcc -c -g conftest.c >&5 configure:2577: $? =3D 0 configure:2580: test -z || test ! -s conftest.err configure:2583: $? =3D 0 configure:2586: test -s conftest.o configure:2589: $? =3D 0 configure:2600: result: yes configure:2617: checking for gcc option to accept ANSI C configure:2687: gcc -c -g -O2 conftest.c >&5 configure:2693: $? =3D 0 configure:2696: test -z || test ! -s conftest.err configure:2699: $? =3D 0 configure:2702: test -s conftest.o configure:2705: $? =3D 0 configure:2723: result: none needed configure:2741: gcc -c -g -O2 conftest.c >&5 conftest.c:2: error: syntax error before "me" configure:2747: $? =3D 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:2888: checking for style of include used by make configure:2916: result: GNU configure:2944: checking dependency style of gcc configure:3027: result: gcc3 configure:3057: checking for a BSD-compatible install configure:3112: result: /usr/bin/install -c configure:3123: checking whether ln -s works configure:3127: result: yes configure:3214: checking build system type configure:3232: result: i686-pc-linux-gnu configure:3240: checking host system type configure:3254: result: i686-pc-linux-gnu configure:3262: checking for a sed that does not truncate output configure:3316: result: /bin/sed configure:3319: checking for egrep configure:3329: result: grep -E configure:3345: checking for ld used by gcc configure:3412: result: /usr/bin/ld configure:3421: checking if the linker (/usr/bin/ld) is GNU ld configure:3436: result: yes configure:3441: checking for /usr/bin/ld option to reload object files configure:3448: result: -r configure:3457: checking for BSD-compatible nm configure:3499: result: /usr/bin/nm -B configure:3503: checking how to recognise dependent libraries configure:3677: result: pass_all configure:4132: checking how to run the C preprocessor configure:4167: gcc -E conftest.c configure:4173: $? =3D 0 configure:4205: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4211: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4250: result: gcc -E configure:4274: gcc -E conftest.c configure:4280: $? =3D 0 configure:4312: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4318: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4362: checking for ANSI C header files configure:4387: gcc -c -g -O2 conftest.c >&5 configure:4393: $? =3D 0 configure:4396: test -z || test ! -s conftest.err configure:4399: $? =3D 0 configure:4402: test -s conftest.o configure:4405: $? =3D 0 configure:4491: gcc -o conftest -g -O2 conftest.c >&5 configure:4494: $? =3D 0 configure:4496: ./conftest configure:4499: $? =3D 0 configure:4514: result: yes configure:4538: checking for sys/types.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for sys/stat.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for stdlib.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for string.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for memory.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for strings.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for inttypes.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for stdint.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for unistd.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4609: checking dlfcn.h usability configure:4621: gcc -c -g -O2 conftest.c >&5 configure:4627: $? =3D 0 configure:4630: test -z || test ! -s conftest.err configure:4633: $? =3D 0 configure:4636: test -s conftest.o configure:4639: $? =3D 0 configure:4649: result: yes configure:4653: checking dlfcn.h presence configure:4663: gcc -E conftest.c configure:4669: $? =3D 0 configure:4689: result: yes configure:4724: checking for dlfcn.h configure:4731: result: yes configure:4796: checking for g++ configure:4812: found /usr/bin/g++ configure:4822: result: g++ configure:4838: checking for C++ compiler version configure:4841: g++ --version &5 g++ (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is = NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR = PURPOSE. configure:4844: $? =3D 0 configure:4846: g++ -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=3D/opt/usr Thread model: posix gcc version 3.4.6 configure:4849: $? =3D 0 configure:4851: g++ -V &5 g++: `-V' option must have argument configure:4854: $? =3D 1 configure:4857: checking whether we are using the GNU C++ compiler configure:4881: g++ -c conftest.cc >&5 configure:4887: $? =3D 0 configure:4890: test -z || test ! -s conftest.err configure:4893: $? =3D 0 configure:4896: test -s conftest.o configure:4899: $? =3D 0 configure:4912: result: yes configure:4918: checking whether g++ accepts -g configure:4939: g++ -c -g conftest.cc >&5 configure:4945: $? =3D 0 configure:4948: test -z || test ! -s conftest.err configure:4951: $? =3D 0 configure:4954: test -s conftest.o configure:4957: $? =3D 0 configure:4968: result: yes configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? =3D 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? =3D 0 configure:5025: test -s conftest.o configure:5028: $? =3D 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 conftest.cc: In function `int main()': conftest.cc:26: error: `exit' was not declared in this scope configure:5060: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ |=20 | int | main () | { | exit (42); | ; | return 0; | } configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? =3D 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? =3D 0 configure:5025: test -s conftest.o configure:5028: $? =3D 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 configure:5060: $? =3D 0 configure:5063: test -z || test ! -s conftest.err configure:5066: $? =3D 0 configure:5069: test -s conftest.o configure:5072: $? =3D 0 configure:5097: checking dependency style of g++ configure:5180: result: gcc3 configure:5202: checking how to run the C++ preprocessor configure:5233: g++ -E conftest.cc configure:5239: $? =3D 0 configure:5271: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5277: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5316: result: g++ -E configure:5340: g++ -E conftest.cc configure:5346: $? =3D 0 configure:5378: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5384: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5479: checking for g77 configure:5508: result: no configure:5479: checking for f77 configure:5508: result: no configure:5479: checking for xlf configure:5508: result: no configure:5479: checking for frt configure:5508: result: no configure:5479: checking for pgf77 configure:5508: result: no configure:5479: checking for fort77 configure:5508: result: no configure:5479: checking for fl32 configure:5508: result: no configure:5479: checking for af77 configure:5508: result: no configure:5479: checking for f90 configure:5508: result: no configure:5479: checking for xlf90 configure:5508: result: no configure:5479: checking for pgf90 configure:5508: result: no configure:5479: checking for epcf90 configure:5508: result: no configure:5479: checking for f95 configure:5508: result: no configure:5479: checking for fort configure:5508: result: no configure:5479: checking for xlf95 configure:5508: result: no configure:5479: checking for ifc configure:5508: result: no configure:5479: checking for efc configure:5508: result: no configure:5479: checking for pgf95 configure:5508: result: no configure:5479: checking for lf95 configure:5508: result: no configure:5479: checking for gfortran configure:5508: result: no configure:5523: checking for Fortran 77 compiler version configure:5523: --version &5 ./configure: --version: command not found configure:5526: $? =3D 127 configure:5528: -v &5 ./configure: -v: command not found configure:5531: $? =3D 127 configure:5533: -V &5 ./configure: -V: command not found configure:5536: $? =3D 127 configure:5544: checking whether we are using the GNU Fortran 77 = compiler configure:5558: -c conftest.F >&5 ./configure: -c: command not found configure:5564: $? =3D 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif |=20 | end configure:5589: result: no configure:5595: checking whether accepts -g configure:5607: -c -g conftest.f >&5 ./configure: -c: command not found configure:5613: $? =3D 127 configure: failed program was: | program main |=20 | end configure:5637: result: no configure:5667: checking the maximum length of command line arguments configure:5732: result: 32768 configure:5743: checking command to parse /usr/bin/nm -B output from gcc = object configure:5832: gcc -c -g -O2 conftest.c >&5 configure:5835: $? =3D 0 configure:5839: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ = ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ = ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm configure:5842: $? =3D 0 configure:5894: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5897: $? =3D 0 configure:5935: result: ok configure:5939: checking for objdir configure:5954: result: .libs configure:6044: checking for ar configure:6060: found /usr/bin/ar configure:6071: result: ar configure:6124: checking for ranlib configure:6140: found /usr/bin/ranlib configure:6151: result: ranlib configure:6204: checking for strip configure:6220: found /usr/bin/strip configure:6231: result: strip configure:6493: checking if gcc static flag works configure:6516: result: yes configure:6534: checking if gcc supports -fno-rtti -fno-exceptions configure:6555: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ = but not for C configure:6559: $? =3D 0 configure:6567: result: no configure:6582: checking for gcc option to produce PIC configure:6759: result: -fPIC configure:6767: checking if gcc PIC flag -fPIC works configure:6788: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 configure:6792: $? =3D 0 configure:6800: result: yes configure:6824: checking if gcc supports -c -o file.o configure:6848: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:6852: $? =3D 0 configure:6869: result: yes configure:6895: checking whether the gcc linker (/usr/bin/ld) supports = shared libraries configure:7742: result: yes configure:7768: checking whether -lc should be explicitly linked in configure:7773: gcc -c -g -O2 conftest.c >&5 configure:7776: $? =3D 0 configure:7790: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o = conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:7793: $? =3D 0 configure:7805: result: no configure:7813: checking dynamic linker characteristics configure:8353: result: GNU/Linux ld.so configure:8357: checking how to hardcode library paths into programs configure:8382: result: immediate configure:8396: checking whether stripping libraries is possible configure:8401: result: yes configure:9224: checking if libtool supports shared libraries configure:9226: result: yes configure:9229: checking whether to build shared libraries configure:9287: result: yes configure:9290: checking whether to build static libraries configure:9294: result: yes configure:9386: creating libtool configure:9933: checking for ld used by g++ configure:10000: result: /usr/bin/ld configure:10009: checking if the linker (/usr/bin/ld) is GNU ld configure:10024: result: yes configure:10075: checking whether the g++ linker (/usr/bin/ld) supports = shared libraries configure:10901: result: yes configure:10919: g++ -c -g -O2 conftest.cc >&5 configure:10922: $? =3D 0 configure:11018: checking for g++ option to produce PIC configure:11270: result: -fPIC configure:11278: checking if g++ PIC flag -fPIC works configure:11299: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5 configure:11303: $? =3D 0 configure:11311: result: yes configure:11335: checking if g++ supports -c -o file.o configure:11359: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5 configure:11363: $? =3D 0 configure:11380: result: yes configure:11406: checking whether the g++ linker (/usr/bin/ld) supports = shared libraries configure:11434: result: yes configure:11505: checking dynamic linker characteristics configure:12045: result: GNU/Linux ld.so configure:12049: checking how to hardcode library paths into programs configure:12074: result: immediate configure:12088: checking whether stripping libraries is possible configure:12093: result: yes configure:19312: checking whether make sets $(MAKE) configure:19332: result: yes configure:19420: checking for dirent.h that defines DIR configure:19444: gcc -c -g -O2 conftest.c >&5 configure:19450: $? =3D 0 configure:19453: test -z || test ! -s conftest.err configure:19456: $? =3D 0 configure:19459: test -s conftest.o configure:19462: $? =3D 0 configure:19473: result: yes configure:19486: checking for library containing opendir configure:19516: gcc -o conftest -g -O2 conftest.c >&5 configure:19522: $? =3D 0 configure:19525: test -z || test ! -s conftest.err configure:19528: $? =3D 0 configure:19531: test -s conftest configure:19534: $? =3D 0 configure:19603: result: none required configure:19737: checking for ANSI C header files configure:19889: result: yes configure:19916: checking fcntl.h usability configure:19928: gcc -c -g -O2 conftest.c >&5 configure:19934: $? =3D 0 configure:19937: test -z || test ! -s conftest.err configure:19940: $? =3D 0 configure:19943: test -s conftest.o configure:19946: $? =3D 0 configure:19956: result: yes configure:19960: checking fcntl.h presence configure:19970: gcc -E conftest.c configure:19976: $? =3D 0 configure:19996: result: yes configure:20031: checking for fcntl.h configure:20038: result: yes configure:19907: checking for stdlib.h configure:19912: result: yes configure:19907: checking for string.h configure:19912: result: yes configure:19907: checking for unistd.h configure:19912: result: yes configure:20053: checking for an ANSI C-conforming const configure:20120: gcc -c -g -O2 conftest.c >&5 configure:20126: $? =3D 0 configure:20129: test -z || test ! -s conftest.err configure:20132: $? =3D 0 configure:20135: test -s conftest.o configure:20138: $? =3D 0 configure:20149: result: yes configure:20159: checking for pid_t configure:20183: gcc -c -g -O2 conftest.c >&5 configure:20189: $? =3D 0 configure:20192: test -z || test ! -s conftest.err configure:20195: $? =3D 0 configure:20198: test -s conftest.o configure:20201: $? =3D 0 configure:20212: result: yes configure:20230: checking for vprintf configure:20287: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:55: warning: conflicting types for built-in function = 'vprintf' configure:20293: $? =3D 0 configure:20296: test -z || test ! -s conftest.err configure:20299: $? =3D 0 configure:20302: test -s conftest configure:20305: $? =3D 0 configure:20317: result: yes configure:20324: checking for _doprnt configure:20381: gcc -o conftest -g -O2 conftest.c >&5 /tmp/ccM04MxO.o: In function `main': /fontconfig-2.2.3/conftest.c:72: undefined reference to `_doprnt' /tmp/ccM04MxO.o:(.data+0x0): undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:20387: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares = _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt |=20 | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ |=20 | #ifdef __STDC__ | # include | #else | # include | #endif |=20 | #undef _doprnt |=20 | /* Override any gcc2 internal prototype to avoid an error. */ | #ifdef __cplusplus | extern "C" | { | #endif | /* We use char because int might match the return type of a gcc2 | builtin and then its argument prototype would still apply. */ | char _doprnt (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined (__stub__doprnt) || defined (__stub____doprnt) | choke me | #else | char (*f) () =3D _doprnt; | #endif | #ifdef __cplusplus | } | #endif |=20 | int | main () | { | return f !=3D _doprnt; | ; | return 0; | } configure:20411: result: no configure:20439: checking for geteuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for link configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for memmove configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:59: warning: conflicting types for built-in function = 'memmove' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for memset configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:60: warning: conflicting types for built-in function 'memset' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for mkstemp configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:62: warning: conflicting types for built-in function 'strchr' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strrchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:63: warning: conflicting types for built-in function = 'strrchr' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strtol configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getopt configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getopt_long configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20553: checking for freetype-config configure:20571: found /usr/local/bin/freetype-config configure:20584: result: /usr/local/bin/freetype-config configure:20620: checking for FT_Get_First_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20620: checking for FT_Get_Next_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20620: checking for FT_Get_BDF_Property configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20717: checking for FT_Bitmap_Size.y_ppem configure:20742: gcc -c -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c >&5 configure:20748: $? =3D 0 configure:20751: test -z || test ! -s conftest.err configure:20754: $? =3D 0 configure:20757: test -s conftest.o configure:20760: $? =3D 0 configure:20818: result: yes configure:20908: checking expat.h usability configure:20920: gcc -c -g -O2 -I/usr/local/include conftest.c >&5 configure:20926: $? =3D 0 configure:20929: test -z || test ! -s conftest.err configure:20932: $? =3D 0 configure:20935: test -s conftest.o configure:20938: $? =3D 0 configure:20948: result: yes configure:20952: checking expat.h presence configure:20962: gcc -E -I/usr/local/include conftest.c configure:20968: $? =3D 0 configure:20988: result: yes configure:21023: checking for expat.h configure:21030: result: yes configure:21205: checking for XML_ParserCreate configure:21262: gcc -o conftest -g -O2 -I/usr/local/include = conftest.c -L/usr/local/lib -lexpat >&5 configure:21268: $? =3D 0 configure:21271: test -z || test ! -s conftest.err configure:21274: $? =3D 0 configure:21277: test -s conftest configure:21280: $? =3D 0 configure:21292: result: yes configure:21492: checking for docbook2html configure:21519: result: no configure:21716: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES =3D=20 CONFIG_HEADERS =3D=20 CONFIG_LINKS =3D=20 CONFIG_COMMANDS =3D=20 $ ./config.status=20 on localhost.localdomain config.status:799: creating Makefile config.status:799: creating fontconfig/Makefile config.status:799: creating fc-lang/Makefile config.status:799: creating src/Makefile config.status:799: creating src/fontconfig.def config.status:799: creating fc-cache/Makefile config.status:799: creating fc-list/Makefile config.status:799: creating doc/Makefile config.status:799: creating doc/version.sgml config.status:799: creating test/Makefile config.status:799: creating fontconfig.spec config.status:799: creating fontconfig.pc config.status:799: creating fonts.conf config.status:799: creating fontconfig-zip config.status:865: creating config.h config.status:1225: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=3Di686-pc-linux-gnu ac_cv_build_alias=3Di686-pc-linux-gnu ac_cv_c_compiler_gnu=3Dyes ac_cv_c_const=3Dyes ac_cv_cxx_compiler_gnu=3Dyes ac_cv_env_CC_set=3D ac_cv_env_CC_value=3D ac_cv_env_CFLAGS_set=3D ac_cv_env_CFLAGS_value=3D ac_cv_env_CPPFLAGS_set=3D ac_cv_env_CPPFLAGS_value=3D ac_cv_env_CPP_set=3D ac_cv_env_CPP_value=3D ac_cv_env_CXXCPP_set=3D ac_cv_env_CXXCPP_value=3D ac_cv_env_CXXFLAGS_set=3D ac_cv_env_CXXFLAGS_value=3D ac_cv_env_CXX_set=3D ac_cv_env_CXX_value=3D ac_cv_env_F77_set=3D ac_cv_env_F77_value=3D ac_cv_env_FFLAGS_set=3D ac_cv_env_FFLAGS_value=3D ac_cv_env_LDFLAGS_set=3D ac_cv_env_LDFLAGS_value=3D ac_cv_env_build_alias_set=3D ac_cv_env_build_alias_value=3D ac_cv_env_host_alias_set=3D ac_cv_env_host_alias_value=3D ac_cv_env_target_alias_set=3D ac_cv_env_target_alias_value=3D ac_cv_exeext=3D ac_cv_f77_compiler_gnu=3Dno ac_cv_func_FT_Get_BDF_Property=3Dyes ac_cv_func_FT_Get_First_Char=3Dyes ac_cv_func_FT_Get_Next_Char=3Dyes ac_cv_func_XML_ParserCreate=3Dyes ac_cv_func__doprnt=3Dno ac_cv_func_geteuid=3Dyes ac_cv_func_getopt=3Dyes ac_cv_func_getopt_long=3Dyes ac_cv_func_getuid=3Dyes ac_cv_func_link=3Dyes ac_cv_func_memmove=3Dyes ac_cv_func_memset=3Dyes ac_cv_func_mkstemp=3Dyes ac_cv_func_strchr=3Dyes ac_cv_func_strrchr=3Dyes ac_cv_func_strtol=3Dyes ac_cv_func_vprintf=3Dyes ac_cv_header_dirent_dirent_h=3Dyes ac_cv_header_dlfcn_h=3Dyes ac_cv_header_expat_h=3Dyes ac_cv_header_fcntl_h=3Dyes ac_cv_header_inttypes_h=3Dyes ac_cv_header_memory_h=3Dyes ac_cv_header_stdc=3Dyes ac_cv_header_stdint_h=3Dyes ac_cv_header_stdlib_h=3Dyes ac_cv_header_string_h=3Dyes ac_cv_header_strings_h=3Dyes ac_cv_header_sys_stat_h=3Dyes ac_cv_header_sys_types_h=3Dyes ac_cv_header_unistd_h=3Dyes ac_cv_host=3Di686-pc-linux-gnu ac_cv_host_alias=3Di686-pc-linux-gnu ac_cv_member_FT_Bitmap_Size_y_ppem=3Dyes ac_cv_objext=3Do ac_cv_path_ft_config=3D/usr/local/bin/freetype-config ac_cv_path_install=3D'/usr/bin/install -c' ac_cv_prog_AWK=3Dgawk ac_cv_prog_CPP=3D'gcc -E' ac_cv_prog_CXXCPP=3D'g++ -E' ac_cv_prog_HASDOCBOOK=3Dno ac_cv_prog_ac_ct_AR=3Dar ac_cv_prog_ac_ct_CC=3Dgcc ac_cv_prog_ac_ct_CXX=3Dg++ ac_cv_prog_ac_ct_RANLIB=3Dranlib ac_cv_prog_ac_ct_STRIP=3Dstrip ac_cv_prog_cc_g=3Dyes ac_cv_prog_cc_stdc=3D ac_cv_prog_cxx_g=3Dyes ac_cv_prog_egrep=3D'grep -E' ac_cv_prog_f77_g=3Dno ac_cv_prog_make_make_set=3Dyes ac_cv_search_opendir=3D'none required' ac_cv_type_pid_t=3Dyes am_cv_CC_dependencies_compiler_type=3Dgcc3 am_cv_CXX_dependencies_compiler_type=3Dgcc3 lt_cv_deplibs_check_method=3Dpass_all lt_cv_file_magic_cmd=3D'$MAGIC_CMD' lt_cv_file_magic_test_file=3D lt_cv_ld_reload_flag=3D-r lt_cv_objdir=3D.libs lt_cv_path_LD=3D/usr/bin/ld lt_cv_path_LDCXX=3D/usr/bin/ld lt_cv_path_NM=3D'/usr/bin/nm -B' lt_cv_path_SED=3D/bin/sed lt_cv_prog_compiler_c_o=3Dyes lt_cv_prog_compiler_c_o_CXX=3Dyes lt_cv_prog_compiler_rtti_exceptions=3Dno lt_cv_prog_gnu_ld=3Dyes lt_cv_prog_gnu_ldcxx=3Dyes lt_cv_sys_global_symbol_pipe=3D'sed -n -e '\''s/^.*[ = ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ = ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\''' lt_cv_sys_global_symbol_to_c_name_address=3D'sed -n -e '\''s/^: \([^ = ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ = ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl=3D'sed -n -e '\''s/^. .* \(.*\)$/extern = int \1;/p'\''' lt_cv_sys_max_cmd_len=3D32768 lt_lt_cv_prog_compiler_c_o=3D'"yes"' lt_lt_cv_prog_compiler_c_o_CXX=3D'"yes"' lt_lt_cv_sys_global_symbol_pipe=3D'"sed -n -e '\''s/^.*[ = ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ = ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address=3D'"sed -n -e '\''s/^: = \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] = \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl=3D'"sed -n -e '\''s/^. .* = \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL=3D'${SHELL} /fontconfig-2.2.3/missing --run aclocal-1.7' AMDEPBACKSLASH=3D'\' AMDEP_FALSE=3D'#' AMDEP_TRUE=3D'' AMTAR=3D'${SHELL} /fontconfig-2.2.3/missing --run tar' AR=3D'ar' AS=3D'as' AUTOCONF=3D'${SHELL} /fontconfig-2.2.3/missing --run autoconf' AUTOHEADER=3D'${SHELL} /fontconfig-2.2.3/missing --run autoheader' AUTOMAKE=3D'${SHELL} /fontconfig-2.2.3/missing --run automake-1.7' AWK=3D'gawk' CC=3D'gcc' CCDEPMODE=3D'depmode=3Dgcc3' CFLAGS=3D'-g -O2' CONFDIR=3D'${sysconfdir}/fonts' CPP=3D'gcc -E' CPPFLAGS=3D'' CXX=3D'g++' CXXCPP=3D'g++ -E' CXXDEPMODE=3D'depmode=3Dgcc3' CXXFLAGS=3D'-g -O2' CYGPATH_W=3D'echo' DEFS=3D'-DHAVE_CONFIG_H' DEPDIR=3D'.deps' DLLTOOL=3D'dlltool' DOCDIR=3D'${datadir}/doc/fontconfig' ECHO=3D'echo' ECHO_C=3D'' ECHO_N=3D'-n' ECHO_T=3D'' EGREP=3D'grep -E' ENABLE_DOCS_FALSE=3D'' ENABLE_DOCS_TRUE=3D'#' EXEEXT=3D'' EXPAT_CFLAGS=3D'-I/usr/local/include' EXPAT_LIBS=3D'-L/usr/local/lib -lexpat' F77=3D'' FC_ADD_FONTS=3D'' FC_DEFAULT_FONTS=3D'/usr/share/fonts' FC_FONTDATE=3D'Sat Aug 26 17:23:30 EDT 2006' FC_FONTPATH=3D'' FFLAGS=3D'' FREETYPE_CFLAGS=3D'-I/usr/local/include/freetype2 -I/usr/local/include' FREETYPE_LIBS=3D'-L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib = -lfreetype -lz' HASDOCBOOK=3D'no' HAVE_EXPAT=3D'1' HAVE_XMLPARSE_H=3D'' INSTALL_DATA=3D'${INSTALL} -m 644' INSTALL_PROGRAM=3D'${INSTALL}' INSTALL_SCRIPT=3D'${INSTALL}' INSTALL_STRIP_PROGRAM=3D'${SHELL} $(install_sh) -c -s' LDFLAGS=3D'' LIBOBJS=3D'' LIBS=3D'' LIBTOOL=3D'$(SHELL) $(top_builddir)/libtool' LN_S=3D'ln -s' LTLIBOBJS=3D'' LT_CURRENT=3D'1' LT_CURRENT_MINUS_AGE=3D'1' LT_REVISION=3D'4' LT_VERSION_INFO=3D'1:4:0' MAINT=3D'#' MAINTAINER_MODE_FALSE=3D'' MAINTAINER_MODE_TRUE=3D'#' MAKEINFO=3D'${SHELL} /fontconfig-2.2.3/missing --run makeinfo' MS_LIB_AVAILABLE_FALSE=3D'' MS_LIB_AVAILABLE_TRUE=3D'#' OBJDUMP=3D'objdump' OBJEXT=3D'o' ORTH_FILES=3D'aa.orth ab.orth af.orth am.orth ar.orth ast.orth ava.orth = ay.orth az.orth ba.orth bam.orth be.orth bg.orth bh.orth bho.orth = bi.orth bin.orth bn.orth bo.orth br.orth bs.orth bua.orth ca.orth = ce.orth ch.orth chm.orth chr.orth co.orth cs.orth cu.orth cv.orth = cy.orth da.orth de.orth dz.orth el.orth en.orth eo.orth es.orth et.orth = eu.orth fa.orth fi.orth fj.orth fo.orth fr.orth ful.orth fur.orth = fy.orth ga.orth gd.orth gez.orth gl.orth gn.orth gu.orth gv.orth ha.orth = haw.orth he.orth hi.orth ho.orth hr.orth hu.orth hy.orth ia.orth = ibo.orth id.orth ie.orth ik.orth io.orth is.orth it.orth iu.orth ja.orth = ka.orth kaa.orth ki.orth kk.orth kl.orth km.orth kn.orth ko.orth = kok.orth ks.orth ku.orth kum.orth kv.orth kw.orth ky.orth la.orth = lb.orth lez.orth lo.orth lt.orth lv.orth mg.orth mh.orth mi.orth mk.orth = ml.orth mn.orth mo.orth mr.orth mt.orth my.orth nb.orth ne.orth nl.orth = nn.orth no.orth ny.orth oc.orth om.orth or.orth os.orth pl.orth pt.orth = rm.orth ro.orth ru.orth sa.orth sah.orth sco.orth se.orth sel.orth = sh.orth si.orth sk.orth sl.orth sm.orth sma.orth smj.orth smn.orth = sms.orth so.orth sq.orth sr.orth sv.orth sw.orth syr.orth ta.orth = te.orth tg.orth th.orth ti_er.orth ti_et.orth tig.orth tk.orth tl.orth = tn.orth to.orth tr.orth ts.orth tt.orth tw.orth tyv.orth ug.orth uk.orth = ur.orth uz.orth ven.orth vi.orth vo.orth vot.orth wa.orth wen.orth = wo.orth xh.orth yap.orth yi.orth yo.orth zh_cn.orth zh_hk.orth = zh_mo.orth zh_sg.orth zh_tw.orth zu.orth' OS_WIN32_FALSE=3D'' OS_WIN32_TRUE=3D'#' PACKAGE=3D'fontconfig' PACKAGE_BUGREPORT=3D'' PACKAGE_NAME=3D'' PACKAGE_STRING=3D'' PACKAGE_TARNAME=3D'' PACKAGE_VERSION=3D'' PATH_SEPARATOR=3D':' RANLIB=3D'ranlib' SET_MAKE=3D'' SHELL=3D'/bin/sh' STRIP=3D'strip' VERSION=3D'2.2.3' ac_ct_AR=3D'ar' ac_ct_AS=3D'' ac_ct_CC=3D'gcc' ac_ct_CXX=3D'g++' ac_ct_DLLTOOL=3D'' ac_ct_F77=3D'' ac_ct_OBJDUMP=3D'' ac_ct_RANLIB=3D'ranlib' ac_ct_STRIP=3D'strip' am__fastdepCC_FALSE=3D'#' am__fastdepCC_TRUE=3D'' am__fastdepCXX_FALSE=3D'#' am__fastdepCXX_TRUE=3D'' am__include=3D'include' am__leading_dot=3D'.' am__quote=3D'' bindir=3D'${exec_prefix}/bin' build=3D'i686-pc-linux-gnu' build_alias=3D'' build_cpu=3D'i686' build_os=3D'linux-gnu' build_vendor=3D'pc' confdir=3D'${sysconfdir}/fonts' datadir=3D'${prefix}/share' exec_prefix=3D'${prefix}' ft_config=3D'/usr/local/bin/freetype-config' host=3D'i686-pc-linux-gnu' host_alias=3D'' host_cpu=3D'i686' host_os=3D'linux-gnu' host_vendor=3D'pc' includedir=3D'${prefix}/include' infodir=3D'${prefix}/info' install_sh=3D'/fontconfig-2.2.3/install-sh' libdir=3D'${exec_prefix}/lib' libexecdir=3D'${exec_prefix}/libexec' localstatedir=3D'${prefix}/var' mandir=3D'${prefix}/man' ms_librarian=3D'' oldincludedir=3D'/usr/include' prefix=3D'/usr/local' program_transform_name=3D's,x,x,' sbindir=3D'${exec_prefix}/sbin' sharedstatedir=3D'${prefix}/com' sysconfdir=3D'${prefix}/etc' target_alias=3D'' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define CONFDIR "${sysconfdir}/fonts" #define FC_ADD_FONTS "yes" #define FC_DEFAULT_FONTS "/usr/share/fonts" #define HAVE_DIRENT_H 1 #define HAVE_DLFCN_H 1 #define HAVE_EXPAT 1 #define HAVE_FCNTL_H 1 #define HAVE_FT_BITMAP_SIZE_Y_PPEM 1 #define HAVE_FT_GET_BDF_PROPERTY 1 #define HAVE_FT_GET_FIRST_CHAR 1 #define HAVE_FT_GET_NEXT_CHAR 1 #define HAVE_GETEUID 1 #define HAVE_GETOPT 1 #define HAVE_GETOPT_LONG 1 #define HAVE_GETUID 1 #define HAVE_INTTYPES_H 1 #define HAVE_LINK 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMORY_H 1 #define HAVE_MEMSET 1 #define HAVE_MKSTEMP 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRCHR 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_STRING_H 1 #define HAVE_STRRCHR 1 #define HAVE_STRTOL 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UNISTD_H 1 #define HAVE_VPRINTF 1 #define HAVE_XML_PARSERCREATE 1 #define PACKAGE "fontconfig" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define STDC_HEADERS 1 #define STDC_HEADERS 1 #define VERSION "2.2.3" #endif #ifdef __cplusplus extern "C" void std::exit (int) throw (); using std::exit; configure: exit 0 ------=_NextPart_000_0007_01C6C935.DE3E1CA0-- From skip@montanaro.dyndns.org Mon Aug 28 15:57:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 653983B0100 for ; Mon, 28 Aug 2006 15:57:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25410-02 for ; Mon, 28 Aug 2006 15:57:41 -0400 (EDT) Received: from proof.pobox.com (proof.pobox.com [207.106.133.28]) by menubar.gnome.org (Postfix) with ESMTP id A83F43B00E7 for ; Mon, 28 Aug 2006 15:57:36 -0400 (EDT) Received: from proof (localhost [127.0.0.1]) by proof.pobox.com (Postfix) with ESMTP id 0EB5529A88; Mon, 28 Aug 2006 15:57:53 -0400 (EDT) Received: from montanaro.dyndns.org (c-24-12-188-128.hsd1.il.comcast.net [24.12.188.128]) by proof.sasl.smtp.pobox.com (Postfix) with ESMTP id D01D769FAB; Mon, 28 Aug 2006 15:57:50 -0400 (EDT) Received: by montanaro.dyndns.org (Postfix, from userid 501) id 1D01123E6C63; Mon, 28 Aug 2006 14:57:28 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17651.19111.970427.226183@montanaro.dyndns.org> Date: Mon, 28 Aug 2006 14:57:27 -0500 To: pygtk@daa.com.au, gtk-list@gnome.org Subject: Problem dragging treeview column headings X-Mailer: VM 7.17 under 21.5 (beta25) "eggplant" (+CVS-20060318) XEmacs Lucid From: skip@pobox.com X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.052 tagged_above=-999 required=2 tests=[AWL=-1.013, BAYES_40=-0.185, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961, TW_GT=0.077, TW_YG=0.077] X-Spam-Score: 0.052 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:57:42 -0000 We use Gtk & PyGtk 2.6 at work. When dragging treeview column headings around I frequently lose control of the heading and it winds up "stuck" lower than the other headings. Something like this in bad ascii art: +------+------+ +------+ | col1 | col2 | | col4 | +------+------+------+------+ | col3 | +------+ I don't believe it's a PyGtk problem. One of my colleagues says he's seen it in C-based Gtk programs as well. I get these sorts of error messages in my shell window: GtkWarning: _gtk_tree_view_column_start_drag: assertion `tree_view->priv->column_drag_info == NULL' failed I have two questions. One, is this a known problem (it happens here so frequently I'd have to believe it is)? Two, has it been fixed in later versions of Gtk? I apologize for posting this kind of question to the pygtk and gtk mailing lists, since I should (in theory) be able to find the answer in Bugzilla. I tried briefly, but just like every other time I've challenged the beast to combat, my attempts to slay it failed, and I slinked home without reaching my quest, humiliated by a mere HTML form once again... Thx, -- Skip Montanaro - skip@pobox.com - http://www.mojam.com/ "On the academic side, effort is too often expended on finding precise answers to the wrong questions." Baxter & Rennie, in "Financial Calculus" From markusjais@yahoo.de Mon Aug 28 17:41:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 020D63B0090 for ; Mon, 28 Aug 2006 17:41:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31231-01 for ; Mon, 28 Aug 2006 17:41:52 -0400 (EDT) Received: from smtp005.mail.ukl.yahoo.com (smtp005.mail.ukl.yahoo.com [217.12.11.36]) by menubar.gnome.org (Postfix) with SMTP id 47D3E3B0011 for ; Mon, 28 Aug 2006 17:41:51 -0400 (EDT) Received: (qmail 83789 invoked from network); 28 Aug 2006 21:41:50 -0000 Received: from unknown (HELO ?217.184.106.91?) (markusjais@217.184.106.91 with plain) by smtp005.mail.ukl.yahoo.com with SMTP; 28 Aug 2006 21:41:41 -0000 Message-ID: <44F36309.5040708@yahoo.de> Date: Mon, 28 Aug 2006 23:41:29 +0200 From: Markus Jais User-Agent: Thunderbird 1.5.0.5 (X11/20060719) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Problem after installing Gtk+ 2.10 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.014 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BM=0.077, TW_GD=0.077, TW_GT=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -2.014 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:41:55 -0000 hello I just intalled the following packages on my Suse 9.2 system: (compiler gcc 4.1.1) atk-1.9.1 cairo-1.2.4 glib-2.12.0 gtk+-2.10.0 pango-1.14.0 but now several Gtk+ applications do not work anymore. for example I can no longer start Eclipse (which depends on Gtk+). with the old Gtk+ 2.6 everything is fine. the error from Eclipse with Gtk+ 2.10: java.lang.UnsatisfiedLinkError: /home/markus/software/devel/eclipse/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/libswt-pi-gtk-3232.so: /opt/gtk/lib/libgtk-x11-2.0.so.0: undefined symbol: XFixesChangeSaveSet I also can not compile gtkmm 2.8. this is my error: make all-recursive make[1]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' Making all in tools make[2]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' Making all in m4 make[3]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' Making all in extra_defs_gen make[3]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' /bin/sh ../../libtool --tag=CXX --mode=link g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib -L/usr/X11R6/lib -lglibmm-2.4 -lsigc-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lfontconfig -lpng12 -lz -lm -lXrender -lX11 -lXext -lglibmm_generate_extra_defs-2.4 g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib -L/usr/X11R6/lib /opt/gtk//lib/libglibmm-2.4.so -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src/.libs -L/home/markus/software/tools/statistics/gcc-4.1.1/host-i686-pc-linux-gnu/gcc /opt/gtk//lib/libgtk-x11-2.0.so /opt/gtk//lib/libgdk-x11-2.0.so /opt/gtk//lib/libatk-1.0.so /opt/gtk//lib/libgdk_pixbuf-2.0.so /opt/gtk//lib/libpangocairo-1.0.so /opt/gtk//lib/libpangoft2-1.0.so /opt/gtk//lib/libpango-1.0.so /opt/gtk//lib/libcairo.so -lSM -lICE /usr/lib/libfontconfig.so /usr/lib/libfreetype.so /usr/lib/libexpat.so -lpng12 -lz -lm -lXrender -lX11 -lXext /opt/gtk//lib/libglibmm_generate_extra_defs-2.4.so /opt/gtk//lib/libsigc-2.0.so /opt/gtk//lib/libgobject-2.0.so /opt/gtk//lib/libgmodule-2.0.so -ldl /opt/gtk//lib/libglib-2.0.so /opt/gcc/lib/libstdc++.so -Wl,--rpath -Wl,/opt/gtk//lib -Wl,--rpath -Wl,/opt/gtk//lib /opt/gtk//lib/libgtk-x11-2.0.so: undefined reference to `XFixesChangeSaveSet' collect2: ld returned 1 exit status make[3]: *** [generate_extra_defs] Error 1 make[3]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' make: *** [all] Error 2 am I missing any libs ? any ideas what is wrong here ? Markus ___________________________________________________________ Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de From sergstesh@yahoo.com Mon Aug 28 18:04:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1973F3B0140 for ; Mon, 28 Aug 2006 18:04:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32514-04 for ; Mon, 28 Aug 2006 18:04:57 -0400 (EDT) Received: from web35207.mail.mud.yahoo.com (web35207.mail.mud.yahoo.com [66.163.179.86]) by menubar.gnome.org (Postfix) with SMTP id 0F4813B00D3 for ; Mon, 28 Aug 2006 18:04:56 -0400 (EDT) Received: (qmail 99134 invoked by uid 60001); 28 Aug 2006 22:04:55 -0000 Message-ID: <20060828220455.99132.qmail@web35207.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35207.mail.mud.yahoo.com via HTTP; Mon, 28 Aug 2006 15:04:55 PDT Date: Mon, 28 Aug 2006 15:04:55 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problem after installing Gtk+ 2.10 To: Markus Jais , gtk-list@gnome.org In-Reply-To: <44F36309.5040708@yahoo.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.249 tagged_above=-999 required=2 tests=[AWL=-1.390, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BM=0.077, TW_GD=0.077, TW_GT=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -0.249 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 22:04:58 -0000 --- Markus Jais wrote: > hello > > I just intalled the following packages on my Suse 9.2 system: > (compiler gcc 4.1.1) > > atk-1.9.1 > cairo-1.2.4 > glib-2.12.0 > gtk+-2.10.0 > pango-1.14.0 > > > but now several Gtk+ applications do not work anymore. for example I can no longer > start Eclipse (which depends on Gtk+). with the old Gtk+ 2.6 everything is fine. > the error from Eclipse with Gtk+ 2.10: > > > java.lang.UnsatisfiedLinkError: > /home/markus/software/devel/eclipse/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/libswt-pi-gtk-3232.so: > /opt/gtk/lib/libgtk-x11-2.0.so.0: undefined symbol: XFixesChangeSaveSet > > > I also can not compile gtkmm 2.8. this is my error: > > > > make all-recursive > make[1]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' > Making all in tools > make[2]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' > Making all in m4 > make[3]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' > make[3]: Nothing to be done for `all'. > make[3]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' > Making all in extra_defs_gen > make[3]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' > /bin/sh ../../libtool --tag=CXX --mode=link g++ -g -O2 -Wall -o > generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib > -L/usr/X11R6/lib -lglibmm-2.4 -lsigc-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 > -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo > -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lfontconfig > -lpng12 -lz -lm -lXrender -lX11 -lXext -lglibmm_generate_extra_defs-2.4 > g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o > -L/opt/gtk//lib -L/usr/X11R6/lib /opt/gtk//lib/libglibmm-2.4.so > -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src > -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src/.libs > -L/home/markus/software/tools/statistics/gcc-4.1.1/host-i686-pc-linux-gnu/gcc > /opt/gtk//lib/libgtk-x11-2.0.so /opt/gtk//lib/libgdk-x11-2.0.so > /opt/gtk//lib/libatk-1.0.so /opt/gtk//lib/libgdk_pixbuf-2.0.so > /opt/gtk//lib/libpangocairo-1.0.so /opt/gtk//lib/libpangoft2-1.0.so > /opt/gtk//lib/libpango-1.0.so /opt/gtk//lib/libcairo.so -lSM -lICE > /usr/lib/libfontconfig.so /usr/lib/libfreetype.so /usr/lib/libexpat.so > -lpng12 -lz -lm -lXrender -lX11 -lXext > /opt/gtk//lib/libglibmm_generate_extra_defs-2.4.so > /opt/gtk//lib/libsigc-2.0.so /opt/gtk//lib/libgobject-2.0.so > /opt/gtk//lib/libgmodule-2.0.so -ldl /opt/gtk//lib/libglib-2.0.so > /opt/gcc/lib/libstdc++.so -Wl,--rpath -Wl,/opt/gtk//lib -Wl,--rpath > -Wl,/opt/gtk//lib > /opt/gtk//lib/libgtk-x11-2.0.so: undefined reference to > `XFixesChangeSaveSet' > collect2: ld returned 1 exit status > make[3]: *** [generate_extra_defs] Error 1 > make[3]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' > make: *** [all] Error 2 > > am I missing any libs ? > > > > any ideas what is wrong here ? > > > Markus > > > > > > > ___________________________________________________________ > Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Have a look at http://bugzilla.gnome.org/show_bug.cgi?id=350163 - maybe you better roll back to gtk+2.8.20. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From torresmat@gmail.com Mon Aug 28 19:38:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F3CF3B008B for ; Mon, 28 Aug 2006 19:38:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04068-03 for ; Mon, 28 Aug 2006 19:38:55 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by menubar.gnome.org (Postfix) with ESMTP id 58AA63B0011 for ; Mon, 28 Aug 2006 19:38:55 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so2165432wxd for ; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Received: by 10.70.131.20 with SMTP id e20mr10241964wxd; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Received: from ?192.168.0.2? ( [201.255.79.148]) by mx.gmail.com with ESMTP id i14sm1972758wxd.2006.08.28.16.38.53; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Message-ID: <44F37E8A.1000500@gmail.com> Date: Mon, 28 Aug 2006 20:38:50 -0300 From: Matias Torres User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Executing gtk app in windows using gtk 2.8.20 and glib 2.8.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.131 tagged_above=-999 required=2 tests=[AWL=1.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.131 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 23:38:56 -0000 I'm trying to compile a helloworld dialog in linux for windows, so i do this: 1) i586-mingw32msvc-gcc -o helloworld.exe `pkg-config --cflags gtk+-2.0` helloworld.c `pkg-config --libs gtk+-2.0` (the libraries are the ones in the /2.8/win32 directory in the gnome ftp server) Compilation succesful without any errors or warnings. 2) After copying it to windows (and the libraries of gtk (2.8.20), glib (2.8.6) and its dependencies) i try to execute it and gives me an error that says something like (spanish to english translation on an error, kind of difficult, sorry): "Cannot find the entry point of the procedure g_intern_static_string in the dinamic library libglib-2.0-0.dll ". I don't think that this error is due to a missing dll because i've copied every dll that the manual (Cross Compiling GTK applications on windows ) says i should copy. What should i do now? Thanks in advance. Matias. From tml@iki.fi Tue Aug 29 02:55:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 20CF83B00D6 for ; Tue, 29 Aug 2006 02:55:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20787-01 for ; Tue, 29 Aug 2006 02:55:35 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id 83EC23B0080 for ; Tue, 29 Aug 2006 02:55:35 -0400 (EDT) Received: from pettson.tml.iki.fi (MMLIV.tun.saunalahti.fi [213.169.30.254]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id 846BF1392C6; Tue, 29 Aug 2006 09:55:32 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17651.58623.531000.797282@gargle.gargle.HOWL> Date: Tue, 29 Aug 2006 09:55:59 +0300 To: Matias Torres Subject: Re: Executing gtk app in windows using gtk 2.8.20 and glib 2.8.6 In-Reply-To: <44F37E8A.1000500@gmail.com> References: <44F37E8A.1000500@gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 06:55:37 -0000 Matias Torres writes: > "Cannot find the entry point of the procedure > g_intern_static_string in the dinamic library libglib-2.0-0.dll". The newest gtk DLL (2.8.20) on ftp.gtk.org is built against glib 2.12 and needs to be run against it, too. Yes, this is somewhat confusing. There is a gtk+-2.8.20.README there that explains this. Download glib 2.12 from ftp://ftp.gtk.org/pub/glib/2.12/win32/ --tml From o@sadglad.com Tue Aug 29 07:53:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3112A3B00A2 for ; Tue, 29 Aug 2006 07:53:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04065-07 for ; Tue, 29 Aug 2006 07:53:43 -0400 (EDT) Received: from mtaout2.barak.net.il (mtaout2.barak.net.il [212.150.49.172]) by menubar.gnome.org (Postfix) with ESMTP id 982953B00B3 for ; Tue, 29 Aug 2006 07:53:43 -0400 (EDT) Received: from oded ([212.143.99.21]) by mtaout2.barak.net.il (Sun Java System Messaging Server 6.2-6.02 (built Apr 25 2006)) with ESMTPA id <0J4R003GSD1IQI90@mtaout2.barak.net.il> for gtk-list@gnome.org; Tue, 29 Aug 2006 14:53:42 +0300 (IDT) Date: Tue, 29 Aug 2006 14:53:59 +0200 From: oded Subject: Re: problem with modify_fg To: gtk-list@gnome.org Message-id: <002101c6cb6a$3266d610$5c01a8c0@oded> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 X-Mailer: Microsoft Outlook Express 6.00.2900.2670 Content-type: text/plain; format=flowed; charset=iso-8859-1; reply-type=response Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <002d01c6caac$324869f0$5c01a8c0@oded> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.482 tagged_above=-999 required=2 tests=[AWL=0.551, BAYES_05=-1.11, TW_GT=0.077] X-Spam-Score: -0.482 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 11:53:45 -0000 Problem solved, The problem was that I thought the values for set_rgb are 8 bit, while they are 16 bit. so the value that I used ( 0,0,255 ) is very close to 0,0,0 which is black. Thanks, Oded. ----- Original Message ----- From: "chao yeaj" To: "oded" Sent: Tuesday, August 29, 2006 7:54 AM Subject: Re: problem with modify_fg > In GTK+ 2.0, > the following lines maybe work > > > //******************************************** > GdkColor color; > gdk_color_parse ("red", &color); > gtk_widget_modify_fg (widget, GTK_STATE_NORMAL, &color); > //*********************************************************** > > > On 8/28/06, oded wrote: >> Hello, >> >> I am using Gtkmm, and I am new to it and to Gtk. >> I'v got a Gtk::Label widget, and I'm trying to change it's forground >> color, >> but it remain black. >> Here is the code where I try to change the color of the widget, which has >> been inilized earlier in the program, and has already been displayed. >> >> Gdk::Color color; >> color.set_rgb(0,0,255); >> m_label->modify_fg(Gtk::STATE_NORMAL, color); >> m_label->modify_fg(Gtk::STATE_ACTIVE, color); >> m_label->modify_fg(Gtk::STATE_INSENSITIVE, color); >> m_label->modify_fg(Gtk::STATE_PRELIGHT, color); >> m_label->modify_fg(Gtk::STATE_SELECTED, color); >> >> Thanks, >> >> Oded. >> >> _______________________________________________ >> gtk-list mailing list >> gtk-list@gnome.org >> http://mail.gnome.org/mailman/listinfo/gtk-list >> > > From naliven@msn.com Tue Aug 29 08:56:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C0143B0156 for ; Tue, 29 Aug 2006 08:56:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07884-04 for ; Tue, 29 Aug 2006 08:56:38 -0400 (EDT) Received: from bay0-omc2-s29.bay0.hotmail.com (bay0-omc2-s29.bay0.hotmail.com [65.54.246.165]) by menubar.gnome.org (Postfix) with ESMTP id 145A33B014D for ; Tue, 29 Aug 2006 08:56:38 -0400 (EDT) Received: from hotmail.com ([65.54.173.2]) by bay0-omc2-s29.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Tue, 29 Aug 2006 05:55:37 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 29 Aug 2006 05:55:37 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Tue, 29 Aug 2006 12:55:36 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com In-Reply-To: <1155219264.1716.16.camel@localhost.localdomain> From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: Re: gtk drawing question Date: Tue, 29 Aug 2006 12:55:36 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 29 Aug 2006 12:55:37.0180 (UTC) FILETIME=[6C5F61C0:01C6CB6A] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.815 tagged_above=-999 required=2 tests=[AWL=0.571, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.815 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 12:56:40 -0000 >From: Paul Davis >Reply-To: paul@linuxaudiosystems.com >To: Doðacan Güney >CC: gtk-list@gnome.org >Subject: Re: gtk drawing question >Date: Thu, 10 Aug 2006 10:14:24 -0400 > >On Thu, 2006-08-10 at 13:46 +0000, DoÄ�acan Güney wrote: > > Hi, > > > > I am trying to write a program similar to the one at > > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > > understand it, net-stop only means that the loading of page is >completed, it > > doesn't necessarily mean that drawing the widget is complete. My >question > > is, is there a way to understand if drawing of a widget (gtkmozembed in >this > > case) is complete? > >your question is ill-formed. do you mean "when every pixel that >represents a widget has been displayed on a screen?" or "when the code >responsible for requesting pixel changes has been called?" or something >else? > > OK, I guess my previous explanation wasn't any good. The first one ( "when every pixel that represents a widget has been displayed on a screen") is pretty much what I want. Specifically, what I want is a gtk widget(which, in my case, is gtkmozembed) that has a 'draw' call that does not return until that particular widget has completed its drawing operations. Or that does return but sends me a drawing_complete(or whatever) signal when it has finished drawing. _________________________________________________________________ Sevdiklerinizle Messenger'da görüsün ve sesli sohbet edin! http://messenger.live.com From billcu1@verizon.net Tue Aug 29 16:11:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C67BE3B0074 for ; Tue, 29 Aug 2006 16:11:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-02 for ; Tue, 29 Aug 2006 16:11:26 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id 1AE683B0018 for ; Tue, 29 Aug 2006 16:11:26 -0400 (EDT) Received: from win98 ([71.251.240.245]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S004BP00ZENUA@vms040.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 15:10:12 -0500 (CDT) Date: Tue, 29 Aug 2006 16:08:26 -0400 From: "Bill Cunningham" Subject: gdk-pixbuf To: Message-id: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.952 tagged_above=-999 required=2 tests=[AWL=-0.033, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GD=0.077] X-Spam-Score: 1.952 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:11:29 -0000 I have now installed gd, and I'm try install gdk-pixbuf and it just looks like a bunch of html pages. How do you install that? I have expat and libxml2. I just want what I need to install gtk. Is all these dependencies I'm running into necessary or do I need to turn off some dependencies checking? Bill From yeti@physics.muni.cz Tue Aug 29 16:31:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D92E23B0013 for ; Tue, 29 Aug 2006 16:31:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00775-05 for ; Tue, 29 Aug 2006 16:31:26 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id C781B3B000F for ; Tue, 29 Aug 2006 16:31:25 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7TKVOfp032229 for ; Tue, 29 Aug 2006 22:31:25 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 16B4A23D5F; Tue, 29 Aug 2006 22:31:24 +0200 (CEST) Date: Tue, 29 Aug 2006 22:31:28 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: gdk-pixbuf Message-ID: <20060829203128.GG5721@potato.chello.upc.cz> References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:31:28 -0000 On Tue, Aug 29, 2006 at 04:08:26PM -0400, Bill Cunningham wrote: > I have now installed gd, and I'm try install gdk-pixbuf and it just > looks like a bunch of html pages. How do you install that? I have expat and > libxml2. I just want what I need to install gtk. Is all these dependencies > I'm running into necessary or do I need to turn off some dependencies > checking? gdk-pixbuf is a library that resides in `gdk-pixbuf' subdirectory of Gtk+ 2.x source code, it is normally installed as a part of Gtk+ 2.x (unless you talk about the old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose you would mention that). It does not use gd, nor expat, nor libxml2, and it is not a bunch of HTML pages -- its documentation can be though. Note I don't understand your question at all, I'm just trying to clarify what gdk-pixbuf usually means as your gdk-pixbuf seems to be something different. Yeti -- Anonyms eat their boogers. From billcu1@verizon.net Tue Aug 29 16:45:53 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EC1423B0007 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01512-06 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 06AFD3B0002 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from win98 ([71.251.240.245]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S003QG1KAJKQ9@vms046.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 15:43:23 -0500 (CDT) Date: Tue, 29 Aug 2006 16:41:37 -0400 From: "Bill Cunningham" Subject: Pango [was: Re: gdk-pixbuf] To: =?iso-8859-1?Q?David_Ne=E8as_=28Yeti=29?= , Message-id: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT X-Priority: 3 X-MSMail-priority: Normal References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> <20060829203128.GG5721@potato.chello.upc.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.697 tagged_above=-999 required=2 tests=[AWL=1.235, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: 0.697 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:45:53 -0000 ----- Original Message ----- From: "David Neèas (Yeti)" To: Sent: Tuesday, August 29, 2006 4:31 PM Subject: Re: gdk-pixbuf > gdk-pixbuf is a library that resides in `gdk-pixbuf' > subdirectory of Gtk+ 2.x source code, it is normally > installed as a part of Gtk+ 2.x (unless you talk about the > old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose > you would mention that). It does not use gd, nor expat, nor > libxml2, and it is not a bunch of HTML pages -- its > documentation can be though. > > Note I don't understand your question at all, I'm just > trying to clarify what gdk-pixbuf usually means as your > gdk-pixbuf seems to be something different. > > Yeti I'm reading errors from config.log and getting libraries. Now the biggest error I get is from pango. It can't find panglox.lo. I have cairo and atk installed and X. If I can figure pango out this gdk-pixbuf may be irrelevant. Bill From yeti@physics.muni.cz Tue Aug 29 17:30:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 392933B0018 for ; Tue, 29 Aug 2006 17:30:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04167-05 for ; Tue, 29 Aug 2006 17:30:25 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id AF09B3B0007 for ; Tue, 29 Aug 2006 17:30:24 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7TLUNVI012191 for ; Tue, 29 Aug 2006 23:30:24 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 0B9CC23D5F; Tue, 29 Aug 2006 23:30:23 +0200 (CEST) Date: Tue, 29 Aug 2006 23:30:27 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: Pango [was: Re: gdk-pixbuf] Message-ID: <20060829213027.GH5721@potato.chello.upc.cz> References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> <20060829203128.GG5721@potato.chello.upc.cz> <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:30:26 -0000 On Tue, Aug 29, 2006 at 04:41:37PM -0400, Bill Cunningham wrote: > > I'm reading errors from config.log and getting libraries. Now the > biggest error I get is from pango. It can't find panglox.lo. I have cairo > and atk installed and X. If I can figure pango out this gdk-pixbuf may be > irrelevant. Well, this does not make much sense to me either so I'm giving up, sorry. Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Tue Aug 29 18:27:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 49AA63B006A for ; Tue, 29 Aug 2006 18:27:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07151-04 for ; Tue, 29 Aug 2006 18:27:18 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 3511E3B0013 for ; Tue, 29 Aug 2006 18:27:18 -0400 (EDT) Received: (qmail 2747 invoked by uid 60001); 29 Aug 2006 22:27:17 -0000 Message-ID: <20060829222717.2745.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 15:27:17 PDT Date: Tue, 29 Aug 2006 15:27:17 -0700 (PDT) From: Sergei Steshenko Subject: Re: Pango [was: Re: gdk-pixbuf] To: Bill Cunningham , David "Neèas" , gtk-list@gnome.org In-Reply-To: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: ...u1@verizon.net>, \n\tDavid "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 22:27:19 -0000 --- Bill Cunningham wrote: > > ----- Original Message ----- > From: "David Neèas (Yeti)" > To: > Sent: Tuesday, August 29, 2006 4:31 PM > Subject: Re: gdk-pixbuf > > gdk-pixbuf is a library that resides in `gdk-pixbuf' > > subdirectory of Gtk+ 2.x source code, it is normally > > installed as a part of Gtk+ 2.x (unless you talk about the > > old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose > > you would mention that). It does not use gd, nor expat, nor > > libxml2, and it is not a bunch of HTML pages -- its > > documentation can be though. > > > > Note I don't understand your question at all, I'm just > > trying to clarify what gdk-pixbuf usually means as your > > gdk-pixbuf seems to be something different. > > > > Yeti > > " and getting libraries. Now the > biggest error I get is from pango. It can't find panglox.lo. I have cairo > and atk installed and X. If I can figure pango out this gdk-pixbuf may be > irrelevant. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > "I'm reading errors from config.log" - so what ? Do you understand how 'configure' works ? You should, first of all, read errors (if any) from configure.log, i.e. from screen output of 'configure'. I have already shown you how to run 'configure' in order to redirect its screen output to a file. You are using too much bandwith here (IMHO) by not providing real error messages - saying "I'm reading errors from config.log" is saying nothing. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Tue Aug 29 21:22:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA8793B0007 for ; Tue, 29 Aug 2006 21:22:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14388-02 for ; Tue, 29 Aug 2006 21:22:43 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 9CD723B0005 for ; Tue, 29 Aug 2006 21:22:42 -0400 (EDT) Received: from win98 ([151.205.88.26]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S004LUEHOOQA6@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 20:22:37 -0500 (CDT) Date: Tue, 29 Aug 2006 21:20:52 -0400 From: "Bill Cunningham" Subject: pango To: Message-id: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: multipart/mixed; boundary="----=_NextPart_000_000A_01C6CBB1.01B002C0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.529 tagged_above=-999 required=2 tests=[AWL=-0.379, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.529 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 01:22:43 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_000A_01C6CBB1.01B002C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sergei , I don't know why I'm having such trouble. Is there a homepage for Atk? I can't find it anywhere to get the latest version but it's installed now. Well here's a log. Bill ------=_NextPart_000_000A_01C6CBB1.01B002C0 Content-Type: application/octet-stream; name="Make.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Make.log" make all-recursive=0A= make[1]: Entering directory `/pango-1.14.0'=0A= Making all in pango=0A= make[2]: Entering directory `/pango-1.14.0/pango'=0A= ( cd . && glib-mkenums \=0A= --fhead "#ifndef __PANGO_ENUM_TYPES_H__\n#define = __PANGO_ENUM_TYPES_H__\n\n#include \n\nG_BEGIN_DECLS\n" \=0A= --fprod "/* enumerations from \"@filename@\" */\n" \=0A= --vhead "GType @enum_name@_get_type (void);\n#define = PANGO_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \=0A= --ftail "G_END_DECLS\n\n#endif /* __PANGO_ENUM_TYPES_H__ */" \=0A= pango.h pango-attributes.h pango-break.h pango-context.h = pango-coverage.h pango-engine.h pango-font.h pango-fontmap.h = pango-fontset.h pango-glyph.h pango-glyph-item.h pango-item.h = pango-layout.h pango-modules.h pango-renderer.h pango-script.h = pango-tabs.h pango-types.h pango-utils.h pangofc-font.h = pangofc-fontmap.h ) > tmp-pango-enum-types.h \=0A= && (cmp -s tmp-pango-enum-types.h pango-enum-types.h || cp = tmp-pango-enum-types.h pango-enum-types.h ) \=0A= && rm -f tmp-pango-enum-types.h \=0A= && echo timestamp > s-enum-types-h=0A= ( cd . && glib-mkenums \=0A= --fhead "#include " \=0A= --fprod "\n/* enumerations from \"@filename@\" */" \=0A= --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = =3D 0;\n if (etype =3D=3D 0) {\n static const G@Type@Value values[] = =3D {" \=0A= --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \=0A= --vtail " { 0, NULL, NULL }\n };\n etype =3D = g_@type@_register_static (g_intern_static_string (\"@EnumName@\"), = values);\n }\n return etype;\n}\n" \=0A= pango.h pango-attributes.h pango-break.h pango-context.h = pango-coverage.h pango-engine.h pango-font.h pango-fontmap.h = pango-fontset.h pango-glyph.h pango-glyph-item.h pango-item.h = pango-layout.h pango-modules.h pango-renderer.h pango-script.h = pango-tabs.h pango-types.h pango-utils.h pangofc-font.h = pangofc-fontmap.h ) > tmp-pango-enum-types.c \=0A= && (cmp -s tmp-pango-enum-types.c pango-enum-types.c || cp = tmp-pango-enum-types.c pango-enum-types.c ) \=0A= && rm -f tmp-pango-enum-types.c \=0A= && echo timestamp > s-enum-types-c=0A= make all-recursive=0A= make[3]: Entering directory `/pango-1.14.0/pango'=0A= Making all in opentype=0A= make[4]: Entering directory `/pango-1.14.0/pango/opentype'=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT ftglue.lo -MD -MP -MF = ".deps/ftglue.Tpo" -c -o ftglue.lo ftglue.c; \=0A= then mv -f ".deps/ftglue.Tpo" ".deps/ftglue.Plo"; else rm -f = ".deps/ftglue.Tpo"; exit 1; fi=0A= mkdir .libs=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = ftglue.lo -MD -MP -MF .deps/ftglue.Tpo -c ftglue.c -fPIC -DPIC -o = .libs/ftglue.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-buffer.lo -MD -MP -MF = ".deps/harfbuzz-buffer.Tpo" -c -o harfbuzz-buffer.lo harfbuzz-buffer.c; \=0A= then mv -f ".deps/harfbuzz-buffer.Tpo" ".deps/harfbuzz-buffer.Plo"; = else rm -f ".deps/harfbuzz-buffer.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-buffer.lo -MD -MP -MF .deps/harfbuzz-buffer.Tpo -c = harfbuzz-buffer.c -fPIC -DPIC -o .libs/harfbuzz-buffer.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-dump.lo -MD -MP -MF = ".deps/harfbuzz-dump.Tpo" -c -o harfbuzz-dump.lo harfbuzz-dump.c; \=0A= then mv -f ".deps/harfbuzz-dump.Tpo" ".deps/harfbuzz-dump.Plo"; else rm = -f ".deps/harfbuzz-dump.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-dump.lo -MD -MP -MF .deps/harfbuzz-dump.Tpo -c harfbuzz-dump.c = -fPIC -DPIC -o .libs/harfbuzz-dump.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gdef.lo -MD -MP -MF = ".deps/harfbuzz-gdef.Tpo" -c -o harfbuzz-gdef.lo harfbuzz-gdef.c; \=0A= then mv -f ".deps/harfbuzz-gdef.Tpo" ".deps/harfbuzz-gdef.Plo"; else rm = -f ".deps/harfbuzz-gdef.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gdef.lo -MD -MP -MF .deps/harfbuzz-gdef.Tpo -c harfbuzz-gdef.c = -fPIC -DPIC -o .libs/harfbuzz-gdef.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gpos.lo -MD -MP -MF = ".deps/harfbuzz-gpos.Tpo" -c -o harfbuzz-gpos.lo harfbuzz-gpos.c; \=0A= then mv -f ".deps/harfbuzz-gpos.Tpo" ".deps/harfbuzz-gpos.Plo"; else rm = -f ".deps/harfbuzz-gpos.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gpos.lo -MD -MP -MF .deps/harfbuzz-gpos.Tpo -c harfbuzz-gpos.c = -fPIC -DPIC -o .libs/harfbuzz-gpos.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gsub.lo -MD -MP -MF = ".deps/harfbuzz-gsub.Tpo" -c -o harfbuzz-gsub.lo harfbuzz-gsub.c; \=0A= then mv -f ".deps/harfbuzz-gsub.Tpo" ".deps/harfbuzz-gsub.Plo"; else rm = -f ".deps/harfbuzz-gsub.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gsub.lo -MD -MP -MF .deps/harfbuzz-gsub.Tpo -c harfbuzz-gsub.c = -fPIC -DPIC -o .libs/harfbuzz-gsub.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-open.lo -MD -MP -MF = ".deps/harfbuzz-open.Tpo" -c -o harfbuzz-open.lo harfbuzz-open.c; \=0A= then mv -f ".deps/harfbuzz-open.Tpo" ".deps/harfbuzz-open.Plo"; else rm = -f ".deps/harfbuzz-open.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-open.lo -MD -MP -MF .deps/harfbuzz-open.Tpo -c harfbuzz-open.c = -fPIC -DPIC -o .libs/harfbuzz-open.o=0A= /bin/sh ../../libtool --tag=3DCC --mode=3Dlink gcc -g -O2 -Wall -o = libharfbuzz-1.la ftglue.lo harfbuzz-buffer.lo harfbuzz-dump.lo = harfbuzz-gdef.lo harfbuzz-gpos.lo harfbuzz-gsub.lo harfbuzz-open.lo = -L/usr/local/lib -lfontconfig -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz =0A= libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object=0A= make[4]: *** [libharfbuzz-1.la] Error 1=0A= make[4]: Leaving directory `/pango-1.14.0/pango/opentype'=0A= make[3]: *** [all-recursive] Error 1=0A= make[3]: Leaving directory `/pango-1.14.0/pango'=0A= make[2]: *** [all] Error 2=0A= make[2]: Leaving directory `/pango-1.14.0/pango'=0A= make[1]: *** [all-recursive] Error 1=0A= make[1]: Leaving directory `/pango-1.14.0'=0A= make: *** [all] Error 2=0A= ------=_NextPart_000_000A_01C6CBB1.01B002C0-- From sergstesh@yahoo.com Tue Aug 29 22:20:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8DD383B0013 for ; Tue, 29 Aug 2006 22:20:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16619-04 for ; Tue, 29 Aug 2006 22:20:25 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 7B9683B0007 for ; Tue, 29 Aug 2006 22:20:25 -0400 (EDT) Received: (qmail 93407 invoked by uid 60001); 30 Aug 2006 02:20:25 -0000 Message-ID: <20060830022025.93405.qmail@web35208.mail.mud.yahoo.com> Received: from [84.94.132.72] by web35208.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 19:20:25 PDT Date: Tue, 29 Aug 2006 19:20:25 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:20:26 -0000 --- Bill Cunningham wrote: > Sergei , > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > can't find it anywhere to get the latest version but it's installed now. > Well here's a log. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > You are having such trouble because you've decided to go the most difficult way - the manual one. The error messages are: libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object make[4]: *** [libharfbuzz-1.la] Error 1 make[4]: Leaving directory `/pango-1.14.0/pango/opentype' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/pango-1.14.0/pango' make[2]: *** [all] Error 2 make[2]: Leaving directory `/pango-1.14.0/pango' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/pango-1.14.0' make: *** [all] Error 2 - I do not know what happened. How did 'configure' run ? Were there any errors in configure.log ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Tue Aug 29 22:32:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9F3DF3B007B for ; Tue, 29 Aug 2006 22:32:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17152-02 for ; Tue, 29 Aug 2006 22:32:40 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 9999F3B007A for ; Tue, 29 Aug 2006 22:32:39 -0400 (EDT) Received: (qmail 98919 invoked by uid 60001); 30 Aug 2006 02:32:35 -0000 Message-ID: <20060830023235.98917.qmail@web35209.mail.mud.yahoo.com> Received: from [84.94.132.72] by web35209.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 19:32:35 PDT Date: Tue, 29 Aug 2006 19:32:35 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:32:40 -0000 --- Bill Cunningham wrote: > Sergei , > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > can't find it anywhere to get the latest version but it's installed now. > Well here's a log. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > The beginning of your 'make' log file looks like this: make all-recursive make[1]: Entering directory `/pango-1.14.0' . It's a strange place to build. Where did you install libraries on which 'pango' depends ? Was 'configure' for 'pango' told where the libraries on which pango depends were if they were in non-standard places ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Tue Aug 29 22:54:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 344693B00BF for ; Tue, 29 Aug 2006 22:54:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17901-07 for ; Tue, 29 Aug 2006 22:54:16 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 908BD3B007A for ; Tue, 29 Aug 2006 22:54:15 -0400 (EDT) Received: from win98 ([141.153.24.173]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S008U3IQAAU88@vms042.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 21:54:11 -0500 (CDT) Date: Tue, 29 Aug 2006 22:52:27 -0400 From: "Bill Cunningham" Subject: Re: pango To: "Sergei Steshenko" , Message-id: <000c01c6cbdf$54b2fe40$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060830022025.93405.qmail@web35208.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.232 tagged_above=-999 required=2 tests=[AWL=0.847, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 0.232 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:54:17 -0000 ----- Original Message ----- From: "Sergei Steshenko" To: "Bill Cunningham" ; Sent: Tuesday, August 29, 2006 10:20 PM Subject: Re: pango > > > --- Bill Cunningham wrote: > > > Sergei , > > > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > > can't find it anywhere to get the latest version but it's installed now. > > Well here's a log. > > > > Bill > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > You are having such trouble because you've decided to go the most > difficult way - the manual one. > > The error messages are: > > libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object > make[4]: *** [libharfbuzz-1.la] Error 1 > make[4]: Leaving directory `/pango-1.14.0/pango/opentype' > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory `/pango-1.14.0/pango' > make[2]: *** [all] Error 2 > make[2]: Leaving directory `/pango-1.14.0/pango' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/pango-1.14.0' > make: *** [all] Error 2 > > - I do not know what happened. > > How did 'configure' run ? Were there any errors in configure.log ? > > --Sergei. No problems from configure. Not so much as a burp. exit 0 From billcu1@verizon.net Tue Aug 29 22:56:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3A6DE3B0007 for ; Tue, 29 Aug 2006 22:56:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17944-07 for ; Tue, 29 Aug 2006 22:56:20 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 6A3313B00BF for ; Tue, 29 Aug 2006 22:56:20 -0400 (EDT) Received: from win98 ([141.153.24.173]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S0046JITTJFQK@vms048.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 21:56:18 -0500 (CDT) Date: Tue, 29 Aug 2006 22:54:34 -0400 From: "Bill Cunningham" Subject: Re: pango To: "Sergei Steshenko" , Message-id: <001201c6cbdf$a0642120$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060830023235.98917.qmail@web35209.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.002 tagged_above=-999 required=2 tests=[AWL=-0.165, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.002 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:56:21 -0000 > > The beginning of your 'make' log file looks like this: > > make all-recursive > make[1]: Entering directory `/pango-1.14.0' > . > > It's a strange place to build. > > Where did you install libraries on which 'pango' depends ? standard prefix. /usr/local > Was 'configure' for 'pango' told where the libraries on which pango > depends were if they were in non-standard places ? > > --Sergei. Only x--includes and x--libraries. There seems to be no detection there. pkg-config and freetype-config reports the rest of the info. Unless I missing telling configure about something else. Bill From anupama.chandwani@gmail.com Wed Aug 30 02:45:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F8753B00B1 for ; Wed, 30 Aug 2006 02:45:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28058-09 for ; Wed, 30 Aug 2006 02:45:34 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by menubar.gnome.org (Postfix) with ESMTP id 5ADC13B006B for ; Wed, 30 Aug 2006 02:45:34 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so44761nzn for ; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Received: by 10.65.103.17 with SMTP id f17mr251102qbm; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Received: by 10.65.54.18 with HTTP; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Message-ID: <689eb3470608292345m38d9dd18td4b9b24c40d55ffd@mail.gmail.com> Date: Wed, 30 Aug 2006 12:15:33 +0530 From: "Anupama Chandwani" To: gtk-list@gnome.org Subject: Pango-WARNING MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.617 tagged_above=-999 required=2 tests=[AWL=-0.706, BAYES_05=-1.11, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.617 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 06:45:35 -0000 Hello, I created a new input module & assigned it to be default by making the global_context_id="my_module" static. On keypress it does show the mapping from the table i created for the first key, however it doesnt get the preedit string. Showing me the following critical error on every key press. (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() On debugging i also get a message saying GLib: Cannot convert message: Invalid byte sequence in conversion input I suspect the string is not in the standard utf8 format, but how do i change the string?? The mapping consists of english alphabets mapped on numbers. Like 1=a, 2=d.. -- Anupama Chandwani Celunite Soft Technologies 3rd Floor, Business Avenue Koregaon Park Pune, MS 411001 INDIA From awuest@gmail.com Wed Aug 30 08:11:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EC7F53B0005 for ; Wed, 30 Aug 2006 08:11:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13063-01 for ; Wed, 30 Aug 2006 08:11:24 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by menubar.gnome.org (Postfix) with ESMTP id B89F63B000B for ; Wed, 30 Aug 2006 08:11:23 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so287805ugf for ; Wed, 30 Aug 2006 05:11:23 -0700 (PDT) Received: by 10.67.29.12 with SMTP id g12mr415557ugj; Wed, 30 Aug 2006 05:11:22 -0700 (PDT) Received: by 10.67.117.9 with HTTP; Wed, 30 Aug 2006 05:11:22 -0700 (PDT) Message-ID: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> Date: Wed, 30 Aug 2006 14:11:22 +0200 From: "Andreas Wuest" To: gtk-list@gnome.org Subject: Building gtk+ 2.10.2 without cups or complete printing support MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.422 tagged_above=-999 required=2 tests=[AWL=-0.022, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.422 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 12:11:27 -0000 Hi Since gtk+ 2.10 seems to require a decent revision of cups, I'd like to build it without cups support, if this is possible. If not, I could also do without printing support at all. I'm not sure though about the correct configure option. It would be nice if somebody could tell me what I should do to disable either only cups or printing. -- Kind regards, and thank you, Andi From mclasen@redhat.com Wed Aug 30 09:14:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB10C3B0152; Wed, 30 Aug 2006 09:14:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17033-03; Wed, 30 Aug 2006 09:14:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id F3DB93B00F8; Wed, 30 Aug 2006 09:14:28 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7UDESaa026685; Wed, 30 Aug 2006 09:14:28 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7UDESDp006110; Wed, 30 Aug 2006 09:14:28 -0400 Received: from [10.13.248.18] (vpn-248-18.boston.redhat.com [10.13.248.18]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k7UDESg4027599; Wed, 30 Aug 2006 09:14:28 -0400 Subject: GLib 2.12.3 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 30 Aug 2006 09:15:52 -0400 Message-Id: <1156943752.6487.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.92 (2.7.92-4.fc6) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.542 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.542 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 13:14:31 -0000 GLib 2.12.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.3.tar.bz2 md5sum: cbf663f8bc733e2f6c90599942f6616a glib-2.12.3.tar.gz md5sum: bffadd97168590d175b157957006e8ce GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.12.2 to GLib 2.12.3 =================================================== * Use Posix monotonic clocks instead of gettimeofday() for GTimer when available. * Make the construction of singleton objects work witout warnings. * Bugs fixed 351583 API documentation issues with 2.15 release 336114 desktop locks immediately after changing the system clock 351853 GKeyFile creates non-UTF-8 error messages * Translation updates (fr,hu,ja,ku,lt,lv,ml,or, pt,ru,sv,vi,zh_CN) Thanks to the contributors Brian Cameron, Tim Janik, Tor Lillqvist, Simon Budig, William Jon McCann Matthias Clasen August 30, 2006 From bounces@nabble.com Wed Aug 30 04:34:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB7F63B00EB for ; Wed, 30 Aug 2006 04:34:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01550-03 for ; Wed, 30 Aug 2006 04:34:28 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id C5D3E3B008B for ; Wed, 30 Aug 2006 04:34:27 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GILWl-0007IV-Ia for gtk-list@gnome.org; Wed, 30 Aug 2006 01:34:27 -0700 Message-ID: <6054682.post@talk.nabble.com> Date: Wed, 30 Aug 2006 01:34:27 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.215 tagged_above=-999 required=2 tests=[AWL=0.224, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.215 X-Spam-Level: X-Mailman-Approved-At: Wed, 30 Aug 2006 09:46:47 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:34:29 -0000 how we can append text view. example in my treeview i have text sree. now i wnat to append "view" so i should get sree view thanks in advance. sree. -- View this message in context: http://www.nabble.com/regarding-treeview-tf2188457.html#a6054682 Sent from the Gtk+ - General forum at Nabble.com. From hvreddy1110@gmail.com Wed Aug 30 14:30:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5F5883B000D for ; Wed, 30 Aug 2006 14:30:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01418-07 for ; Wed, 30 Aug 2006 14:30:19 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by menubar.gnome.org (Postfix) with ESMTP id 05E7F3B00B9 for ; Wed, 30 Aug 2006 14:30:18 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so677785pye for ; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Received: by 10.35.21.9 with SMTP id y9mr1535670pyi; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Message-ID: <1dd596080608301130v101d96d7oa222d22bd5cdb803@mail.gmail.com> Date: Thu, 31 Aug 2006 00:00:17 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: libpng-1.2.10 failed while cross compiling as the dependency for GTK lib MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_39241_1043159.1156962617258" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.279 tagged_above=-999 required=2 tests=[AWL=0.171, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BP=0.077, TW_BZ=0.077] X-Spam-Score: -1.279 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:30:23 -0000 ------=_Part_39241_1043159.1156962617258 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, I am trying to cross compile Gtk-2.8 library for my ARM11. So as the dependency files 1. I cross compiled Glib-2.8.6 2. Cross compiled atk-1.10.3 3. freetype-2.1.9 cross compiled 4. zlib-1.2.3 But libpng-1.2.10 failed to cross compile. I did In myconfigure.sh i wrote #!/bin/bash -e TOOLCHAIN="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2 /arm-none-linux-gnueabi" PREFIX="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2 /arm-none-linux-gnueabi/arm-none-linux-gnueabi/local" #PATH="/bin:$TOOLCHAIN/bin:$TOOLCHAIN/arm-linux/local/bin:/usr/bin" LDFLAGS="-L$TOOLCHAIN/arm-none-linux-gnueabi/local/lib" cp ./libpng.cache config.cache ./configure --prefix=$PREFIX --build=i386-linux --host=arm-linux \ --cache-file=config.cache \ CC=arm-none-linux-gnueabi-gcc \ NM=arm-none-linux-gnueabi-nm \ AR=arm-none-linux-gnueabi-ar \ RANLIB=arm-none-linux-gnueabi-ranlib Then i run ./myconfigure.sh BUt it has given the following error. /bin/sh ./libtool --tag=CC --mode=link arm-none-linux-gnueabi-gcc -I/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/include -g -O2 -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -o libpng12.la -rpath /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -no-undefined -export-dynamic -version-number 0:12:0 -Wl,--version-script= libpng.vers libpng12_la-png.lo libpng12_la-pngset.lo libpng12_la-pngget.lolibpng12_la- pngrutil.lo libpng12_la-pngtrans.lo libpng12_la-pngwutil.lo libpng12_la- pngread.lo libpng12_la-pngrio.lo libpng12_la-pngwio.lo libpng12_la- pngwrite.lo libpng12_la-pngrtran.lo libpng12_la-pngwtran.lo libpng12_la- pngmem.lo libpng12_la-pngerror.lo libpng12_la-pngpread.lo libpng12_la- pnggccrd.lo -lz -lm arm-none-linux-gnueabi-gcc -shared .libs/libpng12_la-png.o.libs/libpng12_la- pngset.o .libs/libpng12_la-pngget.o .libs/libpng12_la-pngrutil.o.libs/libpng12_la- pngtrans.o .libs/libpng12_la-pngwutil.o .libs/libpng12_la-pngread.o.libs/libpng12_la- pngrio.o .libs/libpng12_la-pngwio.o .libs/libpng12_la-pngwrite.o.libs/libpng12_la- pngrtran.o .libs/libpng12_la-pngwtran.o .libs/libpng12_la-pngmem.o.libs/libpng12_la- pngerror.o .libs/libpng12_la-pngpread.o .libs/libpng12_la-pnggccrd.o -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -lz -lm -Wl,--version-script=libpng.vers -Wl,-soname -Wl,libpng12.so.0 -o .libs/libpng12.so.0.12.0 /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz collect2: ld returned 1 exit status make[1]: *** [libpng12.la] Error 1 make[1]: Leaving directory `/home/harsha/Desktop/SRCLibs/ALLGTK_NEW/libpng- 1.2.12' make: *** [all] Error 2 Infact the libzlib library files are in $PREFIX/lib directory. Infact all cross compiled libraries are in $PREFIX/lib and include files are in $PREFIX/include directory. I have binutils cross compiled one. I have gcc-4.1.1 Can any one help me what could be the proble? Thanks in advance. Regards, Harsha ------=_Part_39241_1043159.1156962617258 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All,
I am trying to cross compile Gtk-2.8 library for my ARM11.
So as the dependency files
1. I cross compiled Glib-2.8.6
2. Cross compiled atk-1.10.3
3. freetype-2.1.9  cross compiled
4. zlib-1.2.3
But
libpng-1.2.10 failed to cross compile.

I did
In myconfigure.sh i wrote

#!/bin/bash -e
TOOLCHAIN="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi"
PREFIX="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local"
#PATH="/bin:$TOOLCHAIN/bin:$TOOLCHAIN/arm-linux/local/bin:/usr/bin"
LDFLAGS="-L$TOOLCHAIN/arm-none-linux-gnueabi/local/lib"

cp ./libpng.cache  config.cache

 ./configure  --prefix=$PREFIX --build=i386-linux --host=arm-linux \
  --cache-file=config.cache  \
  CC=arm-none-linux-gnueabi-gcc \
  NM=arm-none-linux-gnueabi-nm \
  AR=arm-none-linux-gnueabi-ar  \
  RANLIB=arm-none-linux-gnueabi-ranlib

Then i run
./myconfigure.sh

BUt it has given the following error.

/bin/sh ./libtool --tag=CC --mode=link arm-none-linux-gnueabi-gcc  -I/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/include -g -O2  -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -o libpng12.la -rpath /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -no-undefined -export-dynamic -version-number 0:12:0 -Wl,--version-script=libpng.vers  libpng12_la-png.lo libpng12_la-pngset.lo libpng12_la-pngget.lo libpng12_la-pngrutil.lo libpng12_la-pngtrans.lo libpng12_la-pngwutil.lo libpng12_la-pngread.lo libpng12_la-pngrio.lo libpng12_la-pngwio.lo libpng12_la-pngwrite.lo libpng12_la-pngrtran.lo libpng12_la-pngwtran.lo libpng12_la-pngmem.lo libpng12_la-pngerror.lo libpng12_la-pngpread.lo libpng12_la-pnggccrd.lo  -lz -lm
arm-none-linux-gnueabi-gcc -shared  .libs/libpng12_la-png.o .libs/libpng12_la-pngset.o .libs/libpng12_la-pngget.o .libs/libpng12_la-pngrutil.o .libs/libpng12_la-pngtrans.o .libs/libpng12_la-pngwutil.o .libs/libpng12_la-pngread.o .libs/libpng12_la-pngrio.o .libs/libpng12_la-pngwio.o .libs/libpng12_la-pngwrite.o .libs/libpng12_la-pngrtran.o .libs/libpng12_la-pngwtran.o .libs/libpng12_la-pngmem.o .libs/libpng12_la-pngerror.o .libs/libpng12_la-pngpread.o .libs/libpng12_la-pnggccrd.o  -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -lz -lm  -Wl,--version-script=libpng.vers -Wl,-soname -Wl,libpng12.so.0 -o .libs/libpng12.so.0.12.0
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make[1]: *** [libpng12.la] Error 1
make[1]: Leaving directory `/home/harsha/Desktop/SRCLibs/ALLGTK_NEW/libpng-1.2.12'
make: *** [all] Error 2


Infact the libzlib library files are in
$PREFIX/lib  directory.
Infact all cross compiled libraries are in $PREFIX/lib and
include files are in $PREFIX/include directory.


I have binutils cross compiled one.
I have gcc-4.1.1

Can any one help me what could be the proble?

Thanks in advance.

Regards,
Harsha




------=_Part_39241_1043159.1156962617258-- From bounces@nabble.com Thu Aug 31 05:57:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C84753B0091 for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08282-01 for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 1376B3B006B for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GIjIc-0008QN-IU for gtk-list@gnome.org; Thu, 31 Aug 2006 02:57:26 -0700 Message-ID: <6076423.post@talk.nabble.com> Date: Thu, 31 Aug 2006 02:57:26 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: textview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.218 tagged_above=-999 required=2 tests=[AWL=0.221, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.218 X-Spam-Level: X-Mailman-Approved-At: Thu, 31 Aug 2006 10:06:07 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 09:57:28 -0000 how we can restrict tha num of chars iin each line of a tree view is there any special function please tell me sree. -- View this message in context: http://www.nabble.com/textview-tf2195712.html#a6076423 Sent from the Gtk+ - General forum at Nabble.com. From awuest@gmail.com Thu Aug 31 11:33:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7A2483B0085 for ; Thu, 31 Aug 2006 11:33:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24275-05 for ; Thu, 31 Aug 2006 11:33:55 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by menubar.gnome.org (Postfix) with ESMTP id 7398C3B00AB for ; Thu, 31 Aug 2006 11:33:54 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so1242434ugf for ; Thu, 31 Aug 2006 08:33:53 -0700 (PDT) Received: by 10.66.244.10 with SMTP id r10mr600269ugh; Thu, 31 Aug 2006 08:33:53 -0700 (PDT) Received: by 10.67.117.9 with HTTP; Thu, 31 Aug 2006 08:33:52 -0700 (PDT) Message-ID: <36f723580608310833ucc07958t20feadad2efb10a2@mail.gmail.com> Date: Thu, 31 Aug 2006 17:33:52 +0200 From: "Andreas Wuest" To: gtk-list@gnome.org Subject: [PATCH] Re: Building gtk+ 2.10.2 without cups or complete printing support In-Reply-To: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_70769_1191368.1157038432962" References: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.373 tagged_above=-999 required=2 tests=[AWL=-0.050, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_CC=0.077] X-Spam-Score: -2.373 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:33:55 -0000 ------=_Part_70769_1191368.1157038432962 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Ok, there does not seem to be a configure option to either disable cups or the printing backend as a whole. I've attached a patch which you can use to disable cups. Apply it before you run configure. Note though that I am not really accquainted with autoconf and the likes. But it works. The first diff is to prevent the cups module directory from being included into the set of printing backends to be built, and the second diff ensures that everybody thinks we don't have cups. On 8/30/06, Andreas Wuest wrote: > Hi > > Since gtk+ 2.10 seems to require a decent revision of cups, I'd like > to build it without cups support, if this is possible. If not, I could > also do without printing support at all. > > I'm not sure though about the correct configure option. It would be > nice if somebody could tell me what I should do to disable either only > cups or printing. -- Kind regards, Andi ------=_Part_70769_1191368.1157038432962 Content-Type: application/octet-stream; name=gtk2-2.10.2-disablecups.diff Content-Transfer-Encoding: base64 X-Attachment-Id: f_erjapva0 Content-Disposition: attachment; filename="gtk2-2.10.2-disablecups.diff" LS0tIGNvbmZpZ3VyZS5pbn4gICAgICAgMjAwNi0wOC0xOCAwNDoxNzo1OS4wMDAwMDAwMDAgKzAy MDAKKysrIGNvbmZpZ3VyZS5pbiAgICAgICAgMjAwNi0wOC0zMSAwMjo1Mzo1Ny4wMDAwMDAwMDAg KzAyMDAKQEAgLTE1NjIsNyArMTU2Miw3IEBACiAgIEFDX1NVQlNUKENVUFNfQ0ZMQUdTKQogICBB Q19TVUJTVChDVVBTX0xJQlMpCiBmaQotQU1fQ09ORElUSU9OQUwoSEFWRV9DVVBTLCB0ZXN0ICJ4 JENVUFNfQ09ORklHIiAhPSAieG5vIikKKyNBTV9DT05ESVRJT05BTChIQVZFX0NVUFMsIHRlc3Qg IngkQ1VQU19DT05GSUciICE9ICJ4bm8iKQogCiBndGtfc2F2ZV9jcHBmbGFncz0iJENQUEZMQUdT IgogQ1BQRkxBR1M9IiRDUFBGTEFHUyAkR1RLX0RFUF9DRkxBR1MiCi0tLSBjb25maWd1cmV+ICAy MDA2LTA4LTE4IDA0OjM2OjAwLjAwMDAwMDAwMCArMDIwMAorKysgY29uZmlndXJlICAgMjAwNi0w OC0zMSAwMzowMDoxNS4wMDAwMDAwMDAgKzAyMDAKQEAgLTMyMDQyLDEzICszMjA0Miw4IEBACiBm aQogCiAKLWlmIHRlc3QgIngkQ1VQU19DT05GSUciICE9ICJ4bm8iOyB0aGVuCi0gIEhBVkVfQ1VQ U19UUlVFPQotICBIQVZFX0NVUFNfRkFMU0U9JyMnCi1lbHNlCi0gIEhBVkVfQ1VQU19UUlVFPScj JwotICBIQVZFX0NVUFNfRkFMU0U9Ci1maQorSEFWRV9DVVBTX1RSVUU9JyMnCitIQVZFX0NVUFNf RkFMU0U9CiAKIAogZ3RrX3NhdmVfY3BwZmxhZ3M9IiRDUFBGTEFHUyIK ------=_Part_70769_1191368.1157038432962-- From hvreddy1110@gmail.com Thu Aug 31 12:00:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A2E5A3B0267 for ; Thu, 31 Aug 2006 12:00:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25902-04 for ; Thu, 31 Aug 2006 12:00:48 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id 5895B3B0191 for ; Thu, 31 Aug 2006 12:00:48 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so1164703pye for ; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Received: by 10.35.78.9 with SMTP id f9mr968670pyl; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Message-ID: <1dd596080608310900i24c350cbs873f3f31f7d6d9f2@mail.gmail.com> Date: Thu, 31 Aug 2006 21:30:47 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: ..... libxml skipping incompatable -lz ...... MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_57839_5633693.1157040047093" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.294 tagged_above=-999 required=2 tests=[AWL=0.156, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -1.294 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:00:52 -0000 ------=_Part_57839_5633693.1157040047093 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi I am trying to cross compile libxml2-2.6.26 as a dependency for my Gtk Library Xcompilation for ARM11. Before that i compiled zlib-1.2.3 successfully. But when i try to cross compile libxml2 it is giving following error. /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz collect2: ld returned 1 exit status As per the error it is finding the libz in the location but it is saying it is incompatable. Can anybody suggest that what could be the reason. Thanks in advance. Regards Harsha ------=_Part_57839_5633693.1157040047093 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi I am trying to cross compile libxml2-2.6.26 as a dependency for my Gtk Library Xcompilation for ARM11.
Before that i compiled zlib-1.2.3 successfully.
But when i try to cross compile libxml2 it is giving following error.

/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz
collect2: ld returned 1 exit status

As per the error  it is finding the libz in the location but it is saying it is incompatable.
Can anybody suggest that what could be the reason.

Thanks in advance.

Regards
Harsha
------=_Part_57839_5633693.1157040047093-- From ben@benjohnson.net Thu Aug 31 18:15:53 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C2C963B0088 for ; Thu, 31 Aug 2006 18:15:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12702-04 for ; Thu, 31 Aug 2006 18:15:52 -0400 (EDT) Received: from server018.dfw.nationwide.net (server018.dfw.nationwide.net [206.123.129.81]) by menubar.gnome.org (Postfix) with SMTP id E57C63B006D for ; Thu, 31 Aug 2006 18:15:51 -0400 (EDT) Received: (qmail 3071 invoked from network); 31 Aug 2006 22:16:41 -0000 Received: from sense-sea-megasub-1-814.oz.net (HELO rose) (216.39.170.53) by 206.123.129.9 with SMTP; Thu, 31 Aug 2006 22:16:41 +0000 Received: from localhost (localhost [127.0.0.1]) by rose (Postfix) with ESMTP id 23992E4081 for ; Thu, 31 Aug 2006 15:15:45 -0700 (PDT) Received: from rose ([127.0.0.1]) by localhost (rose [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25524-10 for ; Thu, 31 Aug 2006 15:15:45 -0700 (PDT) Received: by rose (Postfix, from userid 1000) id D214AE4097; Thu, 31 Aug 2006 15:15:43 -0700 (PDT) Date: Thu, 31 Aug 2006 15:15:43 -0700 From: Anna To: gtk-list@gnome.org Subject: Re: textview Message-ID: <20060831221543.GO20651@rose.benjohnson.net> Mail-Followup-To: Anna , gtk-list@gnome.org References: <6076423.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6076423.post@talk.nabble.com> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at benjohnson.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_XT=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 22:15:53 -0000 On Thu, Aug 31, 2006 at 02:57:26AM -0700, cnu_sree wrote: > > how we can restrict tha num of chars iin each line of a tree view > is there any special function > please tell me you mean restrict the length of the line that's rendered in each line in the treeview? You probably want to read about the GtkCellRendererText type. https://stage.maemo.org/svn/maemo/projects/haf/doc/api/gtk/GtkCellRendererText.html Columns have default renderers. You use this class to make a specialized renderer. What does the "rendering" is a callback you provide which is referenced from an instance of this class. Google for GtkCellRendererText and similar things and you'll find a tutorial. - Anna From bounces@nabble.com Thu Aug 31 16:53:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 77F183B0077 for ; Thu, 31 Aug 2006 16:53:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08758-08 for ; Thu, 31 Aug 2006 16:53:06 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 895EC3B00A4 for ; Thu, 31 Aug 2006 16:53:06 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GItX7-00074i-Sh for gtk-list@gnome.org; Thu, 31 Aug 2006 13:53:05 -0700 Message-ID: <6088022.post@talk.nabble.com> Date: Thu, 31 Aug 2006 13:53:05 -0700 (PDT) From: Petter Jansen To: gtk-list@gnome.org Subject: Widget identifcation MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.439 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.439 X-Spam-Level: X-Mailman-Approved-At: Thu, 31 Aug 2006 23:25:12 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 20:53:10 -0000 I wonder what the GTK+ equivalent of this grid below is? I'm not able to find it in the API. http://www.bcbjournal.org/articles/vol2/9809/cpb9893a.gif Thanks. -- View this message in context: http://www.nabble.com/Widget-identifcation-tf2199203.html#a6088022 Sent from the Gtk+ - General forum at Nabble.com. From sumitskj_20@yahoo.com Tue Aug 1 02:39:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D3573B006C for ; Tue, 1 Aug 2006 02:39:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21264-09 for ; Tue, 1 Aug 2006 02:39:49 -0400 (EDT) Received: from web31007.mail.mud.yahoo.com (web31007.mail.mud.yahoo.com [68.142.200.170]) by menubar.gnome.org (Postfix) with SMTP id 1E6453B0011 for ; Tue, 1 Aug 2006 02:39:49 -0400 (EDT) Received: (qmail 32622 invoked by uid 60001); 1 Aug 2006 06:39:48 -0000 Message-ID: <20060801063948.32620.qmail@web31007.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31007.mail.mud.yahoo.com via HTTP; Mon, 31 Jul 2006 23:39:48 PDT Date: Mon, 31 Jul 2006 23:39:48 -0700 (PDT) From: Sumit Kumar Jain Subject: glib 2.10.3 slice allocator To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-795452128-1154414388=:32316" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.684 tagged_above=-999 required=2 tests=[AWL=-2.807, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_50_60=0.134, HTML_MESSAGE=0.001] X-Spam-Score: 0.684 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 06:39:50 -0000 --0-795452128-1154414388=:32316 Content-Type: text/plain; charset=us-ascii Hi, I was going through the glib 2.10.3 slice allocators. Although the docs as well as the .c file suggests that it is based on Bonwick's algorithm, I am not able to understand it well. Can someone please help me with understading it. Regards, Sumit --0-795452128-1154414388=:32316 Content-Type: text/html; charset=us-ascii
Hi,
I was going through the glib 2.10.3 slice allocators. Although the docs as well as the .c file suggests that it is based on Bonwick's algorithm, I am not able to understand it well. Can someone please help me with understading it.
 
Regards,
Sumit
--0-795452128-1154414388=:32316-- From rvaughan@gmail.com Tue Aug 1 10:38:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A0E3B0085 for ; Tue, 1 Aug 2006 10:38:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09479-03 for ; Tue, 1 Aug 2006 10:38:21 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 374543B00C7 for ; Tue, 1 Aug 2006 10:38:21 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so438301ugf for ; Tue, 01 Aug 2006 07:38:20 -0700 (PDT) Received: by 10.67.100.17 with SMTP id c17mr1049032ugm; Tue, 01 Aug 2006 07:38:20 -0700 (PDT) Received: by 10.67.22.16 with HTTP; Tue, 1 Aug 2006 07:38:19 -0700 (PDT) Message-ID: Date: Tue, 1 Aug 2006 15:38:19 +0100 From: "Richard Vaughan" To: gtk-list@gnome.org Subject: keyboard events MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.538 tagged_above=-999 required=2 tests=[AWL=0.862, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.538 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 14:38:22 -0000 Hi, I am trying to capture key presses in a window, but the window seems to be ignoring the signals. GtkWidget* mainWindow = gtk_drawing_area_new(); ... gtk_widget_add_events(mainWindow, (GDK_KEY_RELEASE_MASK | GDK_KEY_PRESS_MASK)); gtk_signal_connect(GTK_OBJECT( mainWindow ), "key_press_event", G_CALLBACK( key_press_win ), NULL); ... static gboolean key_press_win(GtkWidget* w, GdkEventKey* key, gpointer data) { printf("press.\n"); return false; } I was expecting to see some output on the console, but nothing shows up. The window does also have mouse click event handlers, which work fine.... Can anyone see what I have done wrong? Thanks, Richard From kalou@ti.com Tue Aug 1 13:27:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 739963B00B0 for ; Tue, 1 Aug 2006 13:27:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17700-08 for ; Tue, 1 Aug 2006 13:27:49 -0400 (EDT) Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by menubar.gnome.org (Postfix) with ESMTP id 4C61E3B0077 for ; Tue, 1 Aug 2006 13:27:49 -0400 (EDT) Received: from dlep52.itg.ti.com ([157.170.170.57]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id k71HRiDH030670 for ; Tue, 1 Aug 2006 12:27:49 -0500 Received: from svrhermes.tif.ti.com (localhost [127.0.0.1]) by dlep52.itg.ti.com (8.12.11/8.12.11) with ESMTP id k71HRhTX012737 for ; Tue, 1 Aug 2006 12:27:43 -0500 (CDT) Received: from lnx0029563.tif.ti.com (lnx0029563.tif.ti.com [137.167.117.221]) by svrhermes.tif.ti.com (Postfix) with ESMTP id 7E69C4783E for ; Tue, 1 Aug 2006 19:27:42 +0200 (MEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lnx0029563.tif.ti.com (8.12.11/8.12.11) with ESMTP id k71HRg7A011400 for ; Tue, 1 Aug 2006 19:27:42 +0200 Message-ID: <44CF8F0E.6040709@ti.com> Date: Tue, 01 Aug 2006 19:27:42 +0200 From: Olivier Kaloudoff User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.365 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, RCVD_IN_WHOIS_INVALID=2.234] X-Spam-Score: -0.365 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 17:27:50 -0000 Hello, using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following error message when compiling gtk+ on linux32, gcc-4.1.1; make[4]: Entering directory `/tmp/gtk+-2.10.1/modules/printbackends/cups' if /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/ap ps/free/glib/2.12.1/include/glib-2.0 -I/apps/free/glib/2.12.1/lib/glib-2.0/include -I/apps/free/pango/1.13.5/include/pango-1.0 -I/apps/free/cairo/1.2.0/include/cairo -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF ".deps/gtkprintbackendcups.Tpo" \ -c -o gtkprintbackendcups.lo `test -f 'gtkprintbackendcups.c' || echo './'`gtkprintbackendcups.c; \ then mv -f ".deps/gtkprintbackendcups.Tpo" ".deps/gtkprintbackendcups.Plo"; \ else rm -f ".deps/gtkprintbackendcups.Tpo"; exit 1; \ fi gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/apps/free/glib/2.12.1/include/glib-2.0 -I/app s/free/glib/2.12.1/lib/glib-2.0/include -I/apps/free/pango/1.13.5/include/pango-1.0 -I/apps/free/cairo/1.2.0/include/cairo -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC -DPIC -o .libs/gtkprintbackendcups.o gtkprintbackendcups.c: In function '_cairo_write_to_cups': gtkprintbackendcups.c:272: warning: pointer targets in passing argument 2 of 'g_io_channel_write_chars' differ in signedness gtkprintbackendcups.c: In function 'available_choices': gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c: In function 'create_pickone_option': gtkprintbackendcups.c:1936: warning: implicit declaration of function 'create_pickone_option_custom' gtkprintbackendcups.c:1936: warning: assignment makes pointer from integer without a cast gtkprintbackendcups.c: In function 'handle_option': gtkprintbackendcups.c:2052: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2059: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2066: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c: In function 'handle_group': gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named 'name' Is there a simple fix to this ? Best Regards, Olivier From yeti@physics.muni.cz Tue Aug 1 15:27:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F13E73B0240 for ; Tue, 1 Aug 2006 15:27:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22547-08 for ; Tue, 1 Aug 2006 15:27:39 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 04AB63B0222 for ; Tue, 1 Aug 2006 15:27:39 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k71JRbLX015074 for ; Tue, 1 Aug 2006 21:27:38 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 528AE23E09; Tue, 1 Aug 2006 21:27:37 +0200 (CEST) Date: Tue, 1 Aug 2006 21:27:41 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: keyboard events Message-ID: <20060801192741.GO2362@potato.chello.upc.cz> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 19:27:41 -0000 On Tue, Aug 01, 2006 at 03:38:19PM +0100, Richard Vaughan wrote: > I am trying to capture key presses in a window, but the window seems > to be ignoring the signals. I suppose you mean a drawing area widget as your code indicates, not a GtkWindow (you should have no problems receiving GtkWindow's keyboard events). > > GtkWidget* mainWindow = gtk_drawing_area_new(); > ... > gtk_widget_add_events(mainWindow, (GDK_KEY_RELEASE_MASK | GDK_KEY_PRESS_MASK)); > gtk_signal_connect(GTK_OBJECT( mainWindow ), > "key_press_event", > G_CALLBACK( key_press_win ), > NULL); Note gtk_signal_connect() is *long time* deprecated and the canonical event naming is with dashes: "key-press-event". > static gboolean key_press_win(GtkWidget* w, GdkEventKey* key, gpointer data) { > printf("press.\n"); > > return false; > } > > > I was expecting to see some output on the console, but nothing shows > up. The window does also have mouse click event handlers, which work > fine.... > > Can anyone see what I have done wrong? The drawing area has to have keyboard focus to get keyboard events. Set its "can-focus" property to TRUE. It also has to get the focus somehow, widgets that can have keyboard focus typically grab it with gtk_widget_grab_focus() when one clicks on them with mouse. Yeti -- Anonyms eat their boogers. From suryakiran.gullapalli@gmail.com Tue Aug 1 23:45:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 487B13B00E2 for ; Tue, 1 Aug 2006 23:45:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08683-02 for ; Tue, 1 Aug 2006 23:45:09 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by menubar.gnome.org (Postfix) with ESMTP id 245463B0116 for ; Tue, 1 Aug 2006 23:45:09 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so325151nfa for ; Tue, 01 Aug 2006 20:45:08 -0700 (PDT) Received: by 10.49.92.18 with SMTP id u18mr1728712nfl; Tue, 01 Aug 2006 20:45:08 -0700 (PDT) Received: by 10.48.164.16 with HTTP; Tue, 1 Aug 2006 20:45:08 -0700 (PDT) Message-ID: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> Date: Wed, 2 Aug 2006 09:15:08 +0530 From: "Surya Kiran Gullapalli" To: gtk-list@gnome.org, gtkmm-list@gnome.org Subject: Understanding themes MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5205_33108181.1154490308160" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.579 tagged_above=-999 required=2 tests=[AWL=-0.129, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -1.579 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 03:45:10 -0000 ------=_Part_5205_33108181.1154490308160 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, I'm trying to understand the working of themes and the resource files. I've a small application and before running the application, i'm setting the gtkrc file using the environment variable GTK2_RC_FILES, so that my application uses my gtkrc file instead of using it from theme. what ever settings i made in the gtkrc file are getting reflected in the application, but the application font is behaving in a different manner. I've set the application font like this in gtkrc file gtk-font-name = "Courier 8" If no theme is running, (i.e. say i'm working in KDE), application font has been set properly, from the gtkrc file. But if some gtk-theme is running say clearlooks or something else, the application is picking up the font from gnome settings. Is this predictable behaviour? Also, If i want my application to use a font, which is not cached using fontconfig, where should i put the font, and how do i tell my application to pick up the font. I want these things to work in both linux and windows. Thanks in advance, Surya ------=_Part_5205_33108181.1154490308160 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all,
I'm trying to understand the working of themes and the resource files.

I've a small application and before running the application, i'm setting the gtkrc file using the environment variable GTK2_RC_FILES, so that my application uses my gtkrc file instead of using it from theme.

what ever settings i made in the gtkrc file are getting reflected in the application, but the application font is behaving in a different manner.

I've set the application font like this in gtkrc file

gtk-font-name = "Courier 8"

If no theme is running, (i.e. say i'm working in KDE), application font has been set properly, from the gtkrc file. But if some gtk-theme is running say clearlooks or something else, the application is picking up the font from gnome settings. Is this predictable behaviour?

Also, If i want my application to use a font, which is not cached using fontconfig, where should i put the font, and how do i tell my application to pick up the font.

I want these things to work in both linux and windows.

Thanks in advance,
Surya
------=_Part_5205_33108181.1154490308160-- From suryakiran.gullapalli@gmail.com Wed Aug 2 00:11:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F35E23B0264 for ; Wed, 2 Aug 2006 00:11:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09709-07 for ; Wed, 2 Aug 2006 00:11:40 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id 9BFEC3B012C for ; Wed, 2 Aug 2006 00:11:39 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so332579nfa for ; Tue, 01 Aug 2006 21:11:39 -0700 (PDT) Received: by 10.49.26.18 with SMTP id d18mr488604nfj; Tue, 01 Aug 2006 21:11:38 -0700 (PDT) Received: by 10.48.164.16 with HTTP; Tue, 1 Aug 2006 21:11:38 -0700 (PDT) Message-ID: <3462bcdb0608012111p6677feacr1d16affd75501c1e@mail.gmail.com> Date: Wed, 2 Aug 2006 09:41:38 +0530 From: "Surya Kiran Gullapalli" To: gtk-list@gnome.org, gtkmm-list@gnome.org Subject: Re: Understanding themes In-Reply-To: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5537_6437269.1154491898903" References: <3462bcdb0608012045h402be661lc3f7ef7240fd3c73@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.645 tagged_above=-999 required=2 tests=[AWL=-1.054, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -0.645 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 04:11:42 -0000 ------=_Part_5537_6437269.1154491898903 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Well, My observation is false. When any gtk-theme is running, my application is not picking up the gtkrc file i've specified. Now my question is, how can i tell my application to pick up the gtkrc file, even if some theme is running? and my question regarding the font remains as it is. Surya ------=_Part_5537_6437269.1154491898903 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Well,
My observation is false. When any gtk-theme is running, my application is not picking up the gtkrc file i've specified.

Now my question is,
how can i tell my application to pick up the gtkrc file, even if some theme is running?

and my question regarding the font remains as it is.

Surya
------=_Part_5537_6437269.1154491898903-- From kalou@ti.com Wed Aug 2 05:43:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DB64E3B0002 for ; Wed, 2 Aug 2006 05:43:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22607-06 for ; Wed, 2 Aug 2006 05:43:41 -0400 (EDT) Received: from calf.ext.ti.com (calf.ext.ti.com [198.47.26.144]) by menubar.gnome.org (Postfix) with ESMTP id B8B163B007E for ; Wed, 2 Aug 2006 05:43:40 -0400 (EDT) Received: from dlep30.itg.ti.com ([157.170.170.32]) by calf.ext.ti.com (8.13.7/8.13.7) with ESMTP id k729hZeh013867 for ; Wed, 2 Aug 2006 04:43:40 -0500 Received: from svrhermes.tif.ti.com (localhost [127.0.0.1]) by dlep30.itg.ti.com (8.12.11/8.12.11) with ESMTP id k729hXeu014786; Wed, 2 Aug 2006 04:43:33 -0500 (CDT) Received: from lnx0029563.tif.ti.com (lnx0029563.tif.ti.com [137.167.117.221]) by svrhermes.tif.ti.com (Postfix) with ESMTP id 19A284783D; Wed, 2 Aug 2006 11:43:33 +0200 (MEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lnx0029563.tif.ti.com (8.12.11/8.12.11) with ESMTP id k729hWXY025816; Wed, 2 Aug 2006 11:43:32 +0200 Message-ID: <44D073C4.4040609@ti.com> Date: Wed, 02 Aug 2006 11:43:32 +0200 From: Olivier Kaloudoff User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: Olivier Kaloudoff Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') References: <44CF8F0E.6040709@ti.com> In-Reply-To: <44CF8F0E.6040709@ti.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.365 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, RCVD_IN_WHOIS_INVALID=2.234] X-Spam-Score: -0.365 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 09:43:43 -0000 downgraded to 2.8.20 fixed the problem. 2.9.x, 2.10.x code is broken the same as below. Sincere regards, Olivier Olivier Kaloudoff wrote: > Hello, > > using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following > error message when compiling gtk+ on linux32, gcc-4.1.1; > > > make[4]: Entering directory `/tmp/gtk+-2.10.1/modules/printbackends/cups' > if /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. > -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk > -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/ap > ps/free/glib/2.12.1/include/glib-2.0 > -I/apps/free/glib/2.12.1/lib/glib-2.0/include > -I/apps/free/pango/1.13.5/include/pango-1.0 > -I/apps/free/cairo/1.2.0/include/cairo > -I/apps/free/atk/1.12.1/include/atk-1.0 > -DG_DISABLE_CAST_CHECKS -I/usr/X11R6/include > -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP > -MF ".deps/gtkprintbackendcups.Tpo" \ > -c -o gtkprintbackendcups.lo `test -f 'gtkprintbackendcups.c' || echo > './'`gtkprintbackendcups.c; \ > then mv -f ".deps/gtkprintbackendcups.Tpo" > ".deps/gtkprintbackendcups.Plo"; \ > else rm -f ".deps/gtkprintbackendcups.Tpo"; exit 1; \ > fi > gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk > -I../../../gtk -I../../../gdk -I../../../gdk > -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread > -I/apps/free/glib/2.12.1/include/glib-2.0 -I/app > s/free/glib/2.12.1/lib/glib-2.0/include > -I/apps/free/pango/1.13.5/include/pango-1.0 > -I/apps/free/cairo/1.2.0/include/cairo > -I/apps/free/atk/1.12.1/include/atk-1.0 -DG_DISABLE_CAST_CHECKS > -I/usr/X11R6/include > -DG_DISABLE_DEPRECATED -O3 -Wall -MT gtkprintbackendcups.lo -MD -MP > -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC > -DPIC -o .libs/gtkprintbackendcups.o > gtkprintbackendcups.c: In function '_cairo_write_to_cups': > gtkprintbackendcups.c:272: warning: pointer targets in passing > argument 2 of 'g_io_channel_write_chars' differ in signedness > gtkprintbackendcups.c: In function 'available_choices': > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:1689: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c: In function 'create_pickone_option': > gtkprintbackendcups.c:1936: warning: implicit declaration of function > 'create_pickone_option_custom' > gtkprintbackendcups.c:1936: warning: assignment makes pointer from > integer without a cast > gtkprintbackendcups.c: In function 'handle_option': > gtkprintbackendcups.c:2052: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2059: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2066: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c: In function 'handle_group': > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > gtkprintbackendcups.c:2096: error: 'ppd_group_t' has no member named > 'name' > > > Is there a simple fix to this ? > > > Best Regards, > > > Olivier > > From sebastien.tricaud@gmail.com Wed Aug 2 10:02:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 845193B015D for ; Wed, 2 Aug 2006 10:02:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02454-04 for ; Wed, 2 Aug 2006 10:02:37 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.197]) by menubar.gnome.org (Postfix) with ESMTP id 98A983B0204 for ; Wed, 2 Aug 2006 10:02:36 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id i30so658482wxd for ; Wed, 02 Aug 2006 07:02:36 -0700 (PDT) Received: by 10.70.51.17 with SMTP id y17mr1431257wxy; Wed, 02 Aug 2006 07:02:36 -0700 (PDT) Received: by 10.70.9.12 with HTTP; Wed, 2 Aug 2006 07:02:36 -0700 (PDT) Message-ID: <1333be7b0608020702l39067f54mfca54143f2a00c36@mail.gmail.com> Date: Wed, 2 Aug 2006 16:02:36 +0200 From: "Sebastien Tricaud" To: "Olivier Kaloudoff" Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') In-Reply-To: <44D073C4.4040609@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <44CF8F0E.6040709@ti.com> <44D073C4.4040609@ti.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.099 tagged_above=-999 required=2 tests=[AWL=0.301, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.099 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 14:02:38 -0000 Salut Olivier! I think that if you want to use 2.9.x and/or 2.10.x you'll need cups development headers since from those gtk+ versions printing support is enabled. Regards, seb. On 8/2/06, Olivier Kaloudoff wrote: > downgraded to 2.8.20 fixed the problem. > 2.9.x, 2.10.x code is broken the same as below. > > Sincere regards, > > Olivier > > From klemm@phys.ethz.ch Wed Aug 2 10:44:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AEF0F3B017C for ; Wed, 2 Aug 2006 10:44:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04073-08 for ; Wed, 2 Aug 2006 10:44:20 -0400 (EDT) Received: from wiggis.ethz.ch (wiggis.ethz.ch [129.132.86.197]) by menubar.gnome.org (Postfix) with ESMTP id 642973B02E1 for ; Wed, 2 Aug 2006 10:44:20 -0400 (EDT) Received: from wiggis1.ethz.ch (wiggis1.ethz.ch [192.168.127.2]) by wiggis.ethz.ch (Postfix) with ESMTP id AA5F043B1 for ; Wed, 2 Aug 2006 16:44:19 +0200 (CEST) Received: from phys.ethz.ch (localhost [127.0.0.1]) by wiggis.ethz.ch (Postfix) with SMTP id 9E6A643AB for ; Wed, 2 Aug 2006 16:44:18 +0200 (CEST) Date: Wed, 02 Aug 2006 16:44:18 +0200 To: Subject: compile question From: "Hanno Klemm" X-Mailer: TWIG 2.7.7 Message-ID: X-Client-IP: 134.146.0.27 X-Virus-Scanned: by amavisd-new at phys.ethz.ch X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.484 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, TW_BP=0.077, TW_GT=0.077] X-Spam-Score: -2.484 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 14:44:21 -0000 Hello, I have the following question. Any hint would be appreciated. I try to compile gtk+-2.10.1 on a Linux box. I compiled and installed all required libraries (I think...) in their up to date version (see the end of the mail). However, during compile of gtk I get the following error message, which I don't understand (output attached): gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -I../../../gtk -I../../../gtk -I../../../gdk -I../../../gdk -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -pthread -I/scratch/apps/include/glib-2.0 -I/scratch/apps/lib/glib-2.0/include -I/scratch/apps/include/pango-1.0 -I/scratch/apps/include/cairo -I/scratch/apps/include/libpng12 -I/scratch/apps/include/freetype2 -I/scratch/apps/include -I/scratch/apps/include/atk-1.0 -I/usr/X11R6/include -DG_DISABLE_CAST_CHECKS -I/scratch/apps/include -I/usr/X11R6/include -DG_DISABLE_DEPRECATED -g -O2 -Wall -MT gtkprintbackendcups.lo -MD -MP -MF .deps/gtkprintbackendcups.Tpo -c gtkprintbackendcups.c -fPIC -DPIC -o .libs/gtkprintbackendcups.o gtkprintbackendcups.c: In function `available_choices': gtkprintbackendcups.c:1689: structure has no member named `name' [This line is repeated 26 times] gtkprintbackendcups.c: In function `create_pickone_option': gtkprintbackendcups.c:1936: warning: implicit declaration of function `create_pickone_option_custom' gtkprintbackendcups.c:1936: warning: assignment makes pointer from integer without a cast gtkprintbackendcups.c: In function `handle_option': gtkprintbackendcups.c:2053: structure has no member named `name' gtkprintbackendcups.c:2060: structure has no member named `name' gtkprintbackendcups.c:2067: structure has no member named `name' gtkprintbackendcups.c: In function `handle_group': gtkprintbackendcups.c:2096: structure has no member named `name' /scratch/apps/include/glib-2.0/glib/gstring.h: At top level: gtkprintbackendcups.c:1611: warning: `get_choice_text' defined but not used make[4]: *** [gtkprintbackendcups.lo] Error 1 make[4]: Leaving directory `/scratch/src/gtk+-2.10.1/modules/printbackends/cups' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/scratch/src/gtk+-2.10.1/modules/printbackends' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/scratch/src/gtk+-2.10.1/modules' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/scratch/src/gtk+-2.10.1' make: *** [all] Error 2 I use the following versions of required libraries: jpeg v6b, zlib 1.2.3, libpng 1.2.12, tiff 3.8.2, freetype 2.2.1 cairo 1.2.0, Glib 2.12.1, pango 1.13.5, ATK 1.10.3 all of them are installed in the directory /scratch/apps. Any idea what I'm doing wrong? Best regards, Hanno -- Hanno Klemm klemm@phys.ethz.ch From prashanthkm22@gmail.com Thu Aug 3 00:35:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5641A3B0003 for ; Thu, 3 Aug 2006 00:35:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05690-03 for ; Thu, 3 Aug 2006 00:35:35 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by menubar.gnome.org (Postfix) with ESMTP id 40F4A3B007E for ; Thu, 3 Aug 2006 00:35:35 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id l36so733886nfa for ; Wed, 02 Aug 2006 21:35:34 -0700 (PDT) Received: by 10.78.107.8 with SMTP id f8mr602795huc; Wed, 02 Aug 2006 21:35:34 -0700 (PDT) Received: by 10.78.182.4 with HTTP; Wed, 2 Aug 2006 21:35:34 -0700 (PDT) Message-ID: Date: Thu, 3 Aug 2006 10:05:34 +0530 From: "prashanth km22" To: gtk-list@gnome.org Subject: Regarding Pixmap_path MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.361 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.361 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 04:35:38 -0000 Hi all.., In my application i have written one rc-file. I am successful with all the things like color, font etc, but pixmap_path is not working. I have one pixmap directory in My home dir. i included path like this pixmap_path "/home/prashan/pixmaps" its not working and not giving any errors also. Please help me how to include path. Thank you all. From lists@nabble.com Thu Aug 3 01:23:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B07B3B0011 for ; Thu, 3 Aug 2006 01:23:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07557-03 for ; Thu, 3 Aug 2006 01:23:01 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id DA61A3B0003 for ; Thu, 3 Aug 2006 01:23:00 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1G8VfZ-000717-Lv for gtk-list@gnome.org; Wed, 02 Aug 2006 22:22:53 -0700 Message-ID: <5626985.post@talk.nabble.com> Date: Wed, 2 Aug 2006 22:22:53 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how to set background iamge to Treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.284 tagged_above=-999 required=2 tests=[AWL=0.155, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.284 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 05:23:03 -0000 i know using bgcolor we can change the background color. but how we can set the image as a background to the tree view please help me, sree -- View this message in context: http://www.nabble.com/how-to-set-background-iamge-to-Treeview-tf2043798.html#a5626985 Sent from the Gtk+ - General forum at Nabble.com. From rpmcruz@clix.pt Thu Aug 3 07:23:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 723383B0416 for ; Thu, 3 Aug 2006 07:23:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21826-04 for ; Thu, 3 Aug 2006 07:23:17 -0400 (EDT) Received: from mailrly02.isp.novis.pt (mailrly02.isp.novis.pt [195.23.133.212]) by menubar.gnome.org (Postfix) with ESMTP id B9EC73B03EB for ; Thu, 3 Aug 2006 07:23:06 -0400 (EDT) Received: (qmail 19251 invoked from network); 3 Aug 2006 11:23:05 -0000 Received: from unknown (HELO mailfrt11.isp.novis.pt) ([195.23.133.227]) (envelope-sender ) by mailrly02.isp.novis.pt with compressed SMTP; 3 Aug 2006 11:23:05 -0000 Received: (qmail 16969 invoked from network); 3 Aug 2006 11:23:04 -0000 Received: from unknown (HELO [10.0.0.2]) (Sent_by_authenticated_user_x2476431@[87.196.15.178]) (envelope-sender ) by mailfrt11.isp.novis.pt with SMTP; 3 Aug 2006 11:23:04 -0000 From: Ricardo Cruz To: gtk-list@gnome.org Subject: Re: how to set background iamge to Treeview Date: Thu, 3 Aug 2006 12:34:37 +0100 User-Agent: KMail/1.9.1 References: <5626985.post@talk.nabble.com> In-Reply-To: <5626985.post@talk.nabble.com> X-Face: $29d{(U~(^/X.rR|7i6syM3jeJ}N+*%U-#Bzl5 MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200608031234.37384.rpmcruz@clix.pt> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.52 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.52 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 11:23:21 -0000 Em Quinta, 3 de Agosto de 2006 06:22, o cnu_sree escreveu: > i know using bgcolor we can change the background color. > but how we can set the image as a background to the tree view > please help me, > sree Here goes an adaptation of a function I have to set an image background to= a=20 GtkTextView -- it should work, but if it doesn't, that's the idea. You must= =20 call this after the GtkTreeView widget has been realized. So, if you want t= o=20 set it right at start, you have to delay it with: g_signal_connect (G_OBJECT (tree_view), "realize", G_CALLBACK (set_help_background_cb), NULL); (and call it on a "void set_help_background_cb (GtkWidget *, gpointer)") =AB void gtk_treeview_set_background (GtkTreeView *view, const char *image) { g_return_if_fail (GTK_WIDGET_REALIZED (GTK_WIDGET (view))); GdkWindow *window =3D gtk_tree_view_get_bin_window (view); if (!image) { gdk_window_clear (window); return; } GError *error =3D 0; GdkPixbuf *pixbuf =3D gdk_pixbuf_new_from_file (image, &error); if (!pixbuf) { g_warning ("could not open background image: '%s'" " - %s", image, error->message); return; } GdkPixmap *pixmap; gdk_pixbuf_render_pixmap_and_mask_for_colormap (pixbuf, gdk_drawable_get_colormap (GDK_DRAWABLE (window)), &pixmap, NULL, 0); g_object_unref (G_OBJECT (pixbuf)); gdk_window_set_back_pixmap (window, pixmap, FALSE); } =BB Cheers, Ricardo =2D-=20 Love at first sight is one of the greatest labor-saving devices the world has ever seen. From philip@lawatsch.at Thu Aug 3 08:11:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 830F63B0079 for ; Thu, 3 Aug 2006 08:11:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24062-09 for ; Thu, 3 Aug 2006 08:11:56 -0400 (EDT) Received: from smtp-1.edis.at (mail.customers.edis.at [62.99.242.131]) by menubar.gnome.org (Postfix) with ESMTP id 305343B00E6 for ; Thu, 3 Aug 2006 08:11:56 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by smtp-1.edis.at (Postfix) with ESMTP id 7F2518E015 for ; Thu, 3 Aug 2006 14:11:54 +0200 (CEST) Received: from smtp-1.edis.at ([127.0.0.1]) by localhost (smtp-1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 30331-03-2 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from webmail.waug.at (83-65-233-182.dynamic.xdsl-line.inode.at [83.65.233.182]) by smtp-1.edis.at (Postfix) with ESMTP id 251068D999 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from webmail.waug.at (localhost [127.0.0.1]) by webmail.waug.at (Postfix) with ESMTP id D87E281151D4 for ; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Received: from 157.247.252.14 (SquirrelMail authenticated user nomenquis) by webmail.waug.at with HTTP; Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Message-ID: <38058.157.247.252.14.1154607113.squirrel@webmail.waug.at> Date: Thu, 3 Aug 2006 14:11:53 +0200 (CEST) Subject: Windowid of widget From: "Philip Lawatsch" To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by edis.at Virus-Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.992 tagged_above=-999 required=2 tests=[AWL=0.395, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -1.992 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 12:11:59 -0000 Hi, I'm trying to integrate an opengl viewer toolkit into my application. The basic idea is that I'm creating a gtk widget and then let this toolkit draw into my widget. One of the things this toolkit wants to set up it's opengl implementation is the windowid of the widget I'm providing for it. And that's my problem, I could not find any way to get the windowid for my widget in the docs. -> Is there a way to get the windowid at all? (I really hope so) :) Platforms that are interesting for me would be both linux and windows (using the gtk provided by gladewin32.sf.net) Any help would be appreciated. kind regards Philip From root@gateshead-online.co.uk Thu Aug 3 09:08:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 726413B00A8 for ; Thu, 3 Aug 2006 09:08:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26995-08 for ; Thu, 3 Aug 2006 09:08:29 -0400 (EDT) Received: from gateshead-online.co.uk (p15122568.pureserver.info [217.160.177.192]) by menubar.gnome.org (Postfix) with ESMTP id B38E43B0318 for ; Thu, 3 Aug 2006 09:08:28 -0400 (EDT) Received: from root by gateshead-online.co.uk with local (Exim 4.30) id 1G8cw8-00026O-4V for gtk-list@gnome.org; Thu, 03 Aug 2006 14:08:28 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17617.62795.126924.45333@p15122568.pureserver.info> Date: Thu, 3 Aug 2006 14:08:27 +0100 To: gtk-list@gnome.org From: dale@dmellor.dabsol.co.uk Subject: Stock icons in resource files X-Mailer: VM 7.18 under Emacs 21.4.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.503 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -1.503 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 13:08:29 -0000 The following problem is in 2.10.1, and may have been around for some versions previously, although things worked okay in the relatively distant past (2.0?). My gtk.rc file contains =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- pixmap_path "/install/share/lcm-tablet/graphics" style "lcm-tablet-stock" { stock["compass-gps"] = { { "compass-icon.png" } } stock["satellites"] = { { "satellites.png" } } } class "GtkWidget" style "lcm-tablet-stock" =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- as well as some other stuff which works perfectly. I am trying to load the icons into toolbar toggle buttons, but I just see white boxes with red crosses. No error messages anywhere. Snippets of my code include =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- static GtkRadioActionEntry menu_gps_radio [] = { { "Compass", "compass-gps", "_Compass", "C", "Touch the compass rose to move around on the map", 0 }, { "GPS", "satellites", "_GPS", "G", "The map will be centred based on information from the GPS receiver", 2 } }; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- and then =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- gtk_action_group_add_radio_actions (actions, menu_gps_radio, G_N_ELEMENTS (menu_gps_radio), 2, G_CALLBACK (gps_radio_source_changed), tablet); =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- Everything works perfectly apart from the icons not showing up. Any ideas anyone? From ayqazi@gmail.com Thu Aug 3 10:59:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50D483B02C3 for ; Thu, 3 Aug 2006 10:59:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32167-06 for ; Thu, 3 Aug 2006 10:59:15 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by menubar.gnome.org (Postfix) with ESMTP id 751D43B01A0 for ; Thu, 3 Aug 2006 10:59:15 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i23so469148wra for ; Thu, 03 Aug 2006 07:59:15 -0700 (PDT) Received: by 10.78.136.7 with SMTP id j7mr746000hud; Thu, 03 Aug 2006 07:59:14 -0700 (PDT) Received: by 10.78.196.6 with HTTP; Thu, 3 Aug 2006 07:59:14 -0700 (PDT) Message-ID: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> Date: Thu, 3 Aug 2006 15:59:14 +0100 From: "Asfand Yar Qazi" To: gtk-list@gnome.org Subject: Per-host .gtkrc-2.0 file MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.89 tagged_above=-999 required=2 tests=[AWL=-0.503, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077, TW_KR=0.077] X-Spam-Score: -0.89 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 14:59:16 -0000 Hi, At work, I have a home directory shared between several machines. One is a 50" plasma display, and I need to set big fonts for it. Is there a way to put changes in the gtkrc-2.0 file that are hostname-specific? I was hoping something like .gtkrc-2.0-hostname.whatever.net would work - but obviously not :-) Thanks From markus.uhle@synergetik.de Thu Aug 3 11:19:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 837293B0183 for ; Thu, 3 Aug 2006 11:19:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00860-03 for ; Thu, 3 Aug 2006 11:19:28 -0400 (EDT) Received: from server001.webpack.hosteurope.de (server001.webpack.hosteurope.de [80.237.130.9]) by menubar.gnome.org (Postfix) with ESMTP id 75B753B0079 for ; Thu, 3 Aug 2006 11:19:28 -0400 (EDT) Received: by server001.webpack.hosteurope.de running Exim 4.51 using esmtpa from pd9e2cbb0.dip0.t-ipconnect.de ([217.226.203.176] helo=mail.synergetik.de) id 1G8eyt-0004YD-BU; Thu, 03 Aug 2006 17:19:27 +0200 Received: from [192.168.0.31] (192.168.0.31) by mail.synergetik.de with MERCUR Mailserver (v4.03.03 MTI0MDktNjI3NS01NjQ2) for ; Thu, 3 Aug 2006 17:02:18 +0200 Message-ID: <44D21507.2040103@synergetik.de> Date: Thu, 03 Aug 2006 17:23:51 +0200 From: Markus Uhle User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: gtk-list@gnome.org Subject: How to compile theme engine for GTK1.2 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:19:29 -0000 Hi! I have to make some minor changes in the graphical representation of my GTK1.2 embedded application. Therefore, I have coded (got a small existing one and changed it) a small theme-engine. I' m totally innocent to stuff like "makefiles", ... The makefile for my main GTK-application works (its an executable), but I don't know how to compile a gmodule (without automake, autoconf, ...) I want to do something like this (my makefile-style is very ugly): SOURCES= ./thinice_theme_main.c ./thinice_theme_draw.c CC=path_to_embedded_compiler CFLAGS='$(TARGET_BIN)/gtk-config --cflags' -o2 -ggdb -Wall LFLAGS='$(TARGET_BIN)/gtk-config --libs' -Wall OBJECTS=$(SOURCES:.c=.o) all: themeengine themeengine: $(OBJECTS) $(CC) $(LFLAGS) $(CFLAGS) $^ -o $@ For this module, it's even ok, when I compile, link (and whatever is also nessessary) the module with hardcoded lines. The main question is about the right options and tools to use.... Thanks for help, Markus From markus.uhle@synergetik.de Thu Aug 3 11:20:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B6073B019C for ; Thu, 3 Aug 2006 11:20:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00941-04 for ; Thu, 3 Aug 2006 11:20:52 -0400 (EDT) Received: from server001.webpack.hosteurope.de (server001.webpack.hosteurope.de [80.237.130.9]) by menubar.gnome.org (Postfix) with ESMTP id 2A1783B03F2 for ; Thu, 3 Aug 2006 11:20:06 -0400 (EDT) Received: by server001.webpack.hosteurope.de running Exim 4.51 using esmtpa from pd9e2cbb0.dip0.t-ipconnect.de ([217.226.203.176] helo=mail.synergetik.de) id 1G8ezU-0004kb-UB; Thu, 03 Aug 2006 17:20:05 +0200 Received: from [192.168.0.31] (192.168.0.31) by mail.synergetik.de with MERCUR Mailserver (v4.03.03 MTI0MDktNjI3NS01NjQ2) for ; Thu, 3 Aug 2006 17:02:55 +0200 Message-ID: <44D2152C.1080801@synergetik.de> Date: Thu, 03 Aug 2006 17:24:28 +0200 From: Markus Uhle User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Widget focus Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:20:54 -0000 Hi! I have a strange problem with the "moving" of the focus of the widgets in a window (GTK1.2.10 - Embedded System): Let there be 3 push-bottons in a window and the first one has the keyboard focus. Now I press "cursor down" and the next button gets the keyboard focus. Same procedure for the third button. But when I press now "cursor down", the focus goes elsewhere, but not back to the first button. This happens after another "cursor down". It seems, that something like "the window" or "the container" gets the focus. I tried to understand the sourcefiles gtk_window.c and gtk_container.c, but I do not get any simple solution for this problem. Maybe someone can help me.... Thanks, Markus From yeti@physics.muni.cz Thu Aug 3 11:29:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E8E33B036A for ; Thu, 3 Aug 2006 11:29:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01246-05 for ; Thu, 3 Aug 2006 11:29:03 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id EB5193B0187 for ; Thu, 3 Aug 2006 11:29:01 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k73FSu8J022808 for ; Thu, 3 Aug 2006 17:28:57 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id B0B1423D59; Thu, 3 Aug 2006 17:28:56 +0200 (CEST) Date: Thu, 3 Aug 2006 17:29:22 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: Per-host .gtkrc-2.0 file Message-ID: <20060803152922.GA2331@potato.chello.upc.cz> References: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <79328ea80608030759o22de172ci7c799671fd5767f1@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.813 tagged_above=-999 required=2 tests=[AWL=-0.703, BAYES_05=-1.11] X-Spam-Score: -1.813 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 15:29:04 -0000 On Thu, Aug 03, 2006 at 03:59:14PM +0100, Asfand Yar Qazi wrote: > At work, I have a home directory shared between several machines. One > is a 50" plasma display, and I need to set big fonts for it. The usual method to handle this is to set proper DisplaySize in X server config for each monitor. Proper does not necessarily mean the actual physical size, it should be recalculated for the expected viewing distance. Of course, it does not affect legacy Xlib apps, but it is still much better than fiddling with Gtk+-specific gtkrc. Yeti -- Anonyms eat their boogers. From xtremejames183@msn.com Thu Aug 3 21:11:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4E7C73B010E for ; Thu, 3 Aug 2006 21:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26266-05 for ; Thu, 3 Aug 2006 21:11:46 -0400 (EDT) Received: from bay0-omc3-s20.bay0.hotmail.com (bay0-omc3-s20.bay0.hotmail.com [65.54.246.220]) by menubar.gnome.org (Postfix) with ESMTP id 56DB63B0017 for ; Thu, 3 Aug 2006 21:11:46 -0400 (EDT) Received: from hotmail.com ([65.54.173.2]) by bay0-omc3-s20.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 3 Aug 2006 18:11:46 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 3 Aug 2006 18:11:45 -0700 Message-ID: Received: from 196.203.217.49 by by5fd.bay5.hotmail.msn.com with HTTP; Fri, 04 Aug 2006 01:11:45 GMT X-Originating-IP: [196.203.217.49] X-Originating-Email: [xtremejames183@msn.com] X-Sender: xtremejames183@msn.com From: "Mrad James Deane" To: gtk-list@gnome.org Subject: Understand RadioButtons Date: Fri, 04 Aug 2006 02:11:45 +0100 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 04 Aug 2006 01:11:45.0852 (UTC) FILETIME=[F4365FC0:01C6B762] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.499 tagged_above=-999 required=2 tests=[AWL=0.591, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001] X-Spam-Score: 2.499 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 01:11:47 -0000 Hi, this the matter: i have a GtkEntry set to editable(FALSE) and i want it to be set to TRUE when an user select a radiobutton i've tried with radio_button_toggled , radio_button_change_ group , radio_button_activate without result, What's the signals for the radiobutton to make my entry editable for example , thanks. _________________________________________________________________ MSN Messenger : discutez en direct avec vos amis ! http://www.msn.fr/msger/default.asp From martyn@imendio.com Thu Aug 3 21:33:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5343D3B0097 for ; Thu, 3 Aug 2006 21:33:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27053-04 for ; Thu, 3 Aug 2006 21:33:20 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id 7A71B3B0183 for ; Thu, 3 Aug 2006 21:33:19 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id E470CBA; Fri, 4 Aug 2006 03:33:17 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00816-03; Fri, 4 Aug 2006 03:33:13 +0200 (CEST) Received: from [192.168.0.2] (host86-135-236-112.range86-135.btcentralplus.com [86.135.236.112]) by holken.mikan.net (Postfix) with ESMTP id 6FE5E8F; Fri, 4 Aug 2006 03:33:13 +0200 (CEST) Subject: Re: Understand RadioButtons From: Martyn Russell To: Mrad James Deane In-Reply-To: References: Content-Type: text/plain Organization: Imendio Date: Fri, 04 Aug 2006 02:33:12 +0100 Message-Id: <1154655192.8058.277.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 01:33:25 -0000 On Fri, 2006-08-04 at 02:11 +0100, Mrad James Deane wrote: > Hi, > this the matter: > i have a GtkEntry set to editable(FALSE) and i want it to be set to TRUE > when an user select a radiobutton i've tried with radio_button_toggled , > radio_button_change_ group , radio_button_activate without result, > What's the signals for the radiobutton to make my entry editable for example Try: g_signal_connect (radiobutton, "toggled", G_CALLBACK (toggled_cb), NULL); -- Regards, Martyn From gexlie@gmail.com Fri Aug 4 01:49:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 833F43B0103 for ; Fri, 4 Aug 2006 01:49:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02595-02 for ; Fri, 4 Aug 2006 01:49:29 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by menubar.gnome.org (Postfix) with ESMTP id 97F9A3B0097 for ; Fri, 4 Aug 2006 01:49:28 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id s49so144197pyc for ; Thu, 03 Aug 2006 22:49:28 -0700 (PDT) Received: by 10.35.109.2 with SMTP id l2mr4395527pym; Thu, 03 Aug 2006 22:49:28 -0700 (PDT) Received: by 10.35.98.19 with HTTP; Thu, 3 Aug 2006 22:49:27 -0700 (PDT) Message-ID: <53cc795f0608032249x7579cc3cue9b8082afce19ab4@mail.gmail.com> Date: Fri, 4 Aug 2006 09:49:28 +0400 From: sekes To: gtk-list@gnome.org Subject: Change button positions MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_398_10271663.1154670568000" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.54 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.54 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 05:49:30 -0000 ------=_Part_398_10271663.1154670568000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline i got into the habit of using reverse sequence of "cancel" and "OK" buttons like its took place in the windows(R) interface. When "OK" button is on the left side and the "Cancel" is on the right. Is it possible to change it manually from this: http://beautynn.cololo.com/lj/tupoy/seq.png to this: http://beautynn.cololo.com/lj/tupoy/seq1.png (gimp edited) ? if this is the user-independed option, so will it be changed in a future? i know maybe it's a stupid desire, but i am sure that my variant with improved button positions is more reliable from the design's point of view. Thank you. ------=_Part_398_10271663.1154670568000 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
i got into the habit of using reverse sequence of "cancel" and "OK" buttons like its took place in the windows(R) interface.
When "OK" button is on the left side and the "Cancel" is on the right.

Is it possible to  change it manually from this:
http://beautynn.cololo.com/lj/tupoy/seq.png

to this:
http://beautynn.cololo.com/lj/tupoy/seq1.png (gimp edited)
?

if this is the user-independed option, so will it be changed in a future?

i know maybe it's a stupid desire, but i am sure that my variant with improved button positions
is more reliable from the design's point of view.


Thank you.
------=_Part_398_10271663.1154670568000-- From gygy@cc.gatech.edu Fri Aug 4 09:51:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3483E3B010E for ; Fri, 4 Aug 2006 09:51:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24189-06 for ; Fri, 4 Aug 2006 09:51:01 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 2ABAC3B0111 for ; Fri, 4 Aug 2006 09:51:01 -0400 (EDT) Received: from siwenna.cc.gatech.edu (siwenna.cc.gatech.edu [130.207.7.232]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Dp0H4001777 for ; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Received: (from www@localhost) by siwenna.cc.gatech.edu (8.13.6/8.12.8) id k74Dp0ud029372; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) X-Authentication-Warning: siwenna.cc.gatech.edu: www set sender to gygy@cc.gatech.edu using -f Received: from lawn-199-77-206-16.lawn.gatech.edu ([199.77.206.16]) (SquirrelMail authenticated user gygy) by webmail.cc.gatech.edu with HTTP; Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Message-ID: <40147.199.77.206.16.1154699460.squirrel@webmail.cc.gatech.edu> Date: Fri, 4 Aug 2006 09:51:00 -0400 (EDT) Subject: atk compiling problem GLIB_GENMARSHAL From: gygy@cc.gatech.edu To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.88 tagged_above=-999 required=2 tests=[AWL=-0.442, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, NO_REAL_NAME=0.961] X-Spam-Score: -1.88 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 13:51:02 -0000 Hi, I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run configure and make, I got the following error and the part related in Makefile is also shown as attached. It seems that the problem is the path of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can change the definition for GLIB_GENMARSHAL? Thanks Yan p/s 1/2: make output -------------- [root@lawn-199-77-206-16 atk-1.10.3]# make make all-recursive make[1]: Entering directory `/root/atk-1.10.3' Making all in atk make[2]: Entering directory `/root/atk-1.10.3/atk' ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal ./atkmarshal.list --header >> xgen-gmh \ && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ && rm -f xgen-gmh xgen-gmh~ \ && echo timestamp > stamp-atkmarshal.h /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such file or directory make[2]: *** [stamp-atkmarshal.h] Error 127 make[2]: Leaving directory `/root/atk-1.10.3/atk' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/root/atk-1.10.3' make: *** [all] Error 2 ------------------- 2/2: In Makefile, the related part is defined as shown below: ------ 25 top_builddir = . 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 -I$(top_builddir)//root/glib-2.12.0/. - I$(top_builddir)//root/glib-2.12.0/./glib -I$(top_builddir)//root/glib-2.12.0/./gmodule 88 GLIB_GENMARSHAL = $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal ---------------------------------------------Note: this is not right------------ From sergstesh@yahoo.com Fri Aug 4 10:15:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9EDBE3B0070 for ; Fri, 4 Aug 2006 10:15:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25541-08 for ; Fri, 4 Aug 2006 10:15:34 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 6F9B83B00C3 for ; Fri, 4 Aug 2006 10:15:34 -0400 (EDT) Received: (qmail 51922 invoked by uid 60001); 4 Aug 2006 14:15:33 -0000 Message-ID: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> Received: from [84.94.204.73] by web35204.mail.mud.yahoo.com via HTTP; Fri, 04 Aug 2006 07:15:33 PDT Date: Fri, 4 Aug 2006 07:15:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <40147.199.77.206.16.1154699460.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 14:15:35 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > configure and make, I got the following error and the part related in > Makefile is also shown as attached. It seems that the problem is the path > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > change the definition for GLIB_GENMARSHAL? > > Thanks > > Yan > > p/s > 1/2: make output > -------------- > [root@lawn-199-77-206-16 atk-1.10.3]# make > make all-recursive > make[1]: Entering directory `/root/atk-1.10.3' > Making all in atk > make[2]: Entering directory `/root/atk-1.10.3/atk' > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > ./atkmarshal.list --header >> xgen-gmh \ > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > && rm -f xgen-gmh xgen-gmh~ \ > && echo timestamp > stamp-atkmarshal.h > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > file or directory > make[2]: *** [stamp-atkmarshal.h] Error 127 > make[2]: Leaving directory `/root/atk-1.10.3/atk' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/root/atk-1.10.3' > make: *** [all] Error 2 > ------------------- > > 2/2: In Makefile, the related part is defined as shown below: > ------ > 25 top_builddir = . > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > -I$(top_builddir)//root/glib-2.12.0/. - > I$(top_builddir)//root/glib-2.12.0/./glib > -I$(top_builddir)//root/glib-2.12.0/./gmodule > 88 GLIB_GENMARSHAL = > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > ---------------------------------------------Note: this is not > right------------ > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my project - the tool successfully compiles 'atk' among other things. See my signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From salgari2004@hotmail.com Wed Aug 2 05:43:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2A5EC3B0132 for ; Wed, 2 Aug 2006 05:43:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22607-04 for ; Wed, 2 Aug 2006 05:43:08 -0400 (EDT) Received: from bay0-omc3-s22.bay0.hotmail.com (bay0-omc3-s22.bay0.hotmail.com [65.54.246.222]) by menubar.gnome.org (Postfix) with ESMTP id 32E3F3B0002 for ; Wed, 2 Aug 2006 05:43:08 -0400 (EDT) Received: from hotmail.com ([65.54.224.47]) by bay0-omc3-s22.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 2 Aug 2006 02:43:07 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 2 Aug 2006 02:43:07 -0700 Message-ID: Received: from 65.54.224.200 by by105fd.bay105.hotmail.msn.com with HTTP; Wed, 02 Aug 2006 09:43:06 GMT X-Originating-IP: [158.42.214.106] X-Originating-Email: [salgari2004@hotmail.com] X-Sender: salgari2004@hotmail.com From: "Roses Roses" To: gtk-list@gnome.org Subject: Pixmap Date: Wed, 02 Aug 2006 09:43:06 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 02 Aug 2006 09:43:07.0461 (UTC) FILETIME=[0F0CDF50:01C6B618] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.985 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_QH=0.077] X-Spam-Score: 1.985 X-Spam-Level: * X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2006 09:43:09 -0000 Hi!!! I'm programming a little interface but I have a prblem. The objective of this program is shows a pixmap qhich must ghange qhen the user clicks on a button. How the fuction of the button can change the pixmap assigned? One idea I've is declare the GtkPixmap as a global variable, but I'm not sure if this plan can run. Thank you very much _________________________________________________________________ Descarga gratis la Barra de Herramientas de MSN http://www.msn.es/usuario/busqueda/barra?XAPID=2031&DI=1055&SU=http%3A//www.hotmail.com&HL=LINKTAG1OPENINGTEXT_MSNBH From matthew@jenika.com Fri Aug 4 14:14:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A9C4B3B0076 for ; Fri, 4 Aug 2006 14:14:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03845-06 for ; Fri, 4 Aug 2006 14:14:29 -0400 (EDT) Received: from yellow.jenika.com (yellow.jenika.com [71.39.42.123]) by menubar.gnome.org (Postfix) with ESMTP id 0F7DA3B0072 for ; Fri, 4 Aug 2006 14:14:29 -0400 (EDT) Received: from [192.168.1.7] (silver.jenika.inside [192.168.1.7]) by yellow.jenika.com (8.13.6/8.13.6) with ESMTP id k74ICMLY014691; Fri, 4 Aug 2006 11:12:22 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> Content-Transfer-Encoding: 7bit From: matthew@jenika.com Subject: Compiling with MinGW Date: Fri, 4 Aug 2006 11:12:20 -0700 To: libtool@gnu.org X-Mailer: Apple Mail (2.752.2) X-Scanned-By: MIMEDefang 2.56 on 192.168.1.3 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.253 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_BG=0.077, TW_BX=0.077, TW_IB=0.077, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -1.253 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 Cc: abiword-dev@abisource.com, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 18:14:30 -0000 This is not exactly a bug in a strict since but it is a complication of building software with MinGW. Just a little back ground I was looking to build the latest version of wvware so that I end up with a windows stand alone binary. The environment that I was working on was: Windows 2003 Cygwin Current (make, pkgconfig, autoconf, automake) Installed MingGW using auto installer MinGW-5.0.3 Given the above I downloaded and built each of the following: zlib-1.2.3.tar.gz http://www.zlib.net/zlib-1.2.3.tar.gz libiconv-1.11.tar.gz http://mirrors.usc.edu/pub/gnu/libiconv/ libiconv-1.11.tar.gz libxml2-2.6.26.tar.gz ftp://xmlsoft.org/libxml2/libxml2-2.6.26.tar.gz gettext-0.15.tar.gz http://mirrors.usc.edu/pub/gnu/gettext/ gettext-0.15.tar.gz glib-2.12.1.tar.gz ftp://ftp.gtk.org/pub/gtk/v2.12/glib-2.12.1.tar.gz libgsf-1.14.1.tar.gz http://ftp.gnome.org/pub/GNOME/sources/libgsf/ 1.14/libgsf-1.14.1.tar.gz wv-1.2.1.tar.gz http://prdownloads.sourceforge.net/wvware/ wv-1.2.1.tar.gz?download I was able to get everything to work out in the end however gettext and glib packages both gave me difficulties. The errors they generated are: GETTEXT: Making all in libuniname make[3]: Entering directory `/home/matthew/tmp/wv/gettext-0.15/ gettext-tools/libuniname' /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -Lc:/progra~1/wv -Wl,--disable-auto-import -o test-names.exe test-names.o libuniname.a ../lib/libgettextlib.la gcc -g -O2 -Wl,--disable-auto-import -o .libs/test-names.exe test- names.o -Lc:/progra~1/wv libuniname.a ../lib/.libs/ libgettextlib.dll.a /home/matthew/tmp/wv/gettext-0.15/gettext-tools/ intl/.libs/libintl.dll.a -Lc:/progra~1/wv/lib gcc.exe: /home/matthew/tmp/wv/gettext-0.15/gettext-tools/intl/.libs/ libintl.dll.a: No such file or directory make[3]: *** [test-names.exe] Error 1 make[3]: Leaving directory `/home/matthew/tmp/wv/gettext-0.15/gettext- tools/libuniname' GLIB: Making all in gobject make[2]: Entering directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' make all-am make[3]: Entering directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' /bin/sh ../libtool --mode=link gcc -g -O2 -mms-bitfields -Wall -Lc:/ progra~1/wv/lib -o gobject-query.exe gobject-query.o ./ libgobject-2.0.la ../glib/libglib-2.0.la -lintl gcc -g -O2 -mms-bitfields -Wall -o .libs/gobject-query.exe gobject- query.o -Lc:/progra~1/wv/lib ./.libs/libgobject-2.0.dll.a /home/ matthew/tmp/wv/glib-2.12.1/glib/.libs/libglib-2.0.dll.a ../glib/.libs/ libglib-2.0.dll.a -lws2_32 -lole32 c:/progra~1/wv/lib/libintl.dll.a c:/progra~1/wv/lib/libiconv.dll.a -Lc:/progra~1/wv/lib gcc.exe: /home/matthew/tmp/wv/glib-2.12.1/glib/.libs/ libglib-2.0.dll.a: No such file or directory make[3]: *** [gobject-query.exe] Error 1 make[3]: Leaving directory `/home/matthew/tmp/wv/glib-2.12.1/gobject' Both of the above errors are caused because of the environment the software is being built in and how libtool interacts. The basic problem is gcc for MinGW does not know how to properly handle cygwin paths. libtool is automatically generating a fully qualified path using cygwin based paths. I didn't spend a lot of time digging into what the right solution for libtool might be but found that by simply editing the libtool used in both of the above cases and adding: case $deplib in /home*) deplib="c:/cygwin"$deplib;; esac just after the for loop on line 2459 gettext and line 2363 of glib (that area looks something like this) if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do # right after this line. lib= found=no case $deplib in I was able to complete the compiles and generate a version of wvware-1.2.1 that worked standalone on windows. If a good option can be found to make this issue go away it would be nice but it is a somewhat unusual configuration. But, I thought I would pass it along just in case someone else might be interested. Matthew McGillis From root@gateshead-online.co.uk Thu Aug 3 08:15:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6C34F3B01DF for ; Thu, 3 Aug 2006 08:15:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24409-04 for ; Thu, 3 Aug 2006 08:15:58 -0400 (EDT) Received: from gateshead-online.co.uk (p15122568.pureserver.info [217.160.177.192]) by menubar.gnome.org (Postfix) with ESMTP id BBB3C3B00AC for ; Thu, 3 Aug 2006 08:15:55 -0400 (EDT) Received: from root by gateshead-online.co.uk with local (Exim 4.30) id 1G8c7G-00022j-DE for gtk-list@gnome.org; Thu, 03 Aug 2006 13:15:54 +0100 From: root MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17617.59642.387149.247953@p15122568.pureserver.info> Date: Thu, 3 Aug 2006 13:15:54 +0100 To: gtk-list@gnome.org Subject: Stock icons in resource files X-Mailer: VM 7.18 under Emacs 21.4.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.05 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, FORGED_RCVD_HELO=0.135] X-Spam-Score: -0.05 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:52 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 12:15:59 -0000 The following problem is in 2.10.1, and may have been around for some versions previously, although things worked okay in the relatively distant past (2.0?). My gtk.rc file contains =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- pixmap_path "/install/share/lcm-tablet/graphics" style "lcm-tablet-stock" { stock["compass-gps"] = { { "compass-icon.png" } } stock["satellites"] = { { "satellites.png" } } } class "GtkWidget" style "lcm-tablet-stock" =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- as well as some other stuff which works perfectly. I am trying to load the icons into toolbar toggle buttons, but I just see white boxes with red crosses. No error messages anywhere. Snippets of my code include =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- static GtkRadioActionEntry menu_gps_radio [] = { { "Compass", "compass-gps", "_Compass", "C", "Touch the compass rose to move around on the map", 0 }, { "GPS", "satellites", "_GPS", "G", "The map will be centred based on information from the GPS receiver", 2 } }; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- and then =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- gtk_action_group_add_radio_actions (actions, menu_gps_radio, G_N_ELEMENTS (menu_gps_radio), 2, G_CALLBACK (gps_radio_source_changed), tablet); =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=- Everything works perfectly apart from the icons not showing up. Any ideas anyone? From Ralf.Wildenhues@gmx.de Fri Aug 4 14:54:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D3C943B024B for ; Fri, 4 Aug 2006 14:54:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05677-10 for ; Fri, 4 Aug 2006 14:54:16 -0400 (EDT) Received: from smtp3.netcologne.de (smtp3.netcologne.de [194.8.194.66]) by menubar.gnome.org (Postfix) with ESMTP id 8B5CE3B0095 for ; Fri, 4 Aug 2006 14:54:16 -0400 (EDT) Received: from localhost.localdomain (xdsl-81-173-177-253.netcologne.de [81.173.177.253]) by smtp3.netcologne.de (Postfix) with ESMTP id 6085867446; Fri, 4 Aug 2006 20:54:15 +0200 (CEST) Received: from ralf by localhost.localdomain with local (Exim 4.50) id 1G94oG-0004ZO-Au; Fri, 04 Aug 2006 20:54:12 +0200 Date: Fri, 4 Aug 2006 20:54:12 +0200 From: Ralf Wildenhues To: matthew@jenika.com Subject: Re: Compiling with MinGW Message-ID: <20060804185411.GE15973@iam.uni-bonn.de> Mail-Followup-To: matthew@jenika.com, libtool@gnu.org, abiword-dev@abisource.com, bug-gnu-gettext@gnu.org, gtk-list@gnome.org References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> Organization: Department of Numerical Simulation, University of Bonn User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.322 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_FAIL=1.142] X-Spam-Score: -1.322 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:30:50 -0400 Cc: abiword-dev@abisource.com, libtool@gnu.org, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 18:54:18 -0000 Hello Matthew, * matthew@jenika.com wrote on Fri, Aug 04, 2006 at 08:12:20PM CEST: > > This is not exactly a bug in a strict since but it is a complication > of building software with MinGW. > gcc -g -O2 -Wl,--disable-auto-import -o .libs/test-names.exe test- > names.o -Lc:/progra~1/wv libuniname.a ../lib/.libs/ > libgettextlib.dll.a /home/matthew/tmp/wv/gettext-0.15/gettext-tools/ > intl/.libs/libintl.dll.a -Lc:/progra~1/wv/lib > gcc.exe: /home/matthew/tmp/wv/gettext-0.15/gettext-tools/intl/.libs/ > libintl.dll.a: No such file or directory This isn't a Libtool bug at all, but rather an installation bug, I believe. > Both of the above errors are caused because of the environment the > software is being built in and how libtool interacts. The basic > problem is gcc for MinGW does not know how to properly handle cygwin > paths. Exactly. Did you compile GCC yourself but installed it in MSYS /bin? I think that was the thing not to do, as it inhibits the automatic path translation. See http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. If that wasn't the case, then I'd like more information, such as how and where you installed GCC, its version, and '../libtool --version'. Cheers, Ralf From matthew@jenika.com Fri Aug 4 15:31:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A69CD3B051C for ; Fri, 4 Aug 2006 15:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07303-04 for ; Fri, 4 Aug 2006 15:31:11 -0400 (EDT) Received: from yellow.jenika.com (yellow.jenika.com [71.39.42.123]) by menubar.gnome.org (Postfix) with ESMTP id 2FE383B0382 for ; Fri, 4 Aug 2006 15:31:09 -0400 (EDT) Received: from [192.168.1.7] (silver.jenika.inside [192.168.1.7]) by yellow.jenika.com (8.13.6/8.13.6) with ESMTP id k74JT3oE015136; Fri, 4 Aug 2006 12:29:03 -0700 In-Reply-To: <20060804185411.GE15973@iam.uni-bonn.de> References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <20060804185411.GE15973@iam.uni-bonn.de> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> Content-Transfer-Encoding: 7bit From: matthew@jenika.com Subject: Re: Compiling with MinGW Date: Fri, 4 Aug 2006 12:29:01 -0700 To: Ralf Wildenhues X-Mailer: Apple Mail (2.752.2) X-Scanned-By: MIMEDefang 2.56 on 192.168.1.3 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.292 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_CX=0.077, TW_DC=0.077, TW_GC=0.077, TW_JL=0.077] X-Spam-Score: -1.292 X-Spam-Level: X-Mailman-Approved-At: Fri, 04 Aug 2006 15:39:17 -0400 Cc: abiword-dev@abisource.com, libtool@gnu.org, bug-gnu-gettext@gnu.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 19:31:14 -0000 > Exactly. Did you compile GCC yourself but installed it in MSYS /bin? > I think that was the thing not to do, as it inhibits the automatic > path translation. See > http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. The gcc used comes from mingw. I installed MinGW by Downloading the auto installer at http:// prdownloads.sourceforge.net/mingw/MinGW-5.0.3.exe?download: Ran program and installed mingw and c++ support. By default this places gcc in c:/mingw/bin . I'm not using MSYS at all. I'm using MinGW for the compilers and cygwin for the shell and basic tools. In my path I have added / cygdrive/c/mingw/bin as the first item in my PATH. > If that wasn't the case, then I'd like more information, such as > how and > where you installed GCC, its version, and '../libtool --version'. gcc -v Reading specs from c:/mingw/bin/../lib/gcc/mingw32/3.4.2/specs Configured with: ../gcc/configure --with-gcc --with-gnu-ld --with-gnu- as --host=mingw32 --target=mingw32 --prefix=/mingw --enable-threads -- disable-nls --enable-languages=c,c++,f77,ada,objc,java --disable- win32-registry --disable-shared --enable-sjlj-exceptions --enable- libgcj --disable-java-awt --without-x --enable-java-gc=boehm -- disable-libgcj-debug --enable-interpreter --enable-hash- synchronization --enable-libstdcxx-debug Thread model: win32 gcc version 3.4.2 (mingw-special) For my compiles: gettext-0.15/gettext-tools/libtool --version ltmain.sh (GNU libtool) 1.5.22 (1.1220.2.365 2005/12/18 22:14:06) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. glib-2.12.1/libtool --version ltmain.sh (GNU libtool) 1.5.18 (1.1220.2.245 2005/05/16 08:55:27) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Matthew From gygy@cc.gatech.edu Fri Aug 4 17:52:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A773B01D8 for ; Fri, 4 Aug 2006 17:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14272-03 for ; Fri, 4 Aug 2006 17:52:07 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 8E0663B0072 for ; Fri, 4 Aug 2006 17:52:06 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Lq3D3024838; Fri, 4 Aug 2006 17:52:05 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k74Lq22F025534; Fri, 4 Aug 2006 17:52:02 -0400 (EDT) Date: Fri, 4 Aug 2006 17:52:02 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL In-Reply-To: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> Message-ID: References: <20060804141533.51920.qmail@web35204.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.101 tagged_above=-999 required=2 tests=[AWL=0.221, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.101 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 21:52:08 -0000 Hi Sergei, Thanks for your reply. I tried your software but ran into the same error. Finally I figured out that I just set PKG_CONFIG_PATH=../GLIB-2.12.0 instead of /root/GLIB-2.12.0 and that solves my problem with the Makefile. I wonder if that could be a bug in the atk and pango software configure file itself. Your software seems to be a very nice software but would be even better if I could use the default script but specify what software package I could install and their version number as command line parameters. Thanks and have a nice weekend! Yan -Yan Gu (gygy@cc.gatech.edu) On Fri, 4 Aug 2006, Sergei Steshenko wrote: > > > --- gygy@cc.gatech.edu wrote: > > > Hi, > > > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > > configure and make, I got the following error and the part related in > > Makefile is also shown as attached. It seems that the problem is the path > > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > > change the definition for GLIB_GENMARSHAL? > > > > Thanks > > > > Yan > > > > p/s > > 1/2: make output > > -------------- > > [root@lawn-199-77-206-16 atk-1.10.3]# make > > make all-recursive > > make[1]: Entering directory `/root/atk-1.10.3' > > Making all in atk > > make[2]: Entering directory `/root/atk-1.10.3/atk' > > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > > ./atkmarshal.list --header >> xgen-gmh \ > > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > > && rm -f xgen-gmh xgen-gmh~ \ > > && echo timestamp > stamp-atkmarshal.h > > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > > file or directory > > make[2]: *** [stamp-atkmarshal.h] Error 127 > > make[2]: Leaving directory `/root/atk-1.10.3/atk' > > make[1]: *** [all-recursive] Error 1 > > make[1]: Leaving directory `/root/atk-1.10.3' > > make: *** [all] Error 2 > > ------------------- > > > > 2/2: In Makefile, the related part is defined as shown below: > > ------ > > 25 top_builddir = . > > > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > > -I$(top_builddir)//root/glib-2.12.0/. - > > I$(top_builddir)//root/glib-2.12.0/./glib > > -I$(top_builddir)//root/glib-2.12.0/./gmodule > > 88 GLIB_GENMARSHAL = > > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > > ---------------------------------------------Note: this is not > > right------------ > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > Try my project - the tool successfully compiles 'atk' among other things. > > See my signature. > > --Sergei. > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > From sergstesh@yahoo.com Fri Aug 4 18:12:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CBDD3B00C6 for ; Fri, 4 Aug 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15142-04 for ; Fri, 4 Aug 2006 18:12:24 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id 0E5583B009A for ; Fri, 4 Aug 2006 18:12:24 -0400 (EDT) Received: (qmail 42369 invoked by uid 60001); 4 Aug 2006 22:12:23 -0000 Message-ID: <20060804221223.42367.qmail@web35205.mail.mud.yahoo.com> Received: from [84.94.204.73] by web35205.mail.mud.yahoo.com via HTTP; Fri, 04 Aug 2006 15:12:23 PDT Date: Fri, 4 Aug 2006 15:12:23 -0700 (PDT) From: Sergei Steshenko Subject: Re: atk compiling problem GLIB_GENMARSHAL To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 22:12:25 -0000 --- Yan Gu wrote: > Hi Sergei, > > Thanks for your reply. I tried your software but ran into the same error. > Finally I figured out that I just set PKG_CONFIG_PATH=../GLIB-2.12.0 > instead of /root/GLIB-2.12.0 and that solves my problem with the Makefile. > I wonder if that could be a bug in the atk and pango software > configure file itself. > > Your software seems to be a very nice software but would be even better if > I could use the default script but specify what software package I could > install and their version number as command line parameters. > > Thanks and have a nice weekend! > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Fri, 4 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- gygy@cc.gatech.edu wrote: > > > > > Hi, > > > > > > I got problem while compiling atk-1.10.3 on redhat Linux 2.4. After I run > > > configure and make, I got the following error and the part related in > > > Makefile is also shown as attached. It seems that the problem is the path > > > of GLIB_GENMARSHAL is not defined correctly. Does any one know where I can > > > change the definition for GLIB_GENMARSHAL? > > > > > > Thanks > > > > > > Yan > > > > > > p/s > > > 1/2: make output > > > -------------- > > > [root@lawn-199-77-206-16 atk-1.10.3]# make > > > make all-recursive > > > make[1]: Entering directory `/root/atk-1.10.3' > > > Making all in atk > > > make[2]: Entering directory `/root/atk-1.10.3/atk' > > > ..//root/glib-2.12.0/gobject/glib-genmarshal --prefix=atk_marshal > > > ./atkmarshal.list --header >> xgen-gmh \ > > > && (cmp -s xgen-gmh atkmarshal.h || cp xgen-gmh atkmarshal.h) \ > > > && rm -f xgen-gmh xgen-gmh~ \ > > > && echo timestamp > stamp-atkmarshal.h > > > /bin/sh: line 1: ..//root/glib-2.12.0/gobject/glib-genmarshal: No such > > > file or directory > > > make[2]: *** [stamp-atkmarshal.h] Error 127 > > > make[2]: Leaving directory `/root/atk-1.10.3/atk' > > > make[1]: *** [all-recursive] Error 1 > > > make[1]: Leaving directory `/root/atk-1.10.3' > > > make: *** [all] Error 2 > > > ------------------- > > > > > > 2/2: In Makefile, the related part is defined as shown below: > > > ------ > > > 25 top_builddir = . > > > > > > 87 GLIB_CFLAGS = -I$(top_builddir)//root/glib-2.12.0 > > > -I$(top_builddir)//root/glib-2.12.0/. - > > > I$(top_builddir)//root/glib-2.12.0/./glib > > > -I$(top_builddir)//root/glib-2.12.0/./gmodule > > > 88 GLIB_GENMARSHAL = > > > $(top_builddir)//root/glib-2.12.0/gobject/glib-genmarshal > > > ---------------------------------------------Note: this is not > > > right------------ > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > Try my project - the tool successfully compiles 'atk' among other things. > > > > See my signature. > > > > --Sergei. > > > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > The whole idea my tool is that configuration is provided in a file, not on command line. This is because any complex real target depends on others, so you can't just say that you want to compile a target without specifying other targets on which it depends. That is why config file reflects hierarchical data describing the dependencies. Command line is quite inconvenient for specifying nested dependencies. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From godlygeek@gmail.com Fri Aug 4 19:25:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FBD23B009A for ; Fri, 4 Aug 2006 19:25:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18055-09 for ; Fri, 4 Aug 2006 19:25:48 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.234]) by menubar.gnome.org (Postfix) with ESMTP id CFB0A3B010D for ; Fri, 4 Aug 2006 19:25:47 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so251619wxd for ; Fri, 04 Aug 2006 16:25:47 -0700 (PDT) Received: by 10.70.38.9 with SMTP id l9mr5198032wxl; Fri, 04 Aug 2006 16:25:47 -0700 (PDT) Received: by 10.70.124.6 with HTTP; Fri, 4 Aug 2006 16:25:46 -0700 (PDT) Message-ID: <17393e3e0608041625s13f08032t69ee55f17b426bd5@mail.gmail.com> Date: Fri, 4 Aug 2006 19:25:46 -0400 From: "Matt Wozniski" Sender: godlygeek@gmail.com To: gtk-list@gnome.org Subject: Gtk 2.6 GtkTextTag invisible property: Implemented? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: d75e6dbbe82b0189 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.4 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 23:25:48 -0000 The gtk.org docs for GTK 2.6's GtkTextTag say: The "invisible" property "invisible" gboolean : Read / Write Whether this text is hidden. Not implemented in GTK 2.0. Has this been implemented yet in GTK 2.6? That is, is it just GTK 2.0 that it is unimplemented in, or all of GTK to present? ~Matt Wozniski From kyndig@gmail.com Fri Aug 4 20:17:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 439203B04E4 for ; Fri, 4 Aug 2006 20:17:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20337-04 for ; Fri, 4 Aug 2006 20:17:17 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.229]) by menubar.gnome.org (Postfix) with ESMTP id 949683B02BB for ; Fri, 4 Aug 2006 20:17:17 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so257267wxd for ; Fri, 04 Aug 2006 17:17:17 -0700 (PDT) Received: by 10.70.38.12 with SMTP id l12mr3107749wxl; Fri, 04 Aug 2006 17:17:16 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Fri, 4 Aug 2006 17:17:16 -0700 (PDT) Message-ID: Date: Fri, 4 Aug 2006 20:17:16 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: Compiling with MinGW In-Reply-To: <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_86288_27991697.1154737036908" References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <20060804185411.GE15973@iam.uni-bonn.de> <06134D45-CBC1-4997-9216-13CE0CB02522@jenika.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.04 tagged_above=-999 required=2 tests=[AWL=0.359, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.04 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 00:17:20 -0000 ------=_Part_86288_27991697.1154737036908 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 8/4/06, matthew@jenika.com wrote: > > > Exactly. Did you compile GCC yourself but installed it in MSYS /bin? > > I think that was the thing not to do, as it inhibits the automatic > > path translation. See > > http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info. > FWIW - I wrote up a step-by-step using MinGW ( MSYS ) on WinXP. http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4 Calvin ------=_Part_86288_27991697.1154737036908 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
On 8/4/06, matthew@jenika.com < matthew@jenika.com> wrote:
> Exactly.  Did you compile GCC yourself but installed it in MSYS /bin?
> I think that was the thing not to do, as it inhibits the automatic
> path translation.  See
> http://www.mingw.org/mingwfaq.shtml#faq-usingwithmsys for more info.

FWIW - I wrote up a step-by-step using MinGW ( MSYS ) on WinXP.
http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4

Calvin

------=_Part_86288_27991697.1154737036908-- From tml@iki.fi Sat Aug 5 03:18:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2195E3B00E9 for ; Sat, 5 Aug 2006 03:18:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01195-01 for ; Sat, 5 Aug 2006 03:18:44 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id 5E7A43B0076 for ; Sat, 5 Aug 2006 03:18:44 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 307F0151493; Sat, 5 Aug 2006 10:18:36 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17620.17889.531000.626427@gargle.gargle.HOWL> Date: Sat, 5 Aug 2006 10:16:49 +0300 To: Bruno Haible Subject: Re: Compiling with MinGW In-Reply-To: <200608042212.43008.bruno@clisp.org> References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: libtool@gnu.org, gtk-list@gnome.org, bug-gnu-gettext@gnu.org, matthew@jenika.com, abiword-dev@abisource.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 07:18:46 -0000 Bruno Haible writes: > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. If with mingw one combines MSYS, it certainly does. Using MSYS with auto* and libtool is IMHO much more reliable than using Cygwin, MSYS gets less in the way and causes less confusion. > I use a recent cygwin as the development environment, and mingw only as > the deployment environment. How can mingw be a *deployment* environment (with which I assume you mean what end-users have), why would end-users of some native Win32 application need a compiler and linker? --tml From tml@iki.fi Sat Aug 5 03:21:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F00563B042A for ; Sat, 5 Aug 2006 03:21:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00908-09 for ; Sat, 5 Aug 2006 03:21:17 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id AF0393B0076 for ; Sat, 5 Aug 2006 03:21:16 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 6D33615109B; Sat, 5 Aug 2006 10:21:07 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17620.18041.546000.489601@gargle.gargle.HOWL> Date: Sat, 5 Aug 2006 10:19:21 +0300 To: Bob Friesenhahn Subject: Re: Compiling with MinGW In-Reply-To: References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: abiword-dev@abisource.com, libtool@gnu.org, matthew@jenika.com, bug-gnu-gettext@gnu.org, Bruno Haible , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 07:21:18 -0000 Bob Friesenhahn writes: > Libtool does support using the MinGW compiler via Cygwin or > MSYS (I have only tried MSYS). Both of these support Unix type paths > and automatically convert to Windows paths for MinGW. I don't think Cygwin does that to the same extent as MSYS. Isn't that the exact reason why MSYS was developed (as a fork of Cygwin), to get automatic translation of Unix type paths passed on the command line or as environment variables to non-Cygwin/MSYS programs? --tml From riboaz@xs4all.nl Sat Aug 5 04:33:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ABB43B0076 for ; Sat, 5 Aug 2006 04:33:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04031-06 for ; Sat, 5 Aug 2006 04:33:57 -0400 (EDT) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by menubar.gnome.org (Postfix) with ESMTP id 70AFF3B0071 for ; Sat, 5 Aug 2006 04:33:56 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr5.xs4all.nl (8.13.6/8.13.6) with ESMTP id k758Xsdb019348; Sat, 5 Aug 2006 10:33:55 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <229D14E2-9C13-4101-8FAD-D41918E948FD@xs4all.nl> Content-Transfer-Encoding: 7bit From: Richard Boaz Subject: Re: Pixmap Date: Sat, 5 Aug 2006 10:33:55 +0200 To: "Roses Roses" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.438 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, TW_GT=0.077, TW_QH=0.077] X-Spam-Score: -2.438 X-Spam-Level: Cc: GTK dev list X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 08:33:58 -0000 hi, one possible paradigm is to adhere to the following guidelines: 1) the configure event callback is responsible for calling all routines responsible for "drawing" the pixmap for ultimate display, but does NOT do the actual display to the screen; 2) the expose event callback is responsible for rendering the current pixmap to be displayed to the screen, but does NO "drawing" here, only render the pixmap to the screen via gdk_draw_drawable() or equivalent; 3.1) the drawing routine(s) are responsible for creating the pixmap for ultimate display; 3.2) store the address of the pixmap in a variable that the expose event callback also has access to (global or otherwise) 3.3) the last command as part of the drawing routine is to call gtk_widget_queue_draw_area() on the widget used to display the pixmap; this will force an expose event in this manner, your drawing routine is called on all configure events followed immediately by the expose event rendering the pixmap to the screen. while calling your drawing routine via a user-event, or some other event internal to the program, will also result in the expose event being called to render the newly made pixmap to the screen. so, in your case, you would attach the button-click to a callback ultimately calling your pixmap drawing routine. the drawing routine will then be called on button-click and your new pixmap will be rendered via the expose event. cheers, richard On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: > Hi!!! > > I'm programming a little interface but I have a prblem. The > objective of > this program is shows a pixmap qhich must ghange qhen the user > clicks on a > button. How the fuction of the button can change the pixmap assigned? > > One idea I've is declare the GtkPixmap as a global variable, but > I'm not > sure if this plan can run. > > Thank you very much > > _________________________________________________________________ > Descarga gratis la Barra de Herramientas de MSN > http://www.msn.es/usuario/busqueda/barra?XAPID=2031&DI=1055&SU=http% > 3A//www.hotmail.com&HL=LINKTAG1OPENINGTEXT_MSNBH > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > From jayarajuc@mic.co.in Sat Aug 5 08:25:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DD5233B0071 for ; Sat, 5 Aug 2006 08:25:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13281-01 for ; Sat, 5 Aug 2006 08:25:33 -0400 (EDT) Received: from ecm.mic.co.in (mail.mic.co.in [220.227.243.139]) by menubar.gnome.org (Postfix) with ESMTP id D6CBD3B00B3 for ; Sat, 5 Aug 2006 08:25:32 -0400 (EDT) Received: from mail.mic.co.in (unknown [192.168.1.8]) by ecm.mic.co.in (Postfix) with ESMTP id 6FC3F774C2 for ; Sat, 5 Aug 2006 17:58:49 +0530 (IST) Received: from NMSServer (unknown [192.168.1.227]) by mail.mic.co.in (Postfix) with ESMTP id 137EA48048 for ; Sat, 5 Aug 2006 17:54:40 +0530 (IST) Message-ID: <000701c6b88a$7d2c9830$e301a8c0@NMSServer> From: "jayarajuc" To: Subject: enroling into your gtk mail list Date: Sat, 5 Aug 2006 17:57:17 +0530 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.3790.1830 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1830 X-MailServ-MailFilter-MailScanner-Information: Please contact the ISP for more information X-MailServ-MailFilter-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-Information: Please contact us for more information X-NetcoreSpam2-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-SpamCheck: X-MailScanner-From: jayarajuc@mic.co.in X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.077 tagged_above=-999 required=2 tests=[BAYES_80=2, TW_GT=0.077] X-Spam-Score: 2.077 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 12:25:36 -0000 kindly accept my request in gtk mailing list jayarajuc jayarajuc@mic.co.in ------------------------------------------------------------------------ Confidentiality Notice The information contained in this Electronic Message and any ATTACHMENTs to this message are intended for the EXCLUSIVE USE of the ADDRESSEE(s) and may contain CONFIDENTIAL or PRIVILEGED information. If you are not the intended recipient, please notify the SENDER at MIC or itsupport@mic.co.in immediately and DESTROY all copies of this message and any attachmeents. ------------------------------------------------------------------------ From gygy@cc.gatech.edu Sat Aug 5 10:39:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5010F3B008D for ; Sat, 5 Aug 2006 10:39:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18650-01 for ; Sat, 5 Aug 2006 10:39:32 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 121253B00B3 for ; Sat, 5 Aug 2006 10:39:32 -0400 (EDT) Received: from siwenna.cc.gatech.edu (siwenna.cc.gatech.edu [130.207.7.232]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75EdVC1028011 for ; Sat, 5 Aug 2006 10:39:31 -0400 (EDT) Received: (from www@localhost) by siwenna.cc.gatech.edu (8.13.6/8.12.8) id k75EdShC005123; Sat, 5 Aug 2006 10:39:28 -0400 (EDT) X-Authentication-Warning: siwenna.cc.gatech.edu: www set sender to gygy@cc.gatech.edu using -f Received: from lawn-199-77-206-16.lawn.gatech.edu ([199.77.206.16]) (SquirrelMail authenticated user gygy) by webmail.cc.gatech.edu with HTTP; Sat, 5 Aug 2006 10:39:28 -0400 (EDT) Message-ID: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> Date: Sat, 5 Aug 2006 10:39:28 -0400 (EDT) Subject: missing libpangocairo-1.0.la From: gygy@cc.gatech.edu To: gtk-list@gnome.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.694 tagged_above=-999 required=2 tests=[AWL=-0.333, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, NO_REAL_NAME=0.961, TW_XF=0.077] X-Spam-Score: -1.694 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 14:39:33 -0000 Hi, While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: libtool: link: cannot find the library `../../pango-1.12.3/pango/libpangocairo-1.0.la' while in pango-1.12.3/pango, I can only find the following .la files libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la I did not change anything in pango or gtk. Can anyone tell me why the libpangocairo-1.0.la does not exist in pango? Thanks Yan From sergstesh@yahoo.com Sat Aug 5 12:33:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E0DA3B00B9 for ; Sat, 5 Aug 2006 12:33:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23184-10 for ; Sat, 5 Aug 2006 12:33:20 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id D67683B016D for ; Sat, 5 Aug 2006 12:33:19 -0400 (EDT) Received: (qmail 52246 invoked by uid 60001); 5 Aug 2006 16:33:19 -0000 Message-ID: <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35212.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 09:33:19 PDT Date: Sat, 5 Aug 2006 09:33:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.064 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077, TW_XV=0.077, TW_ZX=0.077] X-Spam-Score: 1.064 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 16:33:22 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > libtool: link: cannot find the library > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > while in pango-1.12.3/pango, I can only find the following .la files > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > I did not change anything in pango or gtk. Can anyone tell me why the > libpangocairo-1.0.la does not exist in pango? > > Thanks > > Yan > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is how my tool builds gtk+-2.8.19 (the same goes for 2.8.20; if you wish, I can try gtk+-2.10.1): " build.pl :INFO: using default target build sub for 'gtk+' target build.pl :INFO: checking what 'gtk+' target ($versioned_target=gtk+-2.8.19) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 build.pl :INFO: 'gtk+' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: starting sanity check for 'atk' target - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: sanity of 'atk' target appears to be reasonable - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: starting sanity check for 'pango' target - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: sanity of 'pango' target appears to be reasonable - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: using default target build sub for 'atk' target build.pl :INFO: checking what 'atk' target ($versioned_target=atk-1.10.3) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: 'atk' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: using default target build sub for 'glib' target build.pl :INFO: doing nothing to build 'glib' target since it has already been built and installed build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> atk build.pl :INFO: returned from recursion for 'atk' target ($versioned_target=atk-1.10.3) with $recursion_result=0 build.pl :INFO: building 'atk' target ($versioned_target=atk-1.10.3) proper because it hasn't been built yet build.pl :INFO: going to download 'atk-1.10.3.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.dit.upm.es/pub/GNOME/sources/atk/1.10/atk-1.10.3.tar.gz 19:32:04 URL: ftp://ftp.dit.upm.es/pub/GNOME/sources/atk/1.10/atk-1.10.3.tar.gz [722185] -> "atk-1.10.3.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/atk-1.10.3 build.pl :INFO: unpackaging atk-1.10.3.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf atk-1.10.3.tar.gz 1>atk-1.10.3.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'atk' target depends on the following targets: glib build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: 'configure' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/atk-1.10.3 1>configure.log 2>&1 build.pl :INFO: 'make' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.10.3/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/atk-1.10.3; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'atk' target ($versioned_target=atk-1.10.3) build.pl :INFO: using default target build sub for 'cairo' target build.pl :INFO: doing nothing to build 'cairo' target since it has already been built and installed build.pl :INFO: using default target build sub for 'pango' target build.pl :INFO: checking what 'pango' target ($versioned_target=pango-1.12.1) depends on and probaly building targets it depends on; $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: 'pango' target depends on other targets, will check and probably build them first build.pl :INFO: calling inherited layer build sub build.pl :INFO: checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: DONE checking targets - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: building, if necessary, sane targtes - $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: using default target build sub for 'cairo' target build.pl :INFO: doing nothing to build 'cairo' target since it has already been built and installed build.pl :INFO: using default target build sub for 'glib' target build.pl :INFO: doing nothing to build 'glib' target since it has already been built and installed build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ -> pango build.pl :INFO: returned from recursion for 'pango' target ($versioned_target=pango-1.12.1) with $recursion_result=0 build.pl :INFO: building 'pango' target ($versioned_target=pango-1.12.1) proper because it hasn't been built yet build.pl :INFO: going to download 'pango-1.12.1.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.dataplus.se/pub/GNOME/sources/pango/1.12/pango-1.12.1.tar.gz 19:32:51 URL: ftp://ftp.dataplus.se/pub/GNOME/sources/pango/1.12/pango-1.12.1.tar.gz [1777935] -> "pango-1.12.1.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/pango-1.12.1 build.pl :INFO: unpackaging pango-1.12.1.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf pango-1.12.1.tar.gz 1>pango-1.12.1.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'pango' target depends on the following targets: cairo glib build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig for $next_level_target=cairo build.pl :INFO: found 'cairo.pc' file, assuming 'cairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L cairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/usr/X11R6/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: 'configure' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/pango-1.12.1 1>configure.log 2>&1 build.pl :INFO: 'make' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.12.1/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/pango-1.12.1; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'pango' target ($versioned_target=pango-1.12.1) build.pl :INFO: DONE building, if necessary, sane targtes $scalar_path=Gnome2 -> Gnome2-Canvas -> Gtk2 -> gtk+ build.pl :INFO: returned from recursion for 'gtk+' target ($versioned_target=gtk+-2.8.19) with $recursion_result=0 build.pl :INFO: building 'gtk+' target ($versioned_target=gtk+-2.8.19) proper because it hasn't been built yet build.pl :INFO: going to download 'gtk+-2.8.19.tar.gz' file build.pl :INFO: executing ==> \wget -nv -c -t 5 ftp://ftp.no.gnome.org/pub/GNOME/sources/gtk+/2.8/gtk+-2.8.19.tar.gz 19:37:18 URL: ftp://ftp.no.gnome.org/pub/GNOME/sources/gtk+/2.8/gtk+-2.8.19.tar.gz [18222104] -> "gtk+-2.8.19.tar.gz" [1] build.pl :INFO: executing ==> \rm -rf /mnt/removable4/sergei/build_work/build/gtk+-2.8.19 build.pl :INFO: unpackaging gtk+-2.8.19.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19.unpackage.log' build.pl :INFO: executing ==> \cd /mnt/removable4/sergei/build_work/build; tar zxvf gtk+-2.8.19.tar.gz 1>gtk+-2.8.19.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'gtk+' target depends on the following targets: atk cairo glib pango build.pl :WARNING: have no other choice, but to start heuristic dependency search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig for $next_level_target=atk build.pl :INFO: found 'atk.pc' file, assuming 'atk' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L atk' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig for $next_level_target=cairo build.pl :INFO: found 'cairo.pc' file, assuming 'cairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L cairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/usr/X11R6/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig for $next_level_target=glib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib build.pl :INFO: checking *.pc files $pkgconfig_dir=/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig for $next_level_target=pango build.pl :INFO: found 'pango.pc' file, assuming 'pango' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pango' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangocairo.pc' file, assuming 'pangocairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangocairo' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6/lib build.pl :INFO: found 'pangox.pc' file, assuming 'pangox' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangox' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangoxft.pc' file, assuming 'pangoxft' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoxft' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: found 'pangoft2.pc' file, assuming 'pangoft2' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoft2' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib build.pl :INFO: 'configure' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/configure.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; ./configure --prefix=/mnt/removable4/sergei/build_work/install/gtk+-2.8.19 1>configure.log 2>&1 build.pl :INFO: 'make' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/make.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; make 1>make.log 2>&1 build.pl :INFO: 'make install' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.19/make_install.log' build.pl executing ==> cd /mnt/removable4/sergei/build_work/build/gtk+-2.8.19; PATH=/mnt/removable4/sergei/build_work/install/glib-2.10.3/bin:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/glib-2.10.3/lib/pkgconfig:/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; make install 1>make_install.log 2>&1 build.pl :INFO: done building 'gtk+' target ($versioned_target=gtk+-2.8.19) ". If you are interested, visit the URL in my signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sat Aug 5 13:33:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C1A743B0012 for ; Sat, 5 Aug 2006 13:33:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26008-10 for ; Sat, 5 Aug 2006 13:33:06 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 2DC5B3B000B for ; Sat, 5 Aug 2006 13:33:06 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k75HX4U9012751 for ; Sat, 5 Aug 2006 19:33:05 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 76B0E23D87; Sat, 5 Aug 2006 19:33:04 +0200 (CEST) Date: Sat, 5 Aug 2006 19:33:08 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: missing libpangocairo-1.0.la Message-ID: <20060805173307.GK16209@potato.chello.upc.cz> References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_XF=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 17:33:09 -0000 On Sat, Aug 05, 2006 at 09:33:19AM -0700, Sergei Steshenko wrote: > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > libtool: link: cannot find the library > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > libpangocairo-1.0.la does not exist in pango? > > > > This is how my tool builds gtk+-2.8.19 (the same goes for 2.8.20; if you wish, > I can try gtk+-2.10.1): I wonder how is one supposed to infer the answer from the ugly list of commands and debug prints of your amazing tool. To the original poster: Pango can be built with various backends (Xft, Win32, ...), Cairo is one of them. So while Pango itself can be built (and was built) without Cairo support, Gtk+ 2.10 requires Cairo. Therefore you have to install Cairo and rebuild Pango. Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sat Aug 5 14:06:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 271C53B0008 for ; Sat, 5 Aug 2006 14:06:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28498-06 for ; Sat, 5 Aug 2006 14:06:00 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 0C9823B0012 for ; Sat, 5 Aug 2006 14:06:00 -0400 (EDT) Received: (qmail 963 invoked by uid 60001); 5 Aug 2006 18:05:59 -0000 Message-ID: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35203.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 11:05:59 PDT Date: Sat, 5 Aug 2006 11:05:59 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: gygy@cc.gatech.edu, gtk-list@gnome.org In-Reply-To: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.987 tagged_above=-999 required=2 tests=[AWL=0.077, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: 0.987 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:06:03 -0000 --- gygy@cc.gatech.edu wrote: > Hi, > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > libtool: link: cannot find the library > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > while in pango-1.12.3/pango, I can only find the following .la files > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > I did not change anything in pango or gtk. Can anyone tell me why the > libpangocairo-1.0.la does not exist in pango? > > Thanks > > Yan > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I have checked my tool with gtk+-2.10.1 - compiles OK. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Sat Aug 5 14:18:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099433B002B for ; Sat, 5 Aug 2006 14:18:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28906-03 for ; Sat, 5 Aug 2006 14:17:59 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id BD7AB3B000B for ; Sat, 5 Aug 2006 14:17:58 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75IHwu4018397; Sat, 5 Aug 2006 14:17:58 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75IHvOo001908; Sat, 5 Aug 2006 14:17:57 -0400 (EDT) Date: Sat, 5 Aug 2006 14:17:57 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> Message-ID: References: <20060805180559.961.qmail@web35203.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=0.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: -2.053 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:18:00 -0000 That's great. May I have a copy of the script file for gtk 2.10.1? Thanks Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > --- gygy@cc.gatech.edu wrote: > > > Hi, > > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > libtool: link: cannot find the library > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > libpangocairo-1.0.la does not exist in pango? > > > > Thanks > > > > Yan > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > I have checked my tool with gtk+-2.10.1 - compiles OK. > > --Sergei. > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > From sergstesh@yahoo.com Sat Aug 5 14:29:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 63B653B000B for ; Sat, 5 Aug 2006 14:29:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29255-07 for ; Sat, 5 Aug 2006 14:29:09 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 0F6503B007A for ; Sat, 5 Aug 2006 14:29:09 -0400 (EDT) Received: (qmail 95842 invoked by uid 60001); 5 Aug 2006 18:29:08 -0000 Message-ID: <20060805182908.95840.qmail@web35212.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35212.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 11:29:08 PDT Date: Sat, 5 Aug 2006 11:29:08 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.948 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_XF=0.077] X-Spam-Score: 0.948 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 18:29:10 -0000 --- Yan Gu wrote: > That's great. May I have a copy of the script file for gtk 2.10.1? > > Thanks > > Yan > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- gygy@cc.gatech.edu wrote: > > > > > Hi, > > > > > > While I tried to compiled gtk+-2.10.1 on redhat, I got the following error: > > > > > > libtool: link: cannot find the library > > > `../../pango-1.12.3/pango/libpangocairo-1.0.la' > > > > > > while in pango-1.12.3/pango, I can only find the following .la files > > > > > > libpango-1.0.la libpangoft2-1.0.la libpangox-1.0.la libpangoxft-1.0.la > > > > > > I did not change anything in pango or gtk. Can anyone tell me why the > > > libpangocairo-1.0.la does not exist in pango? > > > > > > Thanks > > > > > > Yan > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > I have checked my tool with gtk+-2.10.1 - compiles OK. > > > > --Sergei. > > > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > You have to change three lines - this is from the document: http://appsfromscratch.berlios.de/README : " 3. FOR THE IMPATIENT: CHANGING VERSIONS OF TARGETS TO BE BUILT. --------------------------------------------------------------- If a newer version of a target is available, for example, if there is gtk+-2.8.19 -> gtk+-2.8.20 transition, do the following: 1) open build data subroutine file in your favorite editor; 2) locate the piece of code describing the target, for 'gtk+' the piece looks looks this: ... targets => { 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '19', ... 3) locate the lines describing major, minor and micro versions, in the above example they are: my $major_ver = '2'; my $minor_ver = '8'; ... micro_ver => '19', 4) change the version (for gtk+-2.8.19 -> gtk+-2.8.20 transition) replace micro_ver => '19', with micro_ver => '20', . 5) rerun the build. ". Anything unclear in the above piece ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sat Aug 5 15:18:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3792B3B002C for ; Sat, 5 Aug 2006 15:18:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31550-01 for ; Sat, 5 Aug 2006 15:18:45 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 52C3B3B01E3 for ; Sat, 5 Aug 2006 15:18:43 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k75JIf1j022392 for ; Sat, 5 Aug 2006 21:18:42 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 8DE2E23D87; Sat, 5 Aug 2006 21:18:41 +0200 (CEST) Date: Sat, 5 Aug 2006 21:18:45 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: missing libpangocairo-1.0.la Message-ID: <20060805191845.GL16209@potato.chello.upc.cz> References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> <20060805173307.GK16209@potato.chello.upc.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 19:18:49 -0000 Please stay on the list. On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > I tried to install cairo and rebuild pango but it is still the same thing. > Do I need to do something in pango to let it build with cairo when > rebuilding it? All I do is > "configure;make;make install" Does Pango's ./configure print Cairo among the backends? You need to do exactly the same as with all the other libraries (have PKG_CONFIG_PATH set, etc.). Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sat Aug 5 15:29:51 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13BAE3B000B for ; Sat, 5 Aug 2006 15:29:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31686-10 for ; Sat, 5 Aug 2006 15:29:50 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id CBB733B0008 for ; Sat, 5 Aug 2006 15:29:49 -0400 (EDT) Received: (qmail 44062 invoked by uid 60001); 5 Aug 2006 19:29:49 -0000 Message-ID: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35205.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 12:29:49 PDT Date: Sat, 5 Aug 2006 12:29:49 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060805191845.GL16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 19:29:51 -0000 --- David Neèas (Yeti) wrote: > > Please stay on the list. > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > I tried to install cairo and rebuild pango but it is still the same thing. > > Do I need to do something in pango to let it build with cairo when > > rebuilding it? All I do is > > "configure;make;make install" > > Does Pango's ./configure print Cairo among the backends? > > You need to do exactly the same as with all the other > libraries (have PKG_CONFIG_PATH set, etc.). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > In the earlier published by myself excerpt from build log file one can see exactly what the dependencies are, including values of PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed at each step. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Sat Aug 5 16:00:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BDBE63B000A for ; Sat, 5 Aug 2006 16:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00676-09 for ; Sat, 5 Aug 2006 16:00:34 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 60F9E3B0012 for ; Sat, 5 Aug 2006 16:00:27 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K0Q2n027116; Sat, 5 Aug 2006 16:00:26 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K0QMB012961; Sat, 5 Aug 2006 16:00:26 -0400 (EDT) Date: Sat, 5 Aug 2006 16:00:26 -0400 (EDT) From: Yan Gu To: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> Message-ID: References: <20060805192949.44060.qmail@web35205.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.13 tagged_above=-999 required=2 tests=[AWL=0.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.13 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:00:35 -0000 Hi Sergei, the PKG_CONFIG_PATH in your build log file is PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib= /pkgconfig but there seems to be no lib/pkgconfig under my cairo directory (cairo-1.2.0) Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > --- David Ne=E8as (Yeti) wrote: > > > > > Please stay on the list. > > > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > > I tried to install cairo and rebuild pango but it is still the same t= hing. > > > Do I need to do something in pango to let it build with cairo when > > > rebuilding it? All I do is > > > "configure;make;make install" > > > > Does Pango's ./configure print Cairo among the backends? > > > > You need to do exactly the same as with all the other > > libraries (have PKG_CONFIG_PATH set, etc.). > > > > Yeti > > > > > > -- > > Anonyms eat their boogers. > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > In the earlier published by myself excerpt from build log file one > can see exactly what the dependencies are, including values of > PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed > at each step. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > > From gygy@cc.gatech.edu Sat Aug 5 16:01:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 635023B006D for ; Sat, 5 Aug 2006 16:01:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00768-02 for ; Sat, 5 Aug 2006 16:01:42 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id 8F9CC3B0012 for ; Sat, 5 Aug 2006 16:01:41 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K1fop027225; Sat, 5 Aug 2006 16:01:41 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k75K1ecM013139; Sat, 5 Aug 2006 16:01:40 -0400 (EDT) Date: Sat, 5 Aug 2006 16:01:40 -0400 (EDT) From: Yan Gu To: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= Subject: Re: missing libpangocairo-1.0.la In-Reply-To: <20060805191845.GL16209@potato.chello.upc.cz> Message-ID: References: <36815.199.77.206.16.1154788768.squirrel@webmail.cc.gatech.edu> <20060805163319.52244.qmail@web35212.mail.mud.yahoo.com> <20060805173307.GK16209@potato.chello.upc.cz> <20060805191845.GL16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.162 tagged_above=-999 required=2 tests=[AWL=0.160, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_GT=0.077] X-Spam-Score: -2.162 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:01:42 -0000 Hi David, it seems that cairo is not in the backend list of pango. I have set the PKG_CONFIG_PATH=3D/root/cairo-1.2.0, but it does not work. May I take a loo= k at your setup of PKG_CONFIG_PATH? Thanks Yan -Yan Gu (gygy@cc.gatech.edu) On Sat, 5 Aug 2006, David [iso-8859-2] Ne=E8as (Yeti) wrote: > > Please stay on the list. > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > I tried to install cairo and rebuild pango but it is still the same thi= ng. > > Do I need to do something in pango to let it build with cairo when > > rebuilding it? All I do is > > "configure;make;make install" > > Does Pango's ./configure print Cairo among the backends? > > You need to do exactly the same as with all the other > libraries (have PKG_CONFIG_PATH set, etc.). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > From sergstesh@yahoo.com Sat Aug 5 16:08:18 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 172743B000A for ; Sat, 5 Aug 2006 16:08:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01078-05 for ; Sat, 5 Aug 2006 16:08:17 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 0D0E63B006E for ; Sat, 5 Aug 2006 16:08:17 -0400 (EDT) Received: (qmail 43584 invoked by uid 60001); 5 Aug 2006 20:08:16 -0000 Message-ID: <20060805200816.43578.qmail@web35211.mail.mud.yahoo.com> Received: from [84.95.90.123] by web35211.mail.mud.yahoo.com via HTTP; Sat, 05 Aug 2006 13:08:16 PDT Date: Sat, 5 Aug 2006 13:08:16 -0700 (PDT) From: Sergei Steshenko Subject: Re: missing libpangocairo-1.0.la To: Yan Gu In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'Cc': Cc: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 20:08:18 -0000 --- Yan Gu wrote: > Hi Sergei, > > the PKG_CONFIG_PATH in your build log file is > > PKG_CONFIG_PATH=/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig > > but there seems to be no lib/pkgconfig under my cairo directory > (cairo-1.2.0) > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > > On Sat, 5 Aug 2006, Sergei Steshenko wrote: > > > > > > > --- David Neèas (Yeti) wrote: > > > > > > > > Please stay on the list. > > > > > > On Sat, Aug 05, 2006 at 02:29:24PM -0400, Yan Gu wrote: > > > > I tried to install cairo and rebuild pango but it is still the same thing. > > > > Do I need to do something in pango to let it build with cairo when > > > > rebuilding it? All I do is > > > > "configure;make;make install" > > > > > > Does Pango's ./configure print Cairo among the backends? > > > > > > You need to do exactly the same as with all the other > > > libraries (have PKG_CONFIG_PATH set, etc.). > > > > > > Yeti > > > > > > > > > -- > > > Anonyms eat their boogers. > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > In the earlier published by myself excerpt from build log file one > > can see exactly what the dependencies are, including values of > > PKG_CONFIG_PATH, LD_LIBRARY_PATH environment variables needed > > at each step. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > Could attach the build log file ? It's impossible to devug this not seeing it. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bonefry@gmail.com Sat Aug 5 19:11:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A66583B00C9 for ; Sat, 5 Aug 2006 19:11:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07979-03 for ; Sat, 5 Aug 2006 19:11:39 -0400 (EDT) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.197]) by menubar.gnome.org (Postfix) with ESMTP id 5DD663B000A for ; Sat, 5 Aug 2006 19:11:38 -0400 (EDT) Received: by hu-out-0102.google.com with SMTP id 24so424886hud for ; Sat, 05 Aug 2006 16:11:37 -0700 (PDT) Received: by 10.78.147.19 with SMTP id u19mr2000739hud; Sat, 05 Aug 2006 16:11:36 -0700 (PDT) Received: from 198-122-35-89-cable.canals.ro ( [89.35.122.198]) by mx.gmail.com with ESMTP id 33sm1048486hue.2006.08.05.16.11.35; Sat, 05 Aug 2006 16:11:36 -0700 (PDT) Subject: help a newbie with GObject To: gtk-list@gnome.org Content-Type: text/plain Date: Sun, 06 Aug 2006 02:11:51 +0300 Message-Id: <1154819511.11924.12.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit From: Alex Nedelcu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.4 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Aug 2006 23:11:39 -0000 Hello, I am trying to wrap my head around the GObject/GType system, but because of the lack of good documentation I am having trouble understanding it. Do you know any good tutorial on GObject ? I found the tutorial available on developer.gnome.org (http://www.le-hacker.org/papers/gobject/) not for newbies. So I figured that the best way to understand anything is too have a working equivalent of something I can understand. Can someone be kind and translate the following Java classes in C using GObject ? (I am guessing that it should be a trivial task for someone experienced with the GObject system) Thanks in advance ... abstract class Animal { void feed() { print("Feeding some animal"); } } class Dog extends Animal { static int legs = 4; String name; int age; public Dog(String name, int age) { this.name = name; this.age = age; } void feed() { print("Feeding a canine named " + this.name); } } // ....... Animal animals[] = { new Dog("Bella", 2), new Dog("Toto", 3) }; for (int i=0; i X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 688883B0283 for ; Sat, 5 Aug 2006 20:51:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11197-05 for ; Sat, 5 Aug 2006 20:51:24 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 456103B0008 for ; Sat, 5 Aug 2006 20:51:23 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k760pLq1003766 for ; Sun, 6 Aug 2006 02:51:22 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 660AD23E10; Sun, 6 Aug 2006 02:51:21 +0200 (CEST) Date: Sun, 6 Aug 2006 02:51:27 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: help a newbie with GObject Message-ID: <20060806005127.GR16209@potato.chello.upc.cz> References: <1154819511.11924.12.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1154819511.11924.12.camel@localhost> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 00:51:26 -0000 On Sun, Aug 06, 2006 at 02:11:51AM +0300, Alex Nedelcu wrote: > I am trying to wrap my head around the GObject/GType system, but because > of the lack of good documentation I am having trouble understanding it. > > Do you know any good tutorial on GObject ? > I found the tutorial available on developer.gnome.org > (http://www.le-hacker.org/papers/gobject/) not for newbies. The tutorial is now a part of GObject API documentation -- and it is good if you ask. In fact I cannot imagine what do you mean by the `lack of good documentation'. > So I figured that the best way to understand anything is too have a > working equivalent of something I can understand. In my opinion to understand GObject one should forget the object oriented mumbo jumbo for a while and view both classes and instances and the plain C structs they physically are and how they contain their parents like a matryoshka. That is to imagine what struct _Child { Parent parent_instance; gint data_member; }; and struct _ChildClass { ParentClass parent_class; void (*method)(Child *child); }; actually means. How [almost] everything else works clearly follows from that. The syntax is kind of baroque but a user of Gtk+ should be already trained to it. > Can someone be kind and translate the following Java classes in C using > GObject ? > > (I am guessing that it should be a trivial task for someone experienced > with the GObject system) > > Thanks in advance ... I'm leaving out the boilerplate, it is well described in the tutorial and it adds lots of code to read without any value (I doubt I have ever written it manually, I just take it from anotehr file and use s/// to change names). I'm also prefixing everything with my- (which is how namespaces are made in C). Also see Gtk+ source code -- Gtk+ is nothing more than a large collection of GObject examples... > > abstract class Animal > { > void feed() > { > print("Feeding some animal"); > } > } myanimal.h ================================================ struct _MyAnimalClass { GObjectClass parent_class; void (*feed)(MyAnimal *animal); }; struct _MyAnimal { GObject parent_instance; /* empty */ }; void my_animal_feed(MyAnimal *animal); myanimal.c ================================================ static void my_animal_feed_real(MyAnimal *animal); G_DEFINE_ABSTRACT_TYPE(MyAnimal, my_animal, G_TYPE_OBJECT) static void my_animal_class_init(MyAnimalClass *klass) { klass->feed = &my_animal_feed_real; } static void my_animal_init(MyAnimal *animal) { /* empty */ } void my_animal_feed(MyAnimal *animal) { /* Generally the method must be tested for NULL, but * here we know it always exists */ MY_ANIMAL_GET_CLASS(animal)->feed(animal); } static void my_animal_feed_real(MyAnimal *animal) { printf("Feeding some animal\n"); } > class Dog extends Animal > { > static int legs = 4; > > String name; > int age; > > public Dog(String name, int age) > { > this.name = name; > this.age = age; > } > > void feed() > { > print("Feeding a canine named " + this.name); > } > } mydog.h ================================================ struct _MyDogClass { MyAnimalClass parent_class; gint legs; }; struct _MyDog { MyAnimal parent_instance; GString *name; gint age; } MyDog* my_dog_new(const gchar *name, gint age); mydog.c ================================================ static void my_dog_finalize(GObject *object); static void my_dog_feed(MyAnimal *animal); G_DEFINE_TYPE(MyDog, my_dog, MY_TYPE_DOG) static void my_dog_class_init(MyDogClass *klass) { GObjectClass gobject_class = G_OBJECT_CLASS(klass); MyAnimalClass animal_class = MY_ANIMAL_CLASS(klass); gobject_class->finalize = &my_dog_finalize; animal_class->feed = &my_dog_feed; /* The semantics is not exactly the same */ klass->legs = 4; } static void my_dog_init(MyDog *dog) { dog->name = g_string_new(""); } static void my_dog_finalize(GObject *object) { MyDog *dog; dog = MY_DOG(object); g_string_free(dog->name, TRUE); /* Generally the method must be tested for NULL, but * here we know it always exists */ G_OBJECT_CLASS(my_dog_parent_class)->finalize(object); } MyDog* my_dog_new(const gchar *name, gint age) { MyDog *dog; dog = g_object_new(MY_TYPE_DOG, NULL); g_string_assign(dog->name, name); dog->age = age; /* If MyDog registered name and age as properties we * could also do * dog = g_object_new(MY_TYPE_DOG, "name", name, "age", age, NULL); */ return dog; } static void my_dog_feed(MyAnimal *animal) { MyDog *dog; dog = MY_DOG(animal); printf("Feeding a canine named %s\n", dog->name->str); } > // ....... > > Animal animals[] = { > new Dog("Bella", 2), > new Dog("Toto", 3) > }; > > for (int i=0; i animals[i].feed(); /* The array initialization above is too dynamic plain * old C, so just make two animals to demonstrate feed(). * * Also, it is impossible to work with GObjects by _value_, * use pointers. */ static MyAnimal *animals[2]; animals[0] = MY_ANIMAL(my_dog_new("Bella", 2)); animals[1] = MY_ANIMAL(my_dog_new("Toto", 3)); for (i = 0; i < G_N_ELEMENTS(animals); i++) my_animal_feed(animals[i]); Yeti -- Anonyms eat their boogers. From bonefry@gmail.com Sun Aug 6 01:19:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2153D3B007A for ; Sun, 6 Aug 2006 01:19:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20616-01 for ; Sun, 6 Aug 2006 01:19:37 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by menubar.gnome.org (Postfix) with ESMTP id 80E0A3B002C for ; Sun, 6 Aug 2006 01:19:36 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x29so628978nfb for ; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Received: by 10.78.136.7 with SMTP id j7mr2034279hud; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Received: from 198-122-35-89-cable.canals.ro ( [89.35.122.198]) by mx.gmail.com with ESMTP id 28sm987253hua.2006.08.05.22.19.34; Sat, 05 Aug 2006 22:19:35 -0700 (PDT) Subject: Re: help a newbie with GObject From: Alex Nedelcu To: gtk-list@gnome.org In-Reply-To: <20060806005127.GR16209@potato.chello.upc.cz> References: <1154819511.11924.12.camel@localhost> <20060806005127.GR16209@potato.chello.upc.cz> Content-Type: text/plain; charset=UTF-8 Date: Sun, 06 Aug 2006 08:19:51 +0300 Message-Id: <1154841592.5499.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.361 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.361 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 05:19:40 -0000 Thank you, your translation really helped. Sorry about some of my remarks ... I am not a C programmer (although I do know C) and all this looks a little foreign to me. I don't even know how to use GTK, but I want to learn how, and my way of learning is bottom-up, that's why I started with GLib, although that's not the recommended path of a newbie. All things are clearer since yesterday, and I'm slowly getting used to the syntax. I'm not scared because it is baroque, I'm scared because there are things that I do not understand how they work ... but I'll figure it out. Thanks again, On Sun, 2006-08-06 at 02:51 +0200, David NeÄas (Yeti) wrote: > On Sun, Aug 06, 2006 at 02:11:51AM +0300, Alex Nedelcu wrote: > > I am trying to wrap my head around the GObject/GType system, but because > > of the lack of good documentation I am having trouble understanding it. > > > > Do you know any good tutorial on GObject ? > > I found the tutorial available on developer.gnome.org > > (http://www.le-hacker.org/papers/gobject/) not for newbies. > > The tutorial is now a part of GObject API documentation -- > and it is good if you ask. In fact I cannot imagine what do > you mean by the `lack of good documentation'. > > > So I figured that the best way to understand anything is too have a > > working equivalent of something I can understand. > > In my opinion to understand GObject one should forget the > object oriented mumbo jumbo for a while and view both > classes and instances and the plain C structs they > physically are and how they contain their parents like > a matryoshka. That is to imagine what > > struct _Child { > Parent parent_instance; > > gint data_member; > }; > > and > > struct _ChildClass { > ParentClass parent_class; > > void (*method)(Child *child); > }; > > actually means. How [almost] everything else works clearly > follows from that. The syntax is kind of baroque but a user > of Gtk+ should be already trained to it. > > > Can someone be kind and translate the following Java classes in C using > > GObject ? > > > > (I am guessing that it should be a trivial task for someone experienced > > with the GObject system) > > > > Thanks in advance ... > > I'm leaving out the boilerplate, it is well described in the > tutorial and it adds lots of code to read without any value > (I doubt I have ever written it manually, I just take it > from anotehr file and use s/// to change names). I'm also > prefixing everything with my- (which is how namespaces are > made in C). > > Also see Gtk+ source code -- Gtk+ is nothing more than > a large collection of GObject examples... > > > > > abstract class Animal > > { > > void feed() > > { > > print("Feeding some animal"); > > } > > } > > myanimal.h ================================================ > > struct _MyAnimalClass { > GObjectClass parent_class; > > void (*feed)(MyAnimal *animal); > }; > > struct _MyAnimal { > GObject parent_instance; > > /* empty */ > }; > > > void my_animal_feed(MyAnimal *animal); > > > myanimal.c ================================================ > > static void my_animal_feed_real(MyAnimal *animal); > > G_DEFINE_ABSTRACT_TYPE(MyAnimal, my_animal, G_TYPE_OBJECT) > > static void > my_animal_class_init(MyAnimalClass *klass) > { > klass->feed = &my_animal_feed_real; > } > > static void > my_animal_init(MyAnimal *animal) > { > /* empty */ > } > > void > my_animal_feed(MyAnimal *animal) > { > /* Generally the method must be tested for NULL, but > * here we know it always exists */ > MY_ANIMAL_GET_CLASS(animal)->feed(animal); > } > > static void > my_animal_feed_real(MyAnimal *animal) > { > printf("Feeding some animal\n"); > } > > > class Dog extends Animal > > { > > static int legs = 4; > > > > String name; > > int age; > > > > public Dog(String name, int age) > > { > > this.name = name; > > this.age = age; > > } > > > > void feed() > > { > > print("Feeding a canine named " + this.name); > > } > > } > > mydog.h ================================================ > > struct _MyDogClass { > MyAnimalClass parent_class; > > gint legs; > }; > > struct _MyDog { > MyAnimal parent_instance; > > GString *name; > gint age; > } > > MyDog* my_dog_new(const gchar *name, gint age); > > > mydog.c ================================================ > > static void my_dog_finalize(GObject *object); > static void my_dog_feed(MyAnimal *animal); > > G_DEFINE_TYPE(MyDog, my_dog, MY_TYPE_DOG) > > static void > my_dog_class_init(MyDogClass *klass) > { > GObjectClass gobject_class = G_OBJECT_CLASS(klass); > MyAnimalClass animal_class = MY_ANIMAL_CLASS(klass); > > gobject_class->finalize = &my_dog_finalize; > animal_class->feed = &my_dog_feed; > /* The semantics is not exactly the same */ > klass->legs = 4; > } > > static void > my_dog_init(MyDog *dog) > { > dog->name = g_string_new(""); > } > > static void > my_dog_finalize(GObject *object) > { > MyDog *dog; > > dog = MY_DOG(object); > g_string_free(dog->name, TRUE); > > /* Generally the method must be tested for NULL, but > * here we know it always exists */ > G_OBJECT_CLASS(my_dog_parent_class)->finalize(object); > } > > MyDog* > my_dog_new(const gchar *name, > gint age) > { > MyDog *dog; > > dog = g_object_new(MY_TYPE_DOG, NULL); > g_string_assign(dog->name, name); > dog->age = age; > /* If MyDog registered name and age as properties we > * could also do > * dog = g_object_new(MY_TYPE_DOG, "name", name, "age", age, NULL); > */ > > return dog; > } > > static void > my_dog_feed(MyAnimal *animal) > { > MyDog *dog; > > dog = MY_DOG(animal); > printf("Feeding a canine named %s\n", dog->name->str); > } > > > // ....... > > > > Animal animals[] = { > > new Dog("Bella", 2), > > new Dog("Toto", 3) > > }; > > > > for (int i=0; i > animals[i].feed(); > > /* The array initialization above is too dynamic plain > * old C, so just make two animals to demonstrate feed(). > * > * Also, it is impossible to work with GObjects by _value_, > * use pointers. */ > > static MyAnimal *animals[2]; > > animals[0] = MY_ANIMAL(my_dog_new("Bella", 2)); > animals[1] = MY_ANIMAL(my_dog_new("Toto", 3)); > > for (i = 0; i < G_N_ELEMENTS(animals); i++) > my_animal_feed(animals[i]); > > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From rmy@tigress.co.uk Sun Aug 6 07:10:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09BDA3B0091 for ; Sun, 6 Aug 2006 07:10:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19509-01 for ; Sun, 6 Aug 2006 07:10:36 -0400 (EDT) Received: from intgat.tigress.co.uk (mail.tigress.co.uk [195.172.168.163]) by menubar.gnome.org (Postfix) with ESMTP id 3DE3B3B0014 for ; Sun, 6 Aug 2006 07:10:35 -0400 (EDT) Received: (from uucp@localhost) by intgat.tigress.co.uk (8.12.11.20060308/8.11.6) id k76BAX04017275 for ; Sun, 6 Aug 2006 12:10:33 +0100 Received: from marvin.tigress.co.uk(195.172.168.164) by intgat.tigress.co.uk via smap (V2.1) id xma017270; Sun, 6 Aug 06 12:09:40 +0100 Received: from tiffany.internal.tigress.co.uk (tiffany [157.147.97.76]) by tigress.co.uk (8.11.6/8.11.6) with ESMTP id k76B9eB13994 for ; Sun, 6 Aug 2006 12:09:40 +0100 Received: from tiffany.internal.tigress.co.uk (localhost [127.0.0.1]) by tiffany.internal.tigress.co.uk (8.12.10+Sun/8.12.2) with ESMTP id k76B9dvj007223 for ; Sun, 6 Aug 2006 12:09:40 +0100 (BST) Received: (from rmy@localhost) by tiffany.internal.tigress.co.uk (8.12.10+Sun/8.12.2/Submit) id k76B9cTi007222 for gtk-list@gnome.org; Sun, 6 Aug 2006 12:09:38 +0100 (BST) From: Ron Yorston Message-Id: <200608061109.k76B9cTi007222@tiffany.internal.tigress.co.uk> Date: Sun, 06 Aug 2006 12:09:38 +0100 To: gtk-list@gnome.org Subject: Editres support for GTK+ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.299 tagged_above=-999 required=2 tests=[AWL=-1.300, BAYES_50=0.001] X-Spam-Score: -1.299 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 11:10:40 -0000 I've written a client event handler and supporting functions so that GTK+ applications can understand the editres protocol. More information and source code is available here: http://intgat.tigress.co.uk/rmy/gtk_editres/index.html Ron From bruno@clisp.org Fri Aug 4 16:22:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09A063B025F for ; Fri, 4 Aug 2006 16:22:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09590-05 for ; Fri, 4 Aug 2006 16:22:18 -0400 (EDT) Received: from ftp.ilog.fr (ftp.ilog.fr [81.80.162.195]) by menubar.gnome.org (Postfix) with ESMTP id B30EB3B0085 for ; Fri, 4 Aug 2006 16:22:16 -0400 (EDT) Received: from laposte.ilog.fr (cerbere-qfe0 [81.80.162.193]) by ftp.ilog.fr (8.13.1/8.13.1) with ESMTP id k74KFdvh023738; Fri, 4 Aug 2006 22:15:44 +0200 Received: from marbore.ilog.biz (marbore.ilog.biz [172.17.2.61]) by laposte.ilog.fr (8.13.1/8.13.1) with ESMTP id k74KFX8p023113; Fri, 4 Aug 2006 22:15:33 +0200 Received: from honolulu.ilog.fr ([172.16.15.4]) by marbore.ilog.biz with Microsoft SMTPSVC(6.0.3790.1830); Fri, 4 Aug 2006 22:16:44 +0200 Received: by honolulu.ilog.fr (Postfix, from userid 1001) id 2AB0EF142A; Fri, 4 Aug 2006 22:12:43 +0200 (CEST) From: Bruno Haible To: matthew@jenika.com Subject: Re: Compiling with MinGW Date: Fri, 4 Aug 2006 22:12:42 +0200 User-Agent: KMail/1.9.1 References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> In-Reply-To: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608042212.43008.bruno@clisp.org> X-OriginalArrivalTime: 04 Aug 2006 20:16:44.0283 (UTC) FILETIME=[E7AB0CB0:01C6B802] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.49 tagged_above=-999 required=2 tests=[AWL=-0.045, BAYES_00=-2.599, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -2.49 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 11:37:09 -0400 Cc: bug-gnu-gettext@gnu.org, libtool@gnu.org, abiword-dev@abisource.com, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 20:22:19 -0000 Matthew McGillis wrote: > found that by simply > editing the libtool used in both of the above cases and adding: > > case $deplib in > /home*) deplib="c:/cygwin"$deplib;; > esac > > ... > I was able to complete the compiles and generate a version of > wvware-1.2.1 that worked standalone on windows. You appear to be using mingw as a development environment. I don't know whether libtool supports that. I use a recent cygwin as the development environment, and mingw only as the deployment environment. In this setting, I can build gettext-0.15 out of the box, without problems. Here is the command that I use: CPPFLAGS="-mno-cygwin -Wall -I/usr/local/mingw/include" \ CFLAGS="-mno-cygwin -O2 -g" \ CXXFLAGS="-mno-cygwin -O2 -g" \ LDFLAGS="-mno-cygwin -L/usr/local/mingw/lib" \ ./configure --host=i586-pc-mingw32 --prefix=/usr/local/mingw Why would anyone want to use mingw as a development environment? Maybe end-users cannot learn to write "/cygdrive/c/" for "c:\". But developers certainly can. Apologies for having used the term "mingw development environment" in gettext/README.woe32; I didn't know that mingw as a development environment has problems like the one you cite. Bruno From bfriesen@simple.dallas.tx.us Fri Aug 4 18:57:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EDCDD3B03C5 for ; Fri, 4 Aug 2006 18:57:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17176-10 for ; Fri, 4 Aug 2006 18:57:55 -0400 (EDT) Received: from scooby.simplesystems.org (scooby.simplesystems.org [65.66.246.67]) by menubar.gnome.org (Postfix) with ESMTP id A0FDB3B010D for ; Fri, 4 Aug 2006 18:57:54 -0400 (EDT) Received: from blade.simplesystems.org (blade.simplesystems.org [65.66.246.74]) by scooby.simplesystems.org (8.12.10+Sun/8.12.10) with ESMTP id k74MoJR7024416; Fri, 4 Aug 2006 17:50:19 -0500 (CDT) Date: Fri, 4 Aug 2006 17:50:19 -0500 (CDT) From: Bob Friesenhahn X-X-Sender: bfriesen@blade.simplesystems.org To: Bruno Haible Subject: Re: Compiling with MinGW In-Reply-To: <200608042212.43008.bruno@clisp.org> Message-ID: References: <28F12932-B819-4A2F-BD87-D46DFDAB0E4B@jenika.com> <200608042212.43008.bruno@clisp.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.004, BAYES_00=-2.599, TW_VW=0.077, TW_WV=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 11:37:09 -0400 Cc: libtool@gnu.org, gtk-list@gnome.org, bug-gnu-gettext@gnu.org, matthew@jenika.com, abiword-dev@abisource.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2006 22:57:57 -0000 On Fri, 4 Aug 2006, Bruno Haible wrote: >> ... >> I was able to complete the compiles and generate a version of >> wvware-1.2.1 that worked standalone on windows. > > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. MinGW is not a development environment. It is only a compiler and linker. Libtool does support using the MinGW compiler via Cygwin or MSYS (I have only tried MSYS). Both of these support Unix type paths and automatically convert to Windows paths for MinGW. The development (CVS head) version of libtool works best with MinGW. Bob ====================================== Bob Friesenhahn bfriesen@simple.dallas.tx.us, http://www.simplesystems.org/users/bfriesen/ GraphicsMagick Maintainer, http://www.GraphicsMagick.org/ From rshepard@appl-ecosys.com Sun Aug 6 15:21:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9DE4C3B0125 for ; Sun, 6 Aug 2006 15:21:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10000-01 for ; Sun, 6 Aug 2006 15:21:05 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id F2B703B009F for ; Sun, 6 Aug 2006 15:21:04 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 7BD748E23; Sun, 6 Aug 2006 12:20:54 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6D19A66EC for ; Sun, 6 Aug 2006 12:20:54 -0700 (PDT) Date: Sun, 6 Aug 2006 12:20:54 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Problems Building GTK2+2.10.1 and Dependencies Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.959 tagged_above=-999 required=2 tests=[AWL=0.565, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_JP=0.077] X-Spam-Score: -1.959 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Rich Shepard List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 19:21:10 -0000 Over the years I've always had major problems building gtk+ on my linux boxes. Whether I was running Red Hat (which I did until 7.3) or Slackware (currently 10.2), it's a major PITA. The only reason I'm trying to upgrade is to see if the latest version fixes a bug in the calendar widget. With gtk2+ versions more recent than 2.8.6, the calendar on jpilot starts the week on Monday rather than Sunday. I'm trying to determine if the latest versions of everything fix this problem. Here's where I am: The downloads page of the web site does not contain the latest versions of glib, pango, atk, or cairo. After searching with Google, and rummaging around the ftp server I was able to find: atk-1.10.3.tar.bz2, gtk+-2.10.1.tar.bz2, glib-2.12.1.tar.bz2, pango-1.13.5.tar.bz2, and cairo-1.2.0.tar.gz. Configured, built, and installed (several times trying to get the sequence correct): atk, cairo, glib, and pango. Still cannot successfully configure gtk+. Pango-1.12.1 configured and built just fine, but trying to configure gtk2+-2.10.1 I saw that pango had to be built with cairo support. So, I tried to re-build pango-1.13.5. Configure did not have an explicit directive, so I used './configure --with-cairo=yes', and that ran to completion. Then I tried to build it, but ... gcc -g -O2 -Wall -o .libs/pango-view renderdemo.o viewer-x.o viewer-main.o pango-view.o viewer-pangox.o viewer-pangoft2.o viewer-pangoxft.o viewer-cairo.o viewer-pangocairo.o -Wl,--rpath -Wl,/usr/local/lib ../pango/.libs/libpango-1.0.so -L/usr/local/lib ../pango/.libs/libpangox-1.0.so -L/usr/X11R6/lib ../pango/.libs/libpangoft2-1.0.so ../pango/.libs/libpangoxft-1.0.so -lXft ../pango/.libs/libpangocairo-1.0.so /usr/local/pango-1.13.5/pango/.libs/libpangoft2-1.0.so /usr/local/pango-1.13.5/pango/.libs/libpango-1.0.so /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgmodule-2.0.so -ldl /usr/local/lib/libglib-2.0.so /usr/local/lib/libcairo.so -lSM -lICE /usr/X11R6/lib/libfontconfig.so /usr/lib/libfreetype.so -lXrender -lXext -lpng12 -lm /usr/local/lib/libfontconfig.so /usr/local/lib/libfreetype.so -lz /usr/lib/libexpat.so -lX11 /usr/local/lib/libcairo.so: undefined reference to T_GlyphSlot_Embolden' collect2: ld returned 1 exit status make[3]: *** [pango-view] Error 1 make[3]: Leaving directory /usr/local/pango-1.13.5/examples' make[2]: *** [all] Error 2 make[2]: Leaving directory /usr/local/pango-1.13.5/examples' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory /usr/local/pango-1.13.5' make: *** [all] Error 2 I don't know what to do to fix this error. When the only dependency not at the latest version was cairo, trying to configure gtk+ resulted in a statement that _all_ dependencies were too old. That's not true. I seem to be stuck in an endless loop: pango builds fine without cairo, but gtk+ wants pango to include cairo support. But, pango with cairo support won't finish compiling. Suggestions? Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From sergstesh@yahoo.com Sun Aug 6 16:13:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E554C3B009F for ; Sun, 6 Aug 2006 16:13:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11920-01 for ; Sun, 6 Aug 2006 16:13:34 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 54B763B0010 for ; Sun, 6 Aug 2006 16:13:34 -0400 (EDT) Received: (qmail 68841 invoked by uid 60001); 6 Aug 2006 20:13:33 -0000 Message-ID: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35212.mail.mud.yahoo.com via HTTP; Sun, 06 Aug 2006 13:13:33 PDT Date: Sun, 6 Aug 2006 13:13:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problems Building GTK2+2.10.1 and Dependencies To: Rich Shepard , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.668 tagged_above=-999 required=2 tests=[AWL=-1.578, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_JP=0.077] X-Spam-Score: -0.668 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 20:13:38 -0000 --- Rich Shepard wrote: > Over the years I've always had major problems building gtk+ on my linux > boxes. Whether I was running Red Hat (which I did until 7.3) or Slackware > (currently 10.2), it's a major PITA. The only reason I'm trying to upgrade > is to see if the latest version fixes a bug in the calendar widget. > > With gtk2+ versions more recent than 2.8.6, the calendar on jpilot starts > the week on Monday rather than Sunday. I'm trying to determine if the latest > versions of everything fix this problem. Here's where I am: > > The downloads page of the web site does not contain the latest versions of > glib, pango, atk, or cairo. After searching with Google, and rummaging > around the ftp server I was able to find: > > atk-1.10.3.tar.bz2, gtk+-2.10.1.tar.bz2, glib-2.12.1.tar.bz2, > pango-1.13.5.tar.bz2, and cairo-1.2.0.tar.gz. > > Configured, built, and installed (several times trying to get the sequence > correct): atk, cairo, glib, and pango. Still cannot successfully configure > gtk+. Pango-1.12.1 configured and built just fine, but trying to configure > gtk2+-2.10.1 I saw that pango had to be built with cairo support. > > So, I tried to re-build pango-1.13.5. Configure did not have an explicit > directive, so I used './configure --with-cairo=yes', and that ran to > completion. Then I tried to build it, but ... > > gcc -g -O2 -Wall -o .libs/pango-view renderdemo.o viewer-x.o viewer-main.o > pango-view.o viewer-pangox.o viewer-pangoft2.o viewer-pangoxft.o > viewer-cairo.o viewer-pangocairo.o -Wl,--rpath -Wl,/usr/local/lib > ../pango/.libs/libpango-1.0.so -L/usr/local/lib > ../pango/.libs/libpangox-1.0.so -L/usr/X11R6/lib > ../pango/.libs/libpangoft2-1.0.so ../pango/.libs/libpangoxft-1.0.so -lXft > ../pango/.libs/libpangocairo-1.0.so > /usr/local/pango-1.13.5/pango/.libs/libpangoft2-1.0.so > /usr/local/pango-1.13.5/pango/.libs/libpango-1.0.so > /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgmodule-2.0.so -ldl > /usr/local/lib/libglib-2.0.so /usr/local/lib/libcairo.so -lSM -lICE > /usr/X11R6/lib/libfontconfig.so /usr/lib/libfreetype.so -lXrender -lXext > -lpng12 -lm /usr/local/lib/libfontconfig.so /usr/local/lib/libfreetype.so > -lz /usr/lib/libexpat.so -lX11 > /usr/local/lib/libcairo.so: undefined reference to T_GlyphSlot_Embolden' > collect2: ld returned 1 exit status > make[3]: *** [pango-view] Error 1 > make[3]: Leaving directory /usr/local/pango-1.13.5/examples' > make[2]: *** [all] Error 2 > make[2]: Leaving directory /usr/local/pango-1.13.5/examples' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory /usr/local/pango-1.13.5' > make: *** [all] Error 2 > > I don't know what to do to fix this error. > > When the only dependency not at the latest version was cairo, trying to > configure gtk+ resulted in a statement that _all_ dependencies were too old. > That's not true. > > I seem to be stuck in an endless loop: pango builds fine without cairo, > but gtk+ wants pango to include cairo support. But, pango with cairo support > won't finish compiling. > > Suggestions? > > Rich > > -- > Richard B. Shepard, Ph.D. | The Environmental Permitting > Applied Ecosystem Services, Inc.(TM) | Accelerator > Voice: 503-667-4517 Fax: 503-667-8863 > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > My tool (see signature) does build gtk+-2.10.1. Download it, read the README files - available on the project page, modify the versions where necessary and run it. Let me know if you have any problems. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From dragzhb@yahoo.com.cn Sun Aug 6 22:54:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 027BB3B0018 for ; Sun, 6 Aug 2006 22:54:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26908-09 for ; Sun, 6 Aug 2006 22:54:29 -0400 (EDT) Received: from web15109.mail.cnb.yahoo.com (web15109.mail.cnb.yahoo.com [202.165.103.78]) by menubar.gnome.org (Postfix) with SMTP id 4AA753B0003 for ; Sun, 6 Aug 2006 22:54:28 -0400 (EDT) Received: (qmail 81363 invoked by uid 60001); 7 Aug 2006 02:54:26 -0000 Message-ID: <20060807025426.81361.qmail@web15109.mail.cnb.yahoo.com> Received: from [210.21.200.99] by web15109.mail.cnb.yahoo.com via HTTP; Mon, 07 Aug 2006 10:54:26 CST Date: Mon, 7 Aug 2006 10:54:26 +0800 (CST) From: haibin zhang Subject: Re: Compiling with MinGW To: Tor Lillqvist , Bruno Haible In-Reply-To: <17620.17889.531000.626427@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-759150386-1154919266=:76786" Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.453 tagged_above=-999 required=2 tests=[BAYES_50=0.001, HTML_30_40=0.374, HTML_MESSAGE=0.001, TW_LQ=0.077] X-Spam-Score: 0.453 X-Spam-Level: X-Mailman-Approved-At: Sun, 06 Aug 2006 23:11:14 -0400 Cc: bug-gnu-gettext@gnu.org, abiword-dev@abisource.com, libtool@gnu.org, matthew@jenika.com, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 02:54:32 -0000 --0-759150386-1154919266=:76786 Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 8bit Tor Lillqvist дµÀ£º Bruno Haible writes: > You appear to be using mingw as a development environment. I don't know > whether libtool supports that. If with mingw one combines MSYS, it certainly does. Using MSYS with auto* and libtool is IMHO much more reliable than using Cygwin, MSYS gets less in the way and causes less confusion. > I use a recent cygwin as the development environment, and mingw only as > the deployment environment. you can try this environment , it inlcude the last packages of autotools : http://sourceforge.net/projects/mingw-install How can mingw be a *deployment* environment (with which I assume you mean what end-users have), why would end-users of some native Win32 application need a compiler and linker? --tml _______________________________________________ http://lists.gnu.org/mailman/listinfo/libtool --------------------------------- ÑÅ»¢Ãâ·ÑÓÊÏä-3.5GÈÝÁ¿£¬20M¸½¼þ --0-759150386-1154919266=:76786 Content-Type: text/html; charset=gb2312 Content-Transfer-Encoding: 8bit

Tor Lillqvist <tml@iki.fi> дµÀ£º
Bruno Haible writes:
> You appear to be using mingw as a development environment. I don't know
> whether libtool supports that.

If with mingw one combines MSYS, it certainly does. Using MSYS with
auto* and libtool is IMHO much more reliable than using Cygwin, MSYS
gets less in the way and causes less confusion.

> I use a recent cygwin as the development environment, and mingw only as
> the deployment environment.

you can try this environment , it inlcude the last packages of autotools :

http://sourceforge.net/projects/mingw-install


How can mingw be a *deployment* environment (with which I assume you
mean what end-users have), why would end-users of some native Win32
application need a compiler and linker?

--tml



_______________________________________________
http://lists.gnu.org/mailman/listinfo/libtool


ÑÅ»¢Ãâ·ÑÓÊÏä-3.5GÈÝÁ¿£¬20M¸½¼þ --0-759150386-1154919266=:76786-- From lists@nabble.com Mon Aug 7 02:38:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5A32C3B0116 for ; Mon, 7 Aug 2006 02:38:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03483-04 for ; Mon, 7 Aug 2006 02:38:08 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 7CD023B00F3 for ; Mon, 7 Aug 2006 02:38:08 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1G9yka-0000fU-4P for gtk-list@gnome.org; Sun, 06 Aug 2006 23:38:08 -0700 Message-ID: <5680166.post@talk.nabble.com> Date: Sun, 6 Aug 2006 23:38:08 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we can change the title bar color MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.079 tagged_above=-999 required=2 tests=[AWL=-1.054, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.079 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 06:38:09 -0000 how we can change a title bar color of our window using Gtkrc. thank u,for reading sree -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5680166 Sent from the Gtk+ - General forum at Nabble.com. From yeti@physics.muni.cz Mon Aug 7 03:44:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E51333B0214 for ; Mon, 7 Aug 2006 03:44:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05892-03 for ; Mon, 7 Aug 2006 03:44:44 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id AC3693B00C7 for ; Mon, 7 Aug 2006 03:44:43 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k777ifaj017993 for ; Mon, 7 Aug 2006 09:44:42 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 7F68623E0E; Mon, 7 Aug 2006 09:44:41 +0200 (CEST) Date: Mon, 7 Aug 2006 09:44:42 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: how we can change the title bar color Message-ID: <20060807074442.GX16209@potato.chello.upc.cz> References: <5680166.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5680166.post@talk.nabble.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 07:44:46 -0000 On Sun, Aug 06, 2006 at 11:38:08PM -0700, cnu_sree wrote: > > how we can change a title bar color of our window using Gtkrc. gtkrc affects only things drawn by Gtk+. Yeti -- Anonyms eat their boogers. From chris@cvine.freeserve.co.uk Mon Aug 7 04:11:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D5103B034D for ; Mon, 7 Aug 2006 04:11:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07856-01 for ; Mon, 7 Aug 2006 04:11:07 -0400 (EDT) Received: from smtp3.freeserve.com (smtp3.wanadoo.co.uk [193.252.22.156]) by menubar.gnome.org (Postfix) with ESMTP id D303E3B034A for ; Mon, 7 Aug 2006 04:11:06 -0400 (EDT) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3212.me.freeserve.com (SMTP Server) with ESMTP id 44BE53C00089; Mon, 7 Aug 2006 10:11:05 +0200 (CEST) Received: from laptop.homenet (modem-1340.kawau.dialup.pol.co.uk [81.78.149.60]) by mwinf3212.me.freeserve.com (SMTP Server) with ESMTP id 814F13C00085; Mon, 7 Aug 2006 10:11:04 +0200 (CEST) X-ME-UUID: 20060807081104529.814F13C00085@mwinf3212.me.freeserve.com Received: from localhost (IDENT:1000@localhost [127.0.0.1]) by laptop.homenet (8.12.10/8.12.10) with ESMTP id k76AkSH8002539; Sun, 6 Aug 2006 11:46:28 +0100 From: Chris Vine To: gtk-list@gnome.org Subject: Re: pb compiling latest gtk+ (In function '_cairo_write_to_cups', error: 'ppd_group_t' has no member named 'name') Date: Sun, 6 Aug 2006 11:46:27 +0100 User-Agent: KMail/1.9.3 References: <44CF8F0E.6040709@ti.com> In-Reply-To: <44CF8F0E.6040709@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608061146.28310.chris@cvine.freeserve.co.uk> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.302 tagged_above=-999 required=2 tests=[AWL=-0.038, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.302 X-Spam-Level: Cc: Olivier Kaloudoff X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 08:11:08 -0000 On Tuesday 01 August 2006 18:27, Olivier Kaloudoff wrote: > Hello, > > using pango 1.13.5, cairo 1.2.0, atk 1.12.1, I get the following > error message when compiling gtk+ on linux32, gcc-4.1.1; [snip] I am surprised that the GtkPrinter stuff was included in GTK+-2.10 because it has all sorts of issues. This was one of the ones I came across and in this case it is because the configure scripts have not been written correctly to detect the required version of CUPS. GTK+-2.10 will appear to configure correctly without the required CUPS version but will then not compile if CUPS is not of a sufficiently recent version. I found GTK+ fails to compile with CUPS 1.1.19, but will compile with CUPS 1.1.23. I do not know at what version between those GTK+ will compile. Chris From lists@nabble.com Mon Aug 7 06:19:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C3C903B053E for ; Mon, 7 Aug 2006 06:19:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13777-10 for ; Mon, 7 Aug 2006 06:19:27 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id C64B03B03F5 for ; Mon, 7 Aug 2006 06:19:26 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GA2Ch-0006Bt-W6 for gtk-list@gnome.org; Mon, 07 Aug 2006 03:19:24 -0700 Message-ID: <5682514.post@talk.nabble.com> Date: Mon, 7 Aug 2006 03:19:23 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: Re: how we can change the title bar color In-Reply-To: <20060807074442.GX16209@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.271 tagged_above=-999 required=2 tests=[AWL=0.168, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.271 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 10:19:28 -0000 then please tell me how we can change the title bar color. -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5682514 Sent from the Gtk+ - General forum at Nabble.com. From me.erudite@gmail.com Mon Aug 7 07:28:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15043B06B1 for ; Mon, 7 Aug 2006 07:28:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18155-04 for ; Mon, 7 Aug 2006 07:28:26 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by menubar.gnome.org (Postfix) with ESMTP id E5A093B06A8 for ; Mon, 7 Aug 2006 07:28:25 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so34904pyg for ; Mon, 07 Aug 2006 04:28:25 -0700 (PDT) Received: by 10.35.94.2 with SMTP id w2mr12031261pyl; Mon, 07 Aug 2006 04:28:25 -0700 (PDT) Received: by 10.35.117.14 with HTTP; Mon, 7 Aug 2006 04:28:25 -0700 (PDT) Message-ID: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> Date: Mon, 7 Aug 2006 16:58:25 +0530 From: "sachin kamat" To: gtk-list Subject: color fill in text box MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_48783_15025734.1154950105397" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.922 tagged_above=-999 required=2 tests=[AWL=-0.382, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.922 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 11:28:26 -0000 ------=_Part_48783_15025734.1154950105397 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Is there a way to fill/set background color in a gtk+ text entry box. Thanks ------=_Part_48783_15025734.1154950105397 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,
Is there a way to fill/set background color in a gtk+ text entry box.
 
Thanks

------=_Part_48783_15025734.1154950105397-- From billcu1@verizon.net Mon Aug 7 08:04:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C7C263B070B for ; Mon, 7 Aug 2006 08:04:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20613-10 for ; Mon, 7 Aug 2006 08:04:57 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 3B0A73B01D9 for ; Mon, 7 Aug 2006 08:04:57 -0400 (EDT) Received: from win98 ([71.251.250.182]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3M002UVMW7PI44@vms042.mailsrvcs.net> for gtk-list@gnome.org; Mon, 07 Aug 2006 07:04:56 -0500 (CDT) Date: Mon, 07 Aug 2006 08:03:37 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.985 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.985 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:04:59 -0000 Ok in what order exactly do you install the stuff needed to compile gtk? I've had nothing but trouble. I have libiconv libtool and atk pango cairo glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty long list. Bill From michael@elehack.net Mon Aug 7 08:20:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 385B93B06F2 for ; Mon, 7 Aug 2006 08:20:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21212-10 for ; Mon, 7 Aug 2006 08:20:49 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id CC9E73B027D for ; Mon, 7 Aug 2006 08:20:48 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=[192.168.1.100]) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GA46B-0007iJ-Cx; Mon, 07 Aug 2006 07:20:47 -0500 Subject: Re: how we can change the title bar color From: Michael Ekstrand To: cnu_sree In-Reply-To: <5682514.post@talk.nabble.com> References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> Content-Type: text/plain Date: Mon, 07 Aug 2006 07:20:45 -0500 Message-Id: <1154953245.15368.4.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.459 tagged_above=-999 required=2 tests=[AWL=0.140, BAYES_00=-2.599] X-Spam-Score: -2.459 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:20:50 -0000 On Mon, 2006-08-07 at 03:19 -0700, cnu_sree wrote: > then please tell me how we can change the title bar color. His point was, you can't. The title bar is drawn by something outside of GTK, that is, the window manager (or Windows, when you're running on Win32). While that window manager may use GTK (Metacity and Sawfish both do), it's outside the control of your application, and therefore cannot be changed. - Michael From tml@iki.fi Mon Aug 7 08:21:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B50FF3B0723 for ; Mon, 7 Aug 2006 08:21:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21501-02 for ; Mon, 7 Aug 2006 08:21:16 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 1A8DB3B027D for ; Mon, 7 Aug 2006 08:21:16 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 9E32E21687F; Mon, 7 Aug 2006 15:21:12 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17623.12266.625000.494933@gargle.gargle.HOWL> Date: Mon, 7 Aug 2006 15:19:54 +0300 To: "Bill Cunningham" Subject: Re: gtk In-Reply-To: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:21:17 -0000 Bill Cunningham writes: > I've had nothing but trouble. I have libiconv libtool and atk pango cairo > glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty > long list. Yes, but if you have gone through those, surely you must by now notice you are getting closer? Doesn't the configure script(s) and/or output from pkg-config that they run tell you what's still missing? Can you give any more details on your build and target environment? It must be somewhat special if you need to handle dependencies like this "by hand" without the help of a package management system, jhbuild, or something similar? --tml From sergstesh@yahoo.com Mon Aug 7 08:35:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2C3B0745 for ; Mon, 7 Aug 2006 08:35:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22095-09 for ; Mon, 7 Aug 2006 08:35:11 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 9ED113B0744 for ; Mon, 7 Aug 2006 08:35:10 -0400 (EDT) Received: (qmail 61182 invoked by uid 60001); 7 Aug 2006 12:35:10 -0000 Message-ID: <20060807123510.61180.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35210.mail.mud.yahoo.com via HTTP; Mon, 07 Aug 2006 05:35:10 PDT Date: Mon, 7 Aug 2006 05:35:10 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.697 tagged_above=-999 required=2 tests=[AWL=-1.530, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.697 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:35:11 -0000 --- Bill Cunningham wrote: > Ok in what order exactly do you install the stuff needed to compile gtk? > I've had nothing but trouble. I have libiconv libtool and atk pango cairo > glib,which compiles fine; XFree binaries, gtk gettext pkgconfig. A pretty > long list. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool - see signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From murrayc@murrayc.com Mon Aug 7 08:36:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062DF3B0761 for ; Mon, 7 Aug 2006 08:36:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22099-07 for ; Mon, 7 Aug 2006 08:35:59 -0400 (EDT) Received: from webmail2.sd.dreamhost.com (webmail2.sd.dreamhost.com [66.33.201.157]) by menubar.gnome.org (Postfix) with ESMTP id E004B3B0744 for ; Mon, 7 Aug 2006 08:35:56 -0400 (EDT) Received: from webmail.murrayc.com (localhost [127.0.0.1]) by webmail2.sd.dreamhost.com (Postfix) with ESMTP id 29975DC6FE; Mon, 7 Aug 2006 05:35:56 -0700 (PDT) Received: from 194.138.18.131 (proxying for unknown) (SquirrelMail authenticated user murrayc@murrayc.com) by webmail.murrayc.com with HTTP; Mon, 7 Aug 2006 14:35:56 +0200 (CEST) Message-ID: <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> In-Reply-To: <1154953245.15368.4.camel@localhost.localdomain> References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> <1154953245.15368.4.camel@localhost.localdomain> Date: Mon, 7 Aug 2006 14:35:56 +0200 (CEST) Subject: Re: how we can change the title bar color From: "Murray Cumming" To: "Michael Ekstrand" User-Agent: SquirrelMail/1.4.6 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: Cc: cnu_sree , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 12:36:01 -0000 > On Mon, 2006-08-07 at 03:19 -0700, cnu_sree wrote: >> then please tell me how we can change the title bar color. > > His point was, you can't. The title bar is drawn by something outside > of GTK, that is, the window manager (or Windows, when you're running on > Win32). While that window manager may use GTK (Metacity and Sawfish > both do), it's outside the control of your application, and therefore > cannot be changed. Of course, it's difficult to know what he wants from such a short question. cnu_sree, do you want to make a desktop theme for the whole desktop? Or are you really asking about changing the title bar color for just one window? Murray Cumming murrayc@murrayc.com www.murrayc.com www.openismus.com From christophe.dehais@gmail.com Mon Aug 7 09:13:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7FC193B0775 for ; Mon, 7 Aug 2006 09:13:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24414-01 for ; Mon, 7 Aug 2006 09:13:40 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 056963B0763 for ; Mon, 7 Aug 2006 09:13:40 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so122054ugf for ; Mon, 07 Aug 2006 06:13:39 -0700 (PDT) Received: by 10.67.93.6 with SMTP id v6mr7973851ugl; Mon, 07 Aug 2006 06:13:39 -0700 (PDT) Received: by 10.67.92.17 with HTTP; Mon, 7 Aug 2006 06:13:39 -0700 (PDT) Message-ID: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> Date: Mon, 7 Aug 2006 15:13:39 +0200 From: "Christophe Dehais" To: gtk-list@gnome.org Subject: Where are the pixels ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_76333_6861366.1154956419050" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.842 tagged_above=-999 required=2 tests=[AWL=-0.238, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.842 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 13:13:41 -0000 ------=_Part_76333_6861366.1154956419050 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline hi list! So in gtk, a UI is a hierarchy of nested widgets, and the nodes of this "tree" are container elements. Some widgets have an associated GdkWindow, some don't. What is not clear to me is whether or not a GdkWindow contains the real pixels in some way. Let's assume this scenario: a window is created and its size is computed through size negociation, then a pixel buffer containing all pixels for the window is allocated. So all nested widgets could be NO_WINDOW, they could use the portion of the big pixel buffer corresponding to their position in the window. But this is not the case (for what I understand), and if GdkWindow does allocate the real pixels, I figure there is some sort of over-coverage of the window. Is there any guru that could explains me how that works or points me a good link to help me clarify this. The thing is that I plan to write a custom Container widget that composites its childrens and also adds some decorations, and I don't know if I have to claim its parent window for the drawing or if I have to allocate the (possibly multiple) GdkWindow I need. thanks in advance, Christophe. ------=_Part_76333_6861366.1154956419050 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline hi list!

So in gtk, a UI is a hierarchy of nested widgets, and the nodes of this "tree" are container elements. Some widgets have an associated GdkWindow, some don't.

What is not clear to me is whether or not a GdkWindow contains the real pixels in some way. Let's assume this scenario: a window is created and its size is computed through size negociation, then a pixel buffer containing all pixels for the window is allocated. So all nested widgets could be NO_WINDOW, they could use the portion of the big pixel buffer corresponding to their position in the window. But this is not the case (for what I understand), and if GdkWindow does allocate the real pixels, I figure there is some sort of over-coverage of the window.

Is there any guru that could explains me how that works or points me a good link to help me clarify this.

The thing is that I plan to write a custom Container widget that composites its childrens and also adds some decorations, and I don't know if I have to claim its parent window for the drawing or if I have to allocate the (possibly multiple) GdkWindow I need.


thanks in advance,
Christophe.
------=_Part_76333_6861366.1154956419050-- From rpmcruz@clix.pt Mon Aug 7 09:42:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 050023B077D for ; Mon, 7 Aug 2006 09:42:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25850-04 for ; Mon, 7 Aug 2006 09:42:19 -0400 (EDT) Received: from mailrly07.isp.novis.pt (mailrly07.isp.novis.pt [195.23.133.217]) by menubar.gnome.org (Postfix) with ESMTP id DF3423B0353 for ; Mon, 7 Aug 2006 09:42:15 -0400 (EDT) Received: (qmail 24838 invoked from network); 7 Aug 2006 13:42:14 -0000 Received: from unknown (HELO mailfrt11.isp.novis.pt) ([195.23.133.227]) (envelope-sender ) by mailrly07.isp.novis.pt with compressed SMTP; 7 Aug 2006 13:42:14 -0000 Received: (qmail 12999 invoked from network); 7 Aug 2006 13:42:14 -0000 Received: from unknown (HELO [10.0.0.2]) (Sent_by_authenticated_user_x2476431@[87.196.7.183]) (envelope-sender ) by mailfrt11.isp.novis.pt with SMTP; 7 Aug 2006 13:42:14 -0000 From: Ricardo Cruz To: gtk-list@gnome.org Subject: Re: color fill in text box Date: Mon, 7 Aug 2006 14:54:03 +0100 User-Agent: KMail/1.9.1 References: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> In-Reply-To: <6fe8fcb90608070428y2303bbfdief082ab78becf7a9@mail.gmail.com> X-Face: $29d{(U~(^/X.rR|7i6syM3jeJ}N+*%U-#Bzl5 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608071454.03729.rpmcruz@clix.pt> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.595 tagged_above=-999 required=2 tests=[AWL=-0.854, BAYES_20=-0.74, SPF_PASS=-0.001] X-Spam-Score: -1.595 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 13:42:22 -0000 Hi Sachin, For either GtkEntry or GtkTextiView, use gtk_widget_modify_base(): http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#gtk-widget-modify-base Cheers Ricardo Em Segunda, 7 de Agosto de 2006 12:28, o sachin kamat escreveu: > Hi, > Is there a way to fill/set background color in a gtk+ text entry box. > > Thanks -- Please ignore previous fortune. From rshepard@appl-ecosys.com Mon Aug 7 11:31:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0E4C03B0802 for ; Mon, 7 Aug 2006 11:31:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32004-05 for ; Mon, 7 Aug 2006 11:31:40 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id CAAD93B0859 for ; Mon, 7 Aug 2006 11:31:39 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 6AAE4154E; Mon, 7 Aug 2006 08:31:29 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6A1E4154A for ; Mon, 7 Aug 2006 08:31:29 -0700 (PDT) Date: Mon, 7 Aug 2006 08:31:29 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Re: Problems Building GTK2+2.10.1 and Dependencies In-Reply-To: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> Message-ID: References: <20060806201333.68839.qmail@web35212.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.147 tagged_above=-999 required=2 tests=[AWL=0.377, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_JP=0.077] X-Spam-Score: -2.147 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:31:45 -0000 On Sun, 6 Aug 2006, Sergei Steshenko wrote: > My tool (see signature) does build gtk+-2.10.1. Sergei, I see that this version has some unresolved issues that I don't want to cause problems here. So, I have dropped back to where I was before. All that remains is to get jpilot running again. Something broke while I tried yesterday to upgrade gtk+2 and all its dependencies. Jpilot will not load this morning: [rshepard@salmo ~]$ jpilot removing stale pidfile *** glibc detected *** free(): invalid pointer: 0x0810b2e8 *** Aborted You have mail in /var/spool/mail/rshepard Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From ibr@radix50.net Mon Aug 7 11:37:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51B3D3B08A0 for ; Mon, 7 Aug 2006 11:37:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32496-07 for ; Mon, 7 Aug 2006 11:37:47 -0400 (EDT) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by menubar.gnome.org (Postfix) with ESMTP id 21C883B089C for ; Mon, 7 Aug 2006 11:37:46 -0400 (EDT) Received: from mail-in-08-z2.arcor-online.net (mail-in-08-z2.arcor-online.net [151.189.8.20]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id AD12E45D462; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mail-in-08-z2.arcor-online.net (Postfix) with ESMTP id 9283355A9B; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 38005166AEF; Mon, 7 Aug 2006 17:37:37 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77Fb7cb017620; Mon, 7 Aug 2006 17:37:07 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77Fb7Rk017619; Mon, 7 Aug 2006 17:37:07 +0200 Date: Mon, 7 Aug 2006 17:37:07 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807153707.GE4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.07 tagged_above=-999 required=2 tests=[AWL=0.317, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.07 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:37:50 -0000 Hello Harsha, On Mon, Aug 07, 2006 at 08:58:30AM -0600, harshavardhanreddy mandeepala wrote: > I saw your posting in gtk list regarding this. > I followed the same way to cross compile the glib package. Great, you searched the archives! Would you mind if we take this discussion to gtk-list so that others could potentially use it? > It cross compiled perfectly but i have one doubt. > I used > ./configure --cache-file=arm-linux.cache --host=arm-linux > I kept same thing in arm-linux.cache file as specified in the > > http://developer.gnome.org/doc/API/2.0/glib/glib-cross-compiling.html > > It compiled and created library also. > The thing is which C library it will take. > Because i didn't specifie CC=arm-linux-gcc in ./configure . > But if i run using CC=arm-linux-gcc it is creating error saying that > " cannot run test program while cross compiling." > So is it necessary to put CC=arm-linux-gcc or not. Hmm, I would say specifying --host should be enough, but different results are really strange; which compiler does configure choose if you don't specify CC? > If not my library created is currect. if require what is the problem for the > error. Just link against it and run the program on the target. Or check with the file command. For a dynamic lib: ibr@medeu:~$ file libglib-2.0.so.0.400.8 libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 (ARM), stripped For a static lib: ibr@medeu:~$ ar x libglib-2.0.a ibr@medeu:~$ file gmem.o gmem.o: ELF 32-bit LSB relocatable, ARM, version 1 (ARM), not stripped I guess your libraries are built for i386 (or whatever your $build is). With kind regards, Baurzhan. From sergstesh@yahoo.com Mon Aug 7 11:59:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 11E733B0802 for ; Mon, 7 Aug 2006 11:59:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01272-06 for ; Mon, 7 Aug 2006 11:58:59 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 83F3D3B090A for ; Mon, 7 Aug 2006 11:58:57 -0400 (EDT) Received: (qmail 28567 invoked by uid 60001); 7 Aug 2006 15:58:57 -0000 Message-ID: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35209.mail.mud.yahoo.com via HTTP; Mon, 07 Aug 2006 08:58:57 PDT Date: Mon, 7 Aug 2006 08:58:57 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problems Building GTK2+2.10.1 and Dependencies To: Rich Shepard , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.649 tagged_above=-999 required=2 tests=[AWL=-1.559, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_JP=0.077] X-Spam-Score: -0.649 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 15:59:02 -0000 --- Rich Shepard wrote: > On Sun, 6 Aug 2006, Sergei Steshenko wrote: > > > My tool (see signature) does build gtk+-2.10.1. > > Sergei, > > I see that this version has some unresolved issues that I don't want to > cause problems here. So, I have dropped back to where I was before. All that > remains is to get jpilot running again. Something broke while I tried > yesterday to upgrade gtk+2 and all its dependencies. Jpilot will not load > this morning: > > [rshepard@salmo ~]$ jpilot > removing stale pidfile > *** glibc detected *** free(): invalid pointer: 0x0810b2e8 *** > Aborted > You have mail in /var/spool/mail/rshepard > > Rich > > -- > Richard B. Shepard, Ph.D. | The Environmental Permitting > Applied Ecosystem Services, Inc.(TM) | Accelerator > Voice: 503-667-4517 Fax: 503-667-8863 > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I can't help you with 'jpilot'. My tool builds gtk+2.8.18-gtk+2.8.20, that is, I checked these versions myself. Regarding gtk+-2.10.1 - did I also mention http://bugzilla.gnome.org/show_bug.cgi?id=350163 ? I reverted to gtk+2.8.20. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From rshepard@appl-ecosys.com Mon Aug 7 12:09:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8173A3B07AC for ; Mon, 7 Aug 2006 12:09:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01533-09 for ; Mon, 7 Aug 2006 12:09:28 -0400 (EDT) Received: from salmo.appl-ecosys.com (appl-ecosys.com [216.99.206.23]) by menubar.gnome.org (Postfix) with ESMTP id DD4BE3B07DD for ; Mon, 7 Aug 2006 12:09:27 -0400 (EDT) Received: by salmo.appl-ecosys.com (Postfix, from userid 1000) id 769B1D0D; Mon, 7 Aug 2006 09:09:17 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by salmo.appl-ecosys.com (Postfix) with ESMTP id 6864F5A3 for ; Mon, 7 Aug 2006 09:09:17 -0700 (PDT) Date: Mon, 7 Aug 2006 09:09:17 -0700 (PDT) From: Rich Shepard To: gtk-list@gnome.org Subject: Re: Problems Building GTK2+2.10.1 and Dependencies In-Reply-To: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> Message-ID: References: <20060807155857.28565.qmail@web35209.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.28 tagged_above=-999 required=2 tests=[AWL=0.321, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.28 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 16:09:29 -0000 On Mon, 7 Aug 2006, Sergei Steshenko wrote: > I can't help you with 'jpilot'. Sergei, I did not expect you to. It's more than puzzling because I dropped back to gtk+2-2.8.12, which is what worked just fine before. Of course, glibc-2.3.5 hasn't changed > Regarding gtk+-2.10.1 - did I also mention > http://bugzilla.gnome.org/show_bug.cgi?id=350163 Yes, you did. Thanks, Rich -- Richard B. Shepard, Ph.D. | The Environmental Permitting Applied Ecosystem Services, Inc.(TM) | Accelerator Voice: 503-667-4517 Fax: 503-667-8863 From tml@iki.fi Mon Aug 7 12:36:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DAE943B08EF for ; Mon, 7 Aug 2006 12:36:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03061-06 for ; Mon, 7 Aug 2006 12:36:42 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 57D713B0911 for ; Mon, 7 Aug 2006 12:36:42 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 6AAD5216221; Mon, 7 Aug 2006 19:36:39 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17623.27599.953000.77450@gargle.gargle.HOWL> Date: Mon, 7 Aug 2006 19:35:27 +0300 To: "Bill Cunningham" Subject: Re: gtk In-Reply-To: <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 16:36:47 -0000 (Please keep the discussion on the list, don't mail me personally.) Bill Cunningham writes: > pkg-config doesn't help me much. I'm not quite sure how to use it. I > know there is the PKG_CONFIG variable. Do you set that in bash_profile ? I > must confess I can't figure out how to use the package. You still didn't tell your development and target environment... As far as we know, you might for instance be using Cygwin (a Linux emulation package for Windows), OpenVMS, Ultrix, or some embedded environment. Setting an environment variable can be done in several files, or interactively. How to do it depends on how persistent you want it to be, and whether for all users or just you. What your shell setup files are called and where they are depends much on your operating system, shell, and local system administration procedures. And how to set environment variables has nothing to do with gtk as such... --tml From ibr@radix50.net Mon Aug 7 13:17:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0F1313B08D9 for ; Mon, 7 Aug 2006 13:17:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05118-10 for ; Mon, 7 Aug 2006 13:17:19 -0400 (EDT) Received: from mail-in-07.arcor-online.net (mail-in-07.arcor-online.net [151.189.21.47]) by menubar.gnome.org (Postfix) with ESMTP id 75D863B0913 for ; Mon, 7 Aug 2006 13:17:19 -0400 (EDT) Received: from mail-in-03-z2.arcor-online.net (mail-in-03-z2.arcor-online.net [151.189.8.15]) by mail-in-07.arcor-online.net (Postfix) with ESMTP id 1F91B1C905C; Mon, 7 Aug 2006 19:17:18 +0200 (CEST) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-03-z2.arcor-online.net (Postfix) with ESMTP id 03DD227B783; Mon, 7 Aug 2006 19:17:18 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id A48AD26CABF; Mon, 7 Aug 2006 19:17:17 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77HGliO020423; Mon, 7 Aug 2006 19:16:47 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77HGlHA020422; Mon, 7 Aug 2006 19:16:47 +0200 Date: Mon, 7 Aug 2006 19:16:47 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807171647.GF4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.131 tagged_above=-999 required=2 tests=[AWL=0.333, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.131 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 17:17:26 -0000 On Mon, Aug 07, 2006 at 10:48:26AM -0600, harshavardhanreddy mandeepala wrote: > Infact after compilation it has created the > libglib-2.0.la > libglib-2.0.lai > libglib-2.0.so > libglib-2.0.so.0 > libglib-2.0.so.0.400.7 > > But i don't know these are for i386 ot for arm-linx. > Any suggestion how to find . So what does "file libglib-2.0.so.0.400.7" say? > On 8/7/06, Baurzhan Ismagulov wrote: > > > >ibr@medeu:~$ file libglib-2.0.so.0.400.8 > >libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 > >(ARM), stripped With kind regards, Baurzhan. From rick.jones2@hp.com Mon Aug 7 13:54:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B198B3B0280 for ; Mon, 7 Aug 2006 13:54:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06882-08 for ; Mon, 7 Aug 2006 13:54:49 -0400 (EDT) Received: from palrel11.hp.com (palrel11.hp.com [156.153.255.246]) by menubar.gnome.org (Postfix) with ESMTP id 281173B08E0 for ; Mon, 7 Aug 2006 13:54:49 -0400 (EDT) Received: from tardy.cup.hp.com (tardy.cup.hp.com [15.244.56.217]) by palrel11.hp.com (Postfix) with ESMTP id A05C734A3E; Mon, 7 Aug 2006 10:54:48 -0700 (PDT) Received: from hp.com (localhost [127.0.0.1]) by tardy.cup.hp.com (8.9.3 (PHNE_28810)/8.9.3 SMKit7.02) with ESMTP id KAA06627; Mon, 7 Aug 2006 10:54:47 -0700 (PDT) Message-ID: <44D77E67.6010202@hp.com> Date: Mon, 07 Aug 2006 10:54:47 -0700 From: Rick Jones User-Agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.6) Gecko/20040304 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Nedelcu Subject: Re: help a newbie with GObject References: <1154819511.11924.12.camel@localhost> In-Reply-To: <1154819511.11924.12.camel@localhost> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.803 tagged_above=-999 required=2 tests=[AWL=-0.693, BAYES_05=-1.11] X-Spam-Score: -1.803 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 17:54:50 -0000 I forget who pointed me at this, but I found: http://mail.gnome.org/archives/gtk-devel-list/2004-August/msg00120.html somewhat helpful to me coming from a C but not OO background. I only wish it included signals. My recollection is that this is not the same as what made it into the docs. rick jones From ibr@radix50.net Mon Aug 7 16:21:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1793B0AAC for ; Mon, 7 Aug 2006 16:21:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14296-10 for ; Mon, 7 Aug 2006 16:21:17 -0400 (EDT) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by menubar.gnome.org (Postfix) with ESMTP id B55633B0A93 for ; Mon, 7 Aug 2006 16:21:16 -0400 (EDT) Received: from mail-in-10-z2.arcor-so.net (mail-in-10-z2.arcor-online.net [151.189.8.27]) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 3209A18A876 for ; Mon, 7 Aug 2006 22:21:15 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-10-z2.arcor-so.net (Postfix) with ESMTP id 23A12232E7E for ; Mon, 7 Aug 2006 22:21:15 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-005-058.pools.arcor-ip.net [88.64.5.58]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id DB6F419C8D7 for ; Mon, 7 Aug 2006 22:21:14 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k77KKjfw026064 for ; Mon, 7 Aug 2006 22:20:45 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k77KKi5f026063 for gtk-list@gnome.org; Mon, 7 Aug 2006 22:20:44 +0200 Date: Mon, 7 Aug 2006 22:20:44 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060807202044.GH4137@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> <20060807171647.GF4137@radix50.net> <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.153 tagged_above=-999 required=2 tests=[AWL=0.311, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.153 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2006 20:21:20 -0000 On Mon, Aug 07, 2006 at 12:05:49PM -0600, harshavardhanreddy mandeepala wrote: > So ,libglib-2.0.so.0.400.7 means it is for i386? > then how u did for ARM?If u don't mind can u send the steps? 1. Type "file libglib-2.0.so.0.400.7". Press Enter. 2. Paste the command output to the list. > On 8/7/06, Baurzhan Ismagulov wrote: > >So what does "file libglib-2.0.so.0.400.7" say? > > > >> On 8/7/06, Baurzhan Ismagulov wrote: > >> > > >> >ibr@medeu:~$ file libglib-2.0.so.0.400.8 > >> >libglib-2.0.so.0.400.8: ELF 32-bit LSB shared object, ARM, version 1 > >> >(ARM), stripped With kind regards, Baurzhan. From kyndig@gmail.com Mon Aug 7 22:43:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 95B013B0CFD for ; Mon, 7 Aug 2006 22:43:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30366-09 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.229]) by menubar.gnome.org (Postfix) with ESMTP id 6D9F23B0CF6 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so444225qba for ; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.99.11 with SMTP id w11mr99523wxb; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Mon, 7 Aug 2006 19:42:54 -0700 (PDT) Message-ID: Date: Mon, 7 Aug 2006 22:42:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Mac OS X: error: X development libraries not found MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1361_9686339.1155004974618" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.971 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.971 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 02:43:03 -0000 ------=_Part_1361_9686339.1155004974618 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list - I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error: X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env. Looking at configure.in I see: else have_base_x_pc=false AC_PATH_XTRA if test x$no_x = xyes ; then AC_MSG_ERROR([X development libraries not found]) fi There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software. I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software. Thank you, Calvin ------=_Part_1361_9686339.1155004974618 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list -

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

Looking at configure.in I see:
   else
    have_base_x_pc=false  
    AC_PATH_XTRA
    if test x$no_x = xyes ; then
      AC_MSG_ERROR([X development libraries not found])
    fi
There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software.

I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software.


Thank you,
Calvin

------=_Part_1361_9686339.1155004974618-- From kyndig@gmail.com Mon Aug 7 22:43:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0ED513B0CFD for ; Mon, 7 Aug 2006 22:43:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30137-09 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.230]) by menubar.gnome.org (Postfix) with ESMTP id 6D9CF3B0CF4 for ; Mon, 7 Aug 2006 22:43:02 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so444226qba for ; Mon, 07 Aug 2006 19:43:02 -0700 (PDT) Received: by 10.70.103.12 with SMTP id a12mr37411wxc; Mon, 07 Aug 2006 19:43:01 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Mon, 7 Aug 2006 19:42:54 -0700 (PDT) Message-ID: Date: Mon, 7 Aug 2006 22:42:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Mac OS X: error: X development libraries not found MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1361_9686339.1155004974618" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.971 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.971 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 02:43:05 -0000 ------=_Part_1361_9686339.1155004974618 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list - I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error: X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env. Looking at configure.in I see: else have_base_x_pc=false AC_PATH_XTRA if test x$no_x = xyes ; then AC_MSG_ERROR([X development libraries not found]) fi There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software. I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software. Thank you, Calvin ------=_Part_1361_9686339.1155004974618 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi list -

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

Looking at configure.in I see:
   else
    have_base_x_pc=false  
    AC_PATH_XTRA
    if test x$no_x = xyes ; then
      AC_MSG_ERROR([X development libraries not found])
    fi
There is no switch like in pango, cairo, etc to disable X requirements. Does this mean I have to have X11 devel libraries installed in order to compile? If so, I would assume that means the end user still needs X11 in order to run the software.

I'm attempting to build the Gtk+ env on Mac without having to install Darwin ports or other 3rd party software.


Thank you,
Calvin

------=_Part_1361_9686339.1155004974618-- From lists@nabble.com Tue Aug 8 01:10:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D580D3B0D6A for ; Tue, 8 Aug 2006 01:10:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03733-08 for ; Tue, 8 Aug 2006 01:10:35 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id B314D3B0D67 for ; Tue, 8 Aug 2006 01:10:35 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GAJrP-0004Ny-BE for gtk-list@gnome.org; Mon, 07 Aug 2006 22:10:35 -0700 Message-ID: <5700555.post@talk.nabble.com> Date: Mon, 7 Aug 2006 22:10:35 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: Re: how we can change the title bar color In-Reply-To: <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree References: <5680166.post@talk.nabble.com> <20060807074442.GX16209@potato.chello.upc.cz> <5682514.post@talk.nabble.com> <1154953245.15368.4.camel@localhost.localdomain> <49937.194.138.18.131.1154954156.squirrel@webmail.murrayc.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.274 tagged_above=-999 required=2 tests=[AWL=0.165, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.274 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 05:10:38 -0000 i working with glade+gtk and i wnat to change the tilte bar of a single window. thanks for u r reply. sree. -- View this message in context: http://www.nabble.com/how-we-can-change-the-title-bar-color-tf2061903.html#a5700555 Sent from the Gtk+ - General forum at Nabble.com. From lists@nabble.com Tue Aug 8 02:11:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D26E83B0CF0 for ; Tue, 8 Aug 2006 02:11:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06090-05 for ; Tue, 8 Aug 2006 02:11:21 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id EA8C23B0DB8 for ; Tue, 8 Aug 2006 02:11:09 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GAKo1-0005Xn-Jj for gtk-list@gnome.org; Mon, 07 Aug 2006 23:11:09 -0700 Message-ID: <5700973.post@talk.nabble.com> Date: Mon, 7 Aug 2006 23:11:09 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we can run wav files in Gtk MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.531 tagged_above=-999 required=2 tests=[AWL=-0.581, BAYES_05=-1.11, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.531 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 06:11:24 -0000 i ahve to run a wav file in gtk. means for example if u click any button it should play some songs . sree -- View this message in context: http://www.nabble.com/how-we-can-run-wav-files-in-Gtk-tf2070786.html#a5700973 Sent from the Gtk+ - General forum at Nabble.com. From yeti@physics.muni.cz Tue Aug 8 03:08:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7934D3B0DD9 for ; Tue, 8 Aug 2006 03:08:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08172-10 for ; Tue, 8 Aug 2006 03:08:09 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id 1AD743B0DF1 for ; Tue, 8 Aug 2006 03:08:08 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k78786ul006457 for ; Tue, 8 Aug 2006 09:08:07 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 01DCB23D9A; Tue, 8 Aug 2006 09:08:06 +0200 (CEST) Date: Tue, 8 Aug 2006 09:08:06 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: how we can run wav files in Gtk Message-ID: <20060808070806.GD5553@potato.chello.upc.cz> References: <5700973.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5700973.post@talk.nabble.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.812 tagged_above=-999 required=2 tests=[AWL=-0.702, BAYES_05=-1.11] X-Spam-Score: -1.812 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 07:08:10 -0000 On Mon, Aug 07, 2006 at 11:11:09PM -0700, cnu_sree wrote: > > i ahve to run a wav file in gtk. http://catb.org/~esr/faqs/smart-questions.html#id265951 Yeti -- Anonyms eat their boogers. From ibr@radix50.net Tue Aug 8 04:39:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 035EF3B0E3A for ; Tue, 8 Aug 2006 04:39:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12947-05 for ; Tue, 8 Aug 2006 04:39:45 -0400 (EDT) Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by menubar.gnome.org (Postfix) with ESMTP id 88BD63B0DF6 for ; Tue, 8 Aug 2006 04:39:44 -0400 (EDT) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 665A3236A32; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 56F4CCE647; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-004-078.pools.arcor-ip.net [88.64.4.78]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 1474819D567; Tue, 8 Aug 2006 10:39:43 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k788dDMM013980; Tue, 8 Aug 2006 10:39:13 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k788dDeP013979; Tue, 8 Aug 2006 10:39:13 +0200 Date: Tue, 8 Aug 2006 10:39:13 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Glib cross compilation. Message-ID: <20060808083913.GA11899@radix50.net> References: <1dd596080608070758j29f70590rd48fac6266ea5392@mail.gmail.com> <20060807153707.GE4137@radix50.net> <1dd596080608070948p199c85fdh56e11f13d7df6cfe@mail.gmail.com> <20060807171647.GF4137@radix50.net> <1dd596080608071105g5bae6d3ah800a622723aa9a5a@mail.gmail.com> <20060807202044.GH4137@radix50.net> <1dd596080608080122p21d5abddk1339e363d9638f3c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608080122p21d5abddk1339e363d9638f3c@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.173 tagged_above=-999 required=2 tests=[AWL=0.291, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.173 X-Spam-Level: Cc: hvreddy1110@gmail.com X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 08:39:48 -0000 Harsha, please spend two minutes and subscribe to the list. I won't answer further private e-mails. On Tue, Aug 08, 2006 at 02:22:52AM -0600, harshavardhanreddy mandeepala wrote: > >1. Type "file libglib-2.0.so.0.400.7". Press Enter. > A. ibglib-2.0.so.0.400.7: ELF 32-bit LSB shared object, Intel 80386, > version 1 (SYSV), not stripped > So it is not cross compiled. > > >2. Paste the command output to the list. > What does it mean? > Can u tell me the steps how to cross compile it for my ARM processor.I > am stuck here.If u provide the steps that will be very helpful to me. The steps are provided in your first e-mail. You need to build with CC set, I don't know why. You have the problem that configure can't start the binary. 1. What version of glib are you using? 2. Copy the output of the configure command and send it to the list. With kind regards, Baurzhan. From gnome-gtk-list@m.gmane.org Tue Aug 8 05:40:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F59C3B0005 for ; Tue, 8 Aug 2006 05:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15726-03 for ; Tue, 8 Aug 2006 05:40:19 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id CAFAC3B0010 for ; Tue, 8 Aug 2006 05:40:18 -0400 (EDT) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1GAO4A-00021S-A0 for gtk-list@gnome.org; Tue, 08 Aug 2006 11:40:02 +0200 Received: from h73.244.159.dialup.iptcom.net ([213.159.244.73]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 08 Aug 2006 11:40:02 +0200 Received: from kv11111 by h73.244.159.dialup.iptcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 08 Aug 2006 11:40:02 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Vladimir Subject: Threads, sockets and windows Date: Mon, 07 Aug 2006 21:44:06 +0300 Organization: MIPT Lines: 18 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: h73.244.159.dialup.iptcom.net User-Agent: KNode/0.10.2 Sender: news X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.354 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DATE_IN_PAST_12_24=1.247, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.354 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 09:40:20 -0000 Hello, I'm trying to write two-threaded program: one thread for GUI and the other for network. The network thread needs to poll network socket and to receive messages from the GUI thread (such as commands to send something to network or to disconnect). I've used pipe for commands, so in the network thread I can simply poll() network socket and pipe together. But on windows there is no poll() function. Of course I can use g_async_queue, but doing so I can't poll queue and network socket simultaneously. Are there any method to poll g_async_queue and network socket or pipe and network socket on windows simultaneously ? Or may be, is there something in the GTK/Glib for this kind of situations ? -- Vladimir From tml@iki.fi Tue Aug 8 06:10:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F3FF83B000D for ; Tue, 8 Aug 2006 06:10:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17236-04 for ; Tue, 8 Aug 2006 06:10:14 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id B37593B0011 for ; Tue, 8 Aug 2006 06:10:13 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id CA54B2164FA for ; Tue, 8 Aug 2006 13:10:11 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17624.25275.921000.427269@gargle.gargle.HOWL> Date: Tue, 8 Aug 2006 13:08:59 +0300 To: gtk-list@gnome.org Subject: Re: gtk In-Reply-To: <000d01c6ba48$0a1fb6a0$2f01a8c0@myhome.westell.com> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6ba48$0a1fb6a0$2f01a8c0@myhome.westell.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:10:17 -0000 Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > now I'm running the old 2.2 kernel but I have the source to compile the > 2.6.17 kernel. I'll let somebody else answer... --tml From hvreddy1110@gmail.com Tue Aug 8 06:23:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 105693B0011 for ; Tue, 8 Aug 2006 06:23:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18052-02 for ; Tue, 8 Aug 2006 06:23:43 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by menubar.gnome.org (Postfix) with ESMTP id 0FFAE3B0005 for ; Tue, 8 Aug 2006 06:23:43 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so451676pyg for ; Tue, 08 Aug 2006 03:23:42 -0700 (PDT) Received: by 10.35.98.6 with SMTP id a6mr14342936pym; Tue, 08 Aug 2006 03:23:42 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Tue, 8 Aug 2006 03:23:42 -0700 (PDT) Message-ID: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> Date: Tue, 8 Aug 2006 04:23:42 -0600 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: glib cross compilation error MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.742 tagged_above=-999 required=2 tests=[AWL=0.658, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.742 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:23:47 -0000 Hi , I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. I configured using the following configure command. ./configure --cache-file=arm-linux.cache --host=arm-linux CC=/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc I have cross compiled libraries for arm processor in the .../arm-linux/bin directory. but it has given the following error message. configure: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used. configure: loading cache arm-linux.cache checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for arm-linux-strip... no checking for strip... strip checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... i686-pc-linux-gnu checking host system type... arm-unknown-linux-gnu checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for arm-linux-gcc... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... yes checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc accepts -g... yes checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc... gcc3 checking for c++... c++ checking for arm-linux-g++... (cached) c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... 64 checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /usr/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... no checking for perl... perl checking for indent... indent checking for perl... /usr/bin/perl checking for iconv_open... yes checking how to run the C preprocessor... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... /usr/bin/msgfmt checking for dcgettext... yes checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... no checking for catalogs to be installed... am ar az be bg bn bs ca cs cy da de el en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hr id is it ja ko lt lv mk mn ms nb ne nl nn no or pa pl pt pt_BR ro ru sk sl sq sr sr@ije sr@Latn sv ta tr uk vi wa yi zh_CN zh_TW checking for a sed that does not truncate output... /usr/bin/sed checking for ld used by /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld checking if the linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) is GNU ld... yes checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld option to reload object files... -r checking for BSD-compatible nm... nm checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking how to run the C++ preprocessor... c++ -E checking for arm-linux-g77... no checking for arm-linux-f77... no checking for arm-linux-xlf... no checking for arm-linux-frt... no checking for arm-linux-pgf77... no checking for arm-linux-fort77... no checking for arm-linux-fl32... no checking for arm-linux-af77... no checking for arm-linux-f90... no checking for arm-linux-xlf90... no checking for arm-linux-pgf90... no checking for arm-linux-epcf90... no checking for arm-linux-f95... no checking for arm-linux-fort... no checking for arm-linux-xlf95... no checking for arm-linux-ifc... no checking for arm-linux-efc... no checking for arm-linux-pgf95... no checking for arm-linux-lf95... no checking for arm-linux-gfortran... no checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for epcf90... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for gfortran... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse nm output from /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc object... ok checking for objdir... .libs checking for arm-linux-ar... no checking for ar... ar checking for arm-linux-ranlib... no checking for ranlib... ranlib checking for arm-linux-strip... strip checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc static flag works... yes checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc supports -fno-rtti -fno-exceptions... no checking for /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc option to produce PIC... -fPIC checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc PIC flag -fPIC works... yes checking if /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc supports -c -o file.o... yes checking whether the /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld checking if the linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) is GNU ld... yes checking whether the c++ linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/arm-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes appending configuration tag "F77" to libtool checking for extra flags for POSIX compliance... none needed checking for ANSI C header files... (cached) yes checking for vprintf... yes checking for _doprnt... no checking for working alloca.h... yes checking for alloca... yes checking for atexit... yes checking for on_exit... yes checking for char... yes checking size of char... 1 checking for short... yes checking size of short... 2 checking for long... yes checking size of long... 4 checking for int... yes checking size of int... 4 checking for void *... yes checking size of void *... 4 checking for long long... yes checking size of long long... 8 checking for __int64... no checking size of __int64... 0 checking for format to printf and scanf a guint64... (cached) %llu checking for an ANSI C-conforming const... yes checking if malloc() and friends prototypes are gmem.h compatible... yes checking for growing stack pointer... (cached) no checking for __inline... yes checking for __inline__... yes checking for inline... yes checking for ISO C99 varargs macros in C... yes checking for ISO C99 varargs macros in C++... yes checking for GNUC varargs macros... yes checking whether byte ordering is bigendian... no checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/poll.h usability... yes checking sys/poll.h presence... yes checking for sys/poll.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for sys/types.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/times.h usability... yes checking sys/times.h presence... yes checking for sys/times.h... yes checking for unistd.h... (cached) yes checking values.h usability... yes checking values.h presence... yes checking for values.h... yes checking for stdint.h... (cached) yes checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking langinfo.h usability... yes checking langinfo.h presence... yes checking for langinfo.h... yes checking for nl_langinfo... yes checking for nl_langinfo and CODESET... yes checking whether we are using the GNU C Library 2.1 or newer... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for setlocale... yes checking for size_t... yes checking size of size_t... 4 checking for the appropriate definition for size_t... unsigned int checking for lstat... yes checking for strerror... yes checking for strsignal... yes checking for memmove... yes checking for mkstemp... yes checking for vsnprintf... yes checking for stpcpy... yes checking for strcasecmp... yes checking for strncasecmp... yes checking for poll... yes checking for getcwd... yes checking for nanosleep... yes checking for vasprintf... yes checking for setenv... yes checking for unsetenv... yes checking for getc_unlocked... yes checking for readlink... yes checking for symlink... yes checking for C99 vsnprintf... no checking whether printf supports positional parameters... no checking for signed... yes checking for long long... (cached) yes checking for long double... yes checking for wchar_t... yes checking for wint_t... yes checking for size_t... (cached) yes checking for ptrdiff_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for snprintf... yes checking for C99 snprintf... no checking for sys_errlist... yes checking for sys_siglist... yes checking for sys_siglist declaration... yes checking for fd_set... yes, found in sys/types.h checking whether realloc (NULL,) will work... yes checking for nl_langinfo (CODESET)... yes checking for OpenBSD strlcpy/strlcat... no checking for an implementation of va_copy()... yes checking for an implementation of __va_copy()... yes checking whether va_lists can be copied by value... yes checking for dlopen... no checking for NSLinkModule... no checking for dlopen in -ldl... yes checking for dlsym in -ldl... yes checking for RTLD_GLOBAL brokenness... no checking for preceeding underscore in symbols... configure: error: cannot run test program while cross compiling See `config.log' for more details. Any idea why it is not compiling? Thanks in advance. Regards, Harsha From billcu1@verizon.net Tue Aug 8 06:42:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71E033B0002 for ; Tue, 8 Aug 2006 06:42:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18798-05 for ; Tue, 8 Aug 2006 06:42:26 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id A99353B0080 for ; Tue, 8 Aug 2006 06:42:26 -0400 (EDT) Received: from win98 ([71.251.252.138]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3O00A36DQG98IL@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 08 Aug 2006 05:42:17 -0500 (CDT) Date: Tue, 08 Aug 2006 06:40:57 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <001701c6bad7$228033c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.892 tagged_above=-999 required=2 tests=[AWL=0.093, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.892 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 10:42:29 -0000 Sorry. I just hit reply. Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > now I'm running the old 2.2 kernel but I have the source to compile the > 2.6.17 kernel. I'll let somebody else answer... --tml _______________________________________________ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list From sergstesh@yahoo.com Tue Aug 8 07:44:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6F01B3B0005 for ; Tue, 8 Aug 2006 07:44:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21754-05 for ; Tue, 8 Aug 2006 07:44:33 -0400 (EDT) Received: from web35212.mail.mud.yahoo.com (web35212.mail.mud.yahoo.com [66.163.179.91]) by menubar.gnome.org (Postfix) with SMTP id 3F04A3B0002 for ; Tue, 8 Aug 2006 07:44:33 -0400 (EDT) Received: (qmail 4490 invoked by uid 60001); 8 Aug 2006 11:44:32 -0000 Message-ID: <20060808114432.4488.qmail@web35212.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35212.mail.mud.yahoo.com via HTTP; Tue, 08 Aug 2006 04:44:32 PDT Date: Tue, 8 Aug 2006 04:44:32 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Tor Lillqvist , gtk-list@gnome.org In-Reply-To: <17624.25275.921000.427269@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.639 tagged_above=-999 required=2 tests=[AWL=-1.549, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_LQ=0.077] X-Spam-Score: -0.639 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 11:44:34 -0000 --- Tor Lillqvist wrote: > Bill Cunningham writes, again in a personal mail to me, despite being > asked to keep this discussion on the list: > > i686 Rh linux 7.0 without any special package groups installed because > > I install everything from scratch. I have the Xfree 86 binaries and right > > now I'm running the old 2.2 kernel but I have the source to compile the > > 2.6.17 kernel. > > I'll let somebody else answer... > > --tml > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > "I install everything from scratch", "I'll let somebody else answer..." - :-) - visit my project - see signature. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From fnaumann@boerde.de Tue Aug 8 07:56:15 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBBB3B00F0 for ; Tue, 8 Aug 2006 07:56:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22422-06 for ; Tue, 8 Aug 2006 07:56:13 -0400 (EDT) Received: from mail.uni-magdeburg.de (mail.uni-magdeburg.de [141.44.1.10]) by menubar.gnome.org (Postfix) with ESMTP id 3AAE03B000D for ; Tue, 8 Aug 2006 07:56:13 -0400 (EDT) Received: from wh58-508.st.uni-magdeburg.de ([141.44.198.58]) by mail.uni-magdeburg.de with esmtp (EXIM Version 4.62) id 1GAQBs-0006wm-3Z; Tue, 08 Aug 2006 13:56:12 +0200 Date: Tue, 8 Aug 2006 13:56:03 +0200 (CEST) From: Frank Naumann X-X-Sender: fnaumann@wh58-508.st.uni-magdeburg.de To: Vladimir Subject: Re: Threads, sockets and windows In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scan-Signature: fc25c1e7842d1e3cee0362d8cda57710 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.523 tagged_above=-999 required=2 tests=[AWL=0.076, BAYES_00=-2.599] X-Spam-Score: -2.523 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 11:56:15 -0000 Hello! > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. Under Window you can use select(). For myself I've written for Win32 a poll() function that internally use select() (so the code remains clean and portable). Regards, Frank From armin@arbur.net Tue Aug 8 08:03:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C3D533B000D for ; Tue, 8 Aug 2006 08:03:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22497-10 for ; Tue, 8 Aug 2006 08:03:48 -0400 (EDT) Received: from dd1222.kasserver.com (dd1222.kasserver.com [81.209.148.151]) by menubar.gnome.org (Postfix) with ESMTP id 80C4B3B00AC for ; Tue, 8 Aug 2006 08:03:47 -0400 (EDT) Received: from iroquois.wlan (pD9E39B21.dip.t-dialin.net [217.227.155.33]) by dd1222.kasserver.com (Postfix) with ESMTP id 8FA0B172D73; Tue, 8 Aug 2006 14:03:41 +0200 (CEST) Subject: Re: Threads, sockets and windows From: Armin Burgmeier To: Frank Naumann In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Hf4SUNZYDMLmz60XQ2nF" Date: Tue, 08 Aug 2006 14:03:31 +0200 Message-Id: <1155038611.8194.6.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: Vladimir , gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:03:51 -0000 --=-Hf4SUNZYDMLmz60XQ2nF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable > > But on windows there is no poll() function. Of course I can use > > g_async_queue, but doing so I can't poll queue and network socket > > simultaneously. >=20 > Under Window you can use select(). For myself I've written for Win32 a=20 > poll() function that internally use select() (so the code remains clean=20 > and portable). (Whoops. I should have pressed reply to all. Sorry for the inconvenience, Frank.) The Windows select() function only works for sockets. One cannot give it a regular file descriptor (like a pipe). Note that sockets are no file descriptors on windows. --=-Hf4SUNZYDMLmz60XQ2nF Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2H2ThOtxKlDYm6cRAi5AAJ42AHu08XT+RFqNAVh0JgRy76JawACeKYyv TcVFPx7xBPgGlGeGEvZMf1w= =rueU -----END PGP SIGNATURE----- --=-Hf4SUNZYDMLmz60XQ2nF-- From ibr@radix50.net Tue Aug 8 08:06:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BCAB13B0096 for ; Tue, 8 Aug 2006 08:06:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22526-09 for ; Tue, 8 Aug 2006 08:06:31 -0400 (EDT) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) by menubar.gnome.org (Postfix) with ESMTP id 45A993B008A for ; Tue, 8 Aug 2006 08:06:30 -0400 (EDT) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-08.arcor-online.net (Postfix) with ESMTP id 49E5F18B7A9 for ; Tue, 8 Aug 2006 14:06:29 +0200 (CEST) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 3B8D7CBED6 for ; Tue, 8 Aug 2006 14:06:29 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-004-078.pools.arcor-ip.net [88.64.4.78]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id DE01326D827 for ; Tue, 8 Aug 2006 14:06:28 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.6/8.13.6/Debian-1) with ESMTP id k78C5xLj019755 for ; Tue, 8 Aug 2006 14:05:59 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.6/8.13.6/Submit) id k78C5xAN019754 for gtk-list@gnome.org; Tue, 8 Aug 2006 14:05:59 +0200 Date: Tue, 8 Aug 2006 14:05:59 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: glib cross compilation error Message-ID: <20060808120559.GB11899@radix50.net> References: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.19 tagged_above=-999 required=2 tests=[AWL=0.274, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.19 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:06:33 -0000 On Tue, Aug 08, 2006 at 04:23:42AM -0600, harshavardhanreddy mandeepala wrote: > I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. Any reason for not using a more recent version? > checking for preceeding underscore in symbols... configure: error: > cannot run test program while cross compiling > See `config.log' for more details. > > Any idea why it is not compiling? Try setting glib_cv_uscore=no in your cache file. With kind regards, Baurzhan. From armin@arbur.net Tue Aug 8 08:17:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F5693B0018 for ; Tue, 8 Aug 2006 08:17:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23906-03 for ; Tue, 8 Aug 2006 08:17:47 -0400 (EDT) Received: from dd1222.kasserver.com (dd1222.kasserver.com [81.209.148.151]) by menubar.gnome.org (Postfix) with ESMTP id 753D43B0084 for ; Tue, 8 Aug 2006 08:17:47 -0400 (EDT) Received: from iroquois.wlan (pD9E39B21.dip.t-dialin.net [217.227.155.33]) by dd1222.kasserver.com (Postfix) with ESMTP id 39B41171F4E; Tue, 8 Aug 2006 14:17:46 +0200 (CEST) Subject: Re: Threads, sockets and windows From: Armin Burgmeier To: Vladimir In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-yVu7pXDJDxE0ZFfEM1zE" Date: Tue, 08 Aug 2006 14:17:35 +0200 Message-Id: <1155039455.8194.15.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:17:48 -0000 --=-yVu7pXDJDxE0ZFfEM1zE Content-Type: text/plain Content-Transfer-Encoding: quoted-printable > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. You can associate WSAEvents to your socket via WSAEventSelect and then wait for the events to become signaled using WSAWaitForMultipleObjects. Using a further event may be used to signal that new data is available in the g_async_queue. Extended documentation to the mentioned functions is available in the MSDN (http://msdn.microsoft.com). A probably better approach would be to let glib poll your sockets via creating GIOChannels and using g_io_add_watch to watch for events to occur. This way, you could get completely rid of an extra networking thread. --=-yVu7pXDJDxE0ZFfEM1zE Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2IDfhOtxKlDYm6cRArS9AJ9xg5sAsRaJOqENcIo+TFXnxomLowCfZYqz X0xYKj03MIADrN+JIOzah0o= =kr4S -----END PGP SIGNATURE----- --=-yVu7pXDJDxE0ZFfEM1zE-- From fnaumann@boerde.de Tue Aug 8 08:31:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 61CEF3B0125 for ; Tue, 8 Aug 2006 08:31:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24528-03 for ; Tue, 8 Aug 2006 08:31:01 -0400 (EDT) Received: from mail.uni-magdeburg.de (mail.uni-magdeburg.de [141.44.1.10]) by menubar.gnome.org (Postfix) with ESMTP id 50B1E3B00F3 for ; Tue, 8 Aug 2006 08:31:01 -0400 (EDT) Received: from wh58-508.st.uni-magdeburg.de ([141.44.198.58]) by mail.uni-magdeburg.de with esmtp (EXIM Version 4.62) id 1GAQja-0000xZ-QS; Tue, 08 Aug 2006 14:31:00 +0200 Date: Tue, 8 Aug 2006 14:30:58 +0200 (CEST) From: Frank Naumann X-X-Sender: fnaumann@wh58-508.st.uni-magdeburg.de To: Armin Burgmeier Subject: Re: Threads, sockets and windows In-Reply-To: <1155038611.8194.6.camel@localhost> Message-ID: References: <1155038611.8194.6.camel@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scan-Signature: a6013c0e33abd25698719c75475606ab X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599] X-Spam-Score: -2.524 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 12:31:02 -0000 Hello! >> Under Window you can use select(). For myself I've written for Win32 a >> poll() function that internally use select() (so the code remains clean >> and portable). > (Whoops. I should have pressed reply to all. Sorry for the > inconvenience, Frank.) No problem. > The Windows select() function only works for sockets. One cannot give it > a regular file descriptor (like a pipe). Note that sockets are no file > descriptors on windows. Yes, right. I overseen the pipe. Regards, Frank From hvreddy1110@gmail.com Tue Aug 8 09:00:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EF5D33B00F0 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26078-01 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by menubar.gnome.org (Postfix) with ESMTP id 20F363B00E7 for ; Tue, 8 Aug 2006 09:00:27 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so501676pyg for ; Tue, 08 Aug 2006 06:00:24 -0700 (PDT) Received: by 10.35.126.7 with SMTP id d7mr14616700pyn; Tue, 08 Aug 2006 06:00:24 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Tue, 8 Aug 2006 06:00:24 -0700 (PDT) Message-ID: <1dd596080608080600g28a40b80p3a0d2b2eb7a98312@mail.gmail.com> Date: Tue, 8 Aug 2006 07:00:24 -0600 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Re.Glib compilation problem MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.93 tagged_above=-999 required=2 tests=[AWL=0.470, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.93 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:00:28 -0000 Hi, Finally i cross compiled glib successfully. Thanks to every body. Regards Harsha From mekstran@scl.ameslab.gov Tue Aug 8 09:27:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F6353B0114 for ; Tue, 8 Aug 2006 09:27:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27084-08 for ; Tue, 8 Aug 2006 09:27:05 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 9D2203B0084 for ; Tue, 8 Aug 2006 09:27:05 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 08:27:05 -0500 id 000677BA.44D89129.00000A79 To: Bill Cunningham Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Resent-Date: Tue, 8 Aug 2006 08:26:34 -0500 Message-Id: <4D8F5EE8-2A69-4736-9E16-1902751005A1@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: gtk Resent-From: Michael Ekstrand Resent-Message-Id: Date: Tue, 8 Aug 2006 08:24:34 -0500 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.383 tagged_above=-999 required=2 tests=[AWL=-0.015, BAYES_00=-2.599, TW_GT=0.077, TW_LQ=0.077, TW_TK=0.077] X-Spam-Score: -2.383 X-Spam-Level: Cc: gtkmm-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:27:06 -0000 On Aug 7, 2006, at 11:35 AM, Tor Lillqvist wrote: > Bill Cunningham writes: >> pkg-config doesn't help me much. I'm not quite sure how to use it. I >> know there is the PKG_CONFIG variable. Do you set that in >> bash_profile ? I >> must confess I can't figure out how to use the package. You don't really use pkg-config directly; the configure scripts for what you're installing use it. You merely provide some external direction for it. Basic idea: packages provided pkg-config files (for example, gtk +-2.0.pc). These files tell pkg-config how to tell the build system for another package how to build and link against the first package. Now, to find those files, pkg-config must know where they are. They're installed to $PREFIX/pkgconfig by packages. So, if glib is installed in /opt/gtk2, and you want to link GTK against that glib, you'd run GTK's configure script like so: $ PKG_CONFIG_PATH="/opt/gtk2/lib/pkgconfig:$PKG_CONFIG_PATH" ./ configure thereby setting the environment variable on the command line. Optionally, you can set it in your .bashrc, .bash_profile, or whatever the initialization script for your shell is. - Michael P.S. Hit Reply to All rather than Reply to keep the discussion on the list and avoid the problem Tor's brought to your attention. _______________________________________________ gtkmm-list mailing list gtkmm-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtkmm-list From johannes_vuori@web.de Tue Aug 8 09:41:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 898363B008A for ; Tue, 8 Aug 2006 09:41:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27766-09 for ; Tue, 8 Aug 2006 09:41:25 -0400 (EDT) Received: from fmmailgate05.web.de (fmmailgate05.web.de [217.72.192.243]) by menubar.gnome.org (Postfix) with ESMTP id DFC803B02A3 for ; Tue, 8 Aug 2006 09:41:10 -0400 (EDT) Reveived: from web.de by fmmailgate05.web.de (Postfix) with SMTP id AAFB310D3AE for ; Tue, 8 Aug 2006 15:41:09 +0200 (CEST) Received: from [85.156.188.122] by freemailng1802.web.de with HTTP; Tue, 08 Aug 2006 15:41:07 +0200 Date: Tue, 08 Aug 2006 15:41:07 +0200 Message-Id: <902259177@web.de> MIME-Version: 1.0 From: johannes_vuori@web.de To: gtk-list@gnome.org Subject: Problem installing Precedence: fm-user Organization: http://freemail.web.de/ Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.456 tagged_above=-999 required=2 tests=[AWL=0.028, BAYES_00=-2.599, NO_REAL_NAME=0.961, TW_DK=0.077, TW_GD=0.077] X-Spam-Score: -1.456 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:41:27 -0000 Hi, I am trying to install the gtk+ library. The configure file runs nicely, and also the makefile - for a minute. Till this comes: #################################################################################################### gcc -DHAVE_CONFIG_H -I. -I. -I../.. -DG_LOG_DOMAIN=\"Gdk\" -DGDK_COMPILATION -I../.. -I../../gdk -I../../gdk -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_CAST_CHECKS -pthread -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pango-1.0 -I/usr/local/include/cairo -I/usr/X11R6/include -I/usr/X11R6/include -g -O2 -Wall -MT gdkdrawable-x11.lo -MD -MP -MF .deps/gdkdrawable-x11.Tpo -c gdkdrawable-x11.c -fPIC -DPIC -o .libs/gdkdrawable-x11.o In file included from /usr/local/include/pango-1.0/pango/pangofc-font.h:25, from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/include/ft2build.h:56:38: freetype/config/ftheader.h: No such file or directory In file included from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangofc-font.h:26:10: #include expects "FILENAME" or In file included from /usr/local/include/pango-1.0/pango/pango-ot.h:25, from /usr/local/include/pango-1.0/pango/pangoxft.h:27, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangofc-font.h:147: error: syntax error before "pango_fc_font_lock_face" /usr/local/include/pango-1.0/pango/pangofc-font.h:147: warning: type defaults to `int' in declaration of `pango_fc_font_lock_face' /usr/local/include/pango-1.0/pango/pangofc-font.h:147: warning: data definition has no type or storage class In file included from /usr/local/include/pango-1.0/pango/pangoxft-render.h:31, from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/X11R6/include/X11/Xft/Xft.h:41:10: #include expects "FILENAME" or In file included from /usr/local/include/pango-1.0/pango/pangoxft-render.h:31, from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/X11R6/include/X11/Xft/Xft.h:64: error: syntax error before "_XftFTlibrary" /usr/X11R6/include/X11/Xft/Xft.h:64: warning: type defaults to `int' in declaration of `_XftFTlibrary' /usr/X11R6/include/X11/Xft/Xft.h:64: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:98: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:98: warning: no semicolon at end of struct or union /usr/X11R6/include/X11/Xft/Xft.h:101: error: syntax error before '}' token /usr/X11R6/include/X11/Xft/Xft.h:101: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:101: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:105: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:105: warning: no semicolon at end of struct or union /usr/X11R6/include/X11/Xft/Xft.h:108: error: syntax error before '}' token /usr/X11R6/include/X11/Xft/Xft.h:108: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:108: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:202: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:202: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:268: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:268: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:274: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:274: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:307: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:307: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:366: error: syntax error before "XftLockFace" /usr/X11R6/include/X11/Xft/Xft.h:366: warning: type defaults to `int' in declaration of `XftLockFace' /usr/X11R6/include/X11/Xft/Xft.h:366: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:405: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:405: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:411: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:411: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:420: error: syntax error before "FT_UInt" /usr/X11R6/include/X11/Xft/Xft.h:430: error: syntax error before "XftCharIndex" /usr/X11R6/include/X11/Xft/Xft.h:432: warning: type defaults to `int' in declaration of `XftCharIndex' /usr/X11R6/include/X11/Xft/Xft.h:432: warning: data definition has no type or storage class /usr/X11R6/include/X11/Xft/Xft.h:473: warning: type defaults to `int' in declaration of `FT_UInt' /usr/X11R6/include/X11/Xft/Xft.h:473: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:484: warning: type defaults to `int' in declaration of `XftGlyphSpec' /usr/X11R6/include/X11/Xft/Xft.h:484: error: syntax error before '*' token /usr/X11R6/include/X11/Xft/Xft.h:505: warning: type defaults to `int' in declaration of `XftGlyphFontSpec' /usr/X11R6/include/X11/Xft/Xft.h:505: error: syntax error before '*' token In file included from /usr/local/include/pango-1.0/pango/pangoxft.h:30, from gdkdrawable-x11.c:32: /usr/local/include/pango-1.0/pango/pangoxft-render.h:94: error: syntax error before "XftGlyphSpec" make[4]: *** [gdkdrawable-x11.lo] Error 1 make[4]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk/x11' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/johannes/ALLGEMEINES/eight/pogramming/needed/libraries/gtk+-2.8.0/gdk' make: *** [all] Error 2 #########################################################################################3 Sorry that this I can't say more to this, but hopefully somebody can help me. Johannes P.S: I have the file ftheader.h in freetype2/freetype/config/ P.S.S: I tried sending the same e-mail when I wasn't yet suscribed a week or two ago already. After waiting for some time, I decided to subscribe to the list and try again. _____________________________________________________________________ Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! http://smartsurfer.web.de/?mc=100071&distributionid=000000000071 From tml@iki.fi Tue Aug 8 09:52:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B43963B0018 for ; Tue, 8 Aug 2006 09:52:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28397-04 for ; Tue, 8 Aug 2006 09:52:24 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 04C5B3B000D for ; Tue, 8 Aug 2006 09:52:22 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCDLXI.tun.saunalahti.fi [213.169.2.61]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id C1716216278 for ; Tue, 8 Aug 2006 16:52:19 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17624.38603.671000.937545@gargle.gargle.HOWL> Date: Tue, 8 Aug 2006 16:51:07 +0300 To: gtk-list@gnome.org Subject: Re: Threads, sockets and windows In-Reply-To: <1155039455.8194.15.camel@localhost> References: <1155039455.8194.15.camel@localhost> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:52:25 -0000 Armin Burgmeier writes: > A probably better approach would be to let glib poll your sockets via > creating GIOChannels and using g_io_add_watch to watch for events to > occur. Yep, and this then will in fact use the WSAEventSelect mechanism on Windows. (In GLib >= 2.8) Please note, though, that there are slight differences in semantic details when watching socket events using GLib on Unix vs Windows. For instance watched sockets automatically become non-blocking on Windows. (This is a side-effect of using the WSAEventSelect mechanism.) Code that works (at least most of the time...) on Linux doesn't necessarily work on Windows, and vice versa. It's best to test continuously on both platforms during development, and not just attempty a port to Windows after having done all the coding and design decisions. If I recall correctly, one good rule of thumb is to read as much can from a GIOChannel when you get the callback that it is readable, until you get G_IO_STATUS_AGAIN. And, use the GIOChannel API to read/write from them, don't use read()/write()/send()/recv() directly. (Especially so as read()/write() don't work on sockets in Windows, they work only on the "file descriptors" returbned by open().) --tml From lists@nabble.com Tue Aug 8 10:10:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D96803B0236 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29346-05 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0E6B33B01C0 for ; Tue, 8 Aug 2006 10:10:45 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GASI7-0001H9-Hq for gtk-list@gnome.org; Tue, 08 Aug 2006 07:10:43 -0700 Message-ID: <5707260.post@talk.nabble.com> Date: Tue, 8 Aug 2006 07:10:43 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding sound files MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-Sender: sree_as@hotmail.com X-Nabble-From: cnu_sree X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.523 tagged_above=-999 required=2 tests=[AWL=-0.573, BAYES_05=-1.11, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.523 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 14:10:46 -0000 is there any way to play a sound file using Gtk. is there any class in Gtk for this task. thank u, sree. -- View this message in context: http://www.nabble.com/regarding-sound-files-tf2072925.html#a5707260 Sent from the Gtk+ - General forum at Nabble.com. From mekstran@scl.ameslab.gov Tue Aug 8 14:12:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB1643B0102 for ; Tue, 8 Aug 2006 14:12:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08541-06 for ; Tue, 8 Aug 2006 14:12:37 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 72F353B02F3 for ; Tue, 8 Aug 2006 14:12:37 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 13:12:36 -0500 id 0000C03F.44D8D414.00003AEF In-Reply-To: <5707260.post@talk.nabble.com> References: <5707260.post@talk.nabble.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: regarding sound files Date: Tue, 8 Aug 2006 13:12:05 -0500 To: cnu_sree X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.493 tagged_above=-999 required=2 tests=[AWL=0.106, BAYES_00=-2.599] X-Spam-Score: -2.493 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 18:12:39 -0000 On Aug 8, 2006, at 9:10 AM, cnu_sree wrote: > is there any way to play a sound file using Gtk. > is there any class in Gtk for this task. Not in GTK directly. You'll need another sound library (such as esound, the alsa libraries, gstreamer, or SDL if you want more cross- platform support). GStreamer uses glib, so it should integrate well with your GTK program (haven't used it myself though). - Michael From mekstran@scl.ameslab.gov Tue Aug 8 15:59:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2FC8B3B0382 for ; Tue, 8 Aug 2006 15:59:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13310-08 for ; Tue, 8 Aug 2006 15:59:38 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 50B523B02FE for ; Tue, 8 Aug 2006 15:59:38 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Tue, 08 Aug 2006 14:59:37 -0500 id 0000C03F.44D8ED29.00004B0A In-Reply-To: <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6baf8$fda14c20$2f01a8c0@myhome.westell.com> <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <3CBD176D-5F7F-4E51-8B60-6E292C00442E@scl.ameslab.gov> Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: gtk Date: Tue, 8 Aug 2006 14:59:07 -0500 To: Bill Cunningham , gtk-list@gnome.org X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.378 tagged_above=-999 required=2 tests=[AWL=-0.010, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077, TW_XX=0.077] X-Spam-Score: -2.378 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 19:59:39 -0000 OK, after enough cross-posting madness due to my silly mistake earlier (mailing gtkmm-list rather than gtk-list), hopefully this will put this thread back where it belongs. On Aug 8, 2006, at 2:53 PM, Michael Ekstrand wrote: > On Aug 8, 2006, at 9:43 AM, Bill Cunningham wrote: >> Ok I used reply all this time. :) The options at compile time >> that I >> ususally use is really only --prefix=/usr maybe some other switches >> with --x-includes if that option is available. I tried compiling >> all this >> stuff without XFree and I don't think it worked because I'm >> assuming XFree >> provides frame buffer support. I want to compile xxms and firefox >> and maybe >> work on some basic packages of the gnome desktop. > > A few things: one, you do need to build with XFree - otherwise it > won't do anything useful. Also, installing to /usr is stepping on > your distro's domain, and quite susceptible to problems. Installing > to /usr/local puts stuff in a location the distro has actually > reserved (or should reserve) for you to use for your own software. > > IIRC, XMMS uses GTK 1.2. You'll need to install that separately. > beep-media-player is based on the XMMS source code and does use GTK2 > though. > > If you install pkg-config and all the glib/gtk stuff to the same > prefix, as long as pkg-config is in your PATH, you won't have any > problems with needing to set PKG_CONFIG_PATH (unless you somehow > override the default pkg-config search path. > > - Michael > _______________________________________________ > gtkmm-list mailing list > gtkmm-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtkmm-list From ben@benjohnson.net Tue Aug 8 17:35:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7EC373B00A2 for ; Tue, 8 Aug 2006 17:35:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18142-02 for ; Tue, 8 Aug 2006 17:35:07 -0400 (EDT) Received: from server016.dfw.nationwide.net (server016.dfw.nationwide.net [206.123.129.79]) by menubar.gnome.org (Postfix) with SMTP id 0A2EA3B011D for ; Tue, 8 Aug 2006 17:35:07 -0400 (EDT) Received: (qmail 23344 invoked from network); 8 Aug 2006 21:30:10 -0000 Received: from sense-sea-megasub-1-814.oz.net (HELO rose) (216.39.170.53) by 206.123.129.9 with SMTP; Tue, 08 Aug 2006 21:30:10 +0000 Received: from localhost (localhost [127.0.0.1]) by rose (Postfix) with ESMTP id 0D688E4081 for ; Tue, 8 Aug 2006 14:35:03 -0700 (PDT) Received: from rose ([127.0.0.1]) by localhost (rose [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03428-08 for ; Tue, 8 Aug 2006 14:35:02 -0700 (PDT) Received: by rose (Postfix, from userid 1000) id B870EE4084; Tue, 8 Aug 2006 14:35:02 -0700 (PDT) Date: Tue, 8 Aug 2006 14:35:02 -0700 From: Anna To: gtk-list@gnome.org Subject: Re: Threads, sockets and windows Message-ID: <20060808213502.GI20651@rose.benjohnson.net> Mail-Followup-To: Anna , gtk-list@gnome.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at benjohnson.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 21:35:08 -0000 On Mon, Aug 07, 2006 at 09:44:06PM +0300, Vladimir wrote: > Hello, > > I'm trying to write two-threaded program: one thread for GUI and the other > for network. The network thread needs to poll network socket and to receive > messages from the GUI thread (such as commands to send something to network > or to disconnect). I've used pipe for commands, so in the network thread I > can simply poll() network socket and pipe together. > > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. > > Are there any method to poll g_async_queue and network socket or pipe and > network socket on windows simultaneously ? Or may be, is there something in > the GTK/Glib for this kind of situations ? look into GNet: http://www.gnetlibrary.org/ It uses g_io_ stuff, so it's easy to do asynch io with it, and gnet makes setting up sockets pretty simple. I haven't used it on windows, but it has been ported. I imaging it should work. Added plus: you don't need threads. - Anna From besfahbo@redhat.com Tue Aug 8 20:55:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 18F0E3B05AE; Tue, 8 Aug 2006 20:55:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25592-04; Tue, 8 Aug 2006 20:55:47 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 160163B0493; Tue, 8 Aug 2006 20:55:47 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k790tk23005848; Tue, 8 Aug 2006 20:55:46 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k790tkGM032683; Tue, 8 Aug 2006 20:55:46 -0400 Received: from vpn50-145.rdu.redhat.com (vpn50-145.rdu.redhat.com [172.16.50.145]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k790tiGi001689; Tue, 8 Aug 2006 20:55:45 -0400 Subject: Pango-1.14.0 released From: Behdad Esfahbod To: gnome-announce-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HmZdRAeI6UrDKG4VtRJV" Organization: Red Hat, Inc. Date: Tue, 08 Aug 2006 20:55:43 -0400 Message-Id: <1155084943.31281.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 00:55:52 -0000 --=-HmZdRAeI6UrDKG4VtRJV Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Pango-1.14.0 is now available for download at: http://download.gnome.org/sources/pango/1.14/ 39144843f377ec6b60dbbf1a25d2a49a pango-1.14.0.tar.bz2 65ecb3d29cebcaf97de14e55831ebb7c pango-1.14.0.tar.gz This is a stable release providing new functionality as compared to Pango-1.12, while maintaining source and binary compatibility. Notable improvements in Pango since version 1.12 include: * Update to Unicode 5.0.0 character database * Improved Indic rendering [LingNing Zhang] * Improved documentation, including list of new symbols added in each stable version of Pango [Priit Laes] * Various bug fixes as usual * The OpenType Layout code in Pango has a new home and name now, and is shared by Qt. HarfBuzz, is still copied internally in Pango, so no separate compilation/installation is necessary. http://www.freedesktop.org/wiki/Software/HarfBuzz About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Bugs should be reported to http://bugzilla.gnome.org. Pango 1.14.0 depends on version 2.10.0 or newer of the GLib library and version 1.2.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. 08 August 2006 Behdad Esfahbod --=-HmZdRAeI6UrDKG4VtRJV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE2TKPn+4E5dNTERURAlpiAKCyhSIPGPEOgxrbOTeZjY0mwZ9DQgCfRw+d HEclG3hRu34xXGzjM2X/qhc= =Q/C/ -----END PGP SIGNATURE----- --=-HmZdRAeI6UrDKG4VtRJV-- From billcu1@verizon.net Tue Aug 8 21:35:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F16B83B008C for ; Tue, 8 Aug 2006 21:35:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27518-05 for ; Tue, 8 Aug 2006 21:35:50 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 2C6A93B01A3 for ; Tue, 8 Aug 2006 21:35:50 -0400 (EDT) Received: from win98 ([72.64.26.183]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3P0077OJ3PKCB7@vms046.mailsrvcs.net> for gtk-list@gnome.org; Tue, 08 Aug 2006 20:35:49 -0500 (CDT) Date: Tue, 08 Aug 2006 21:34:27 -0400 From: "Bill Cunningham" Subject: Re: gtk To: "Michael Ekstrand" , Message-id: <001b01c6bb53$f4bc5220$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <002c01c6ba19$8492cdc0$2f01a8c0@myhome.westell.com> <17623.12266.625000.494933@gargle.gargle.HOWL> <000b01c6ba35$5832e000$2f01a8c0@myhome.westell.com> <17623.27599.953000.77450@gargle.gargle.HOWL> <000d01c6baf8$fda14c20$2f01a8c0@myhome.westell.com> <98C71ABD-37A6-41D4-AAB1-1AB3B900AA4F@scl.ameslab.gov> <3CBD176D-5F7F-4E51-8B60-6E292C00442E@scl.ameslab.gov> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.965 tagged_above=-999 required=2 tests=[AWL=0.888, BAYES_50=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 0.965 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 01:35:52 -0000 > > If you install pkg-config and all the glib/gtk stuff to the same > > prefix, as long as pkg-config is in your PATH, you won't have any > > problems with needing to set PKG_CONFIG_PATH (unless you somehow > > override the default pkg-config search path. > > > > - Michael I put PKG_CONFIG=/usr/bin/pkg-source:$PKG_CONFIG in bash_profile til all is installed. Bill From gnome-gtk-list@m.gmane.org Wed Aug 9 06:10:31 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08B743B049E for ; Wed, 9 Aug 2006 06:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16670-07 for ; Wed, 9 Aug 2006 06:10:28 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id 55C923B00E6 for ; Wed, 9 Aug 2006 06:10:28 -0400 (EDT) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GAl11-0005gs-48 for gtk-list@gnome.org; Wed, 09 Aug 2006 12:10:19 +0200 Received: from h90.245.159.dialup.iptcom.net ([213.159.245.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Aug 2006 12:10:19 +0200 Received: from kv11111 by h90.245.159.dialup.iptcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Aug 2006 12:10:19 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Vladimir Subject: Re: Threads, sockets and windows Date: Wed, 09 Aug 2006 13:14:01 +0300 Organization: MIPT Lines: 55 Message-ID: References: <1155039455.8194.15.camel@localhost> <17624.38603.671000.937545@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: h90.245.159.dialup.iptcom.net User-Agent: KNode/0.10.2 Sender: news X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.939 tagged_above=-999 required=2 tests=[AWL=0.585, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077] X-Spam-Score: -1.939 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:10:31 -0000 Hello, > If I recall correctly, one good rule of thumb is to read as much can > from a GIOChannel when you get the callback that it is readable, until > you get G_IO_STATUS_AGAIN. Can I just use g_io_channel_unix_new(socket) to create GIOChannel for windows socket ? The main problem in my program is that I need a very low response time for network packets. GMainLoop is not suitable for me since GIOFunc gets called too late, especially when some GUI action is in progress. So I'm using a separate thread for network, and not not using GMainLoop in that thread. Now I'm trying to select between two possibilities: direct usage of WSAEventSelect, or creation of two more threads just to watch socket and pipe and pass messages to the network thread through g_async_queue. And yes, I do know about testing linux and windows versions simultaneously, but I've just did not have windows available before now. After network-related part I'll have to port audio IO part (written in ALSA). Thanks a lot for your reply ! Tor Lillqvist wrote: > Armin Burgmeier writes: > > A probably better approach would be to let glib poll your sockets via > > creating GIOChannels and using g_io_add_watch to watch for events to > > occur. > > Yep, and this then will in fact use the WSAEventSelect mechanism on > Windows. (In GLib >= 2.8) > > Please note, though, that there are slight differences in semantic > details when watching socket events using GLib on Unix vs Windows. For > instance watched sockets automatically become non-blocking on > Windows. (This is a side-effect of using the WSAEventSelect > mechanism.) Code that works (at least most of the time...) on Linux > doesn't necessarily work on Windows, and vice versa. It's best to test > continuously on both platforms during development, and not just > attempty a port to Windows after having done all the coding and design > decisions. > > If I recall correctly, one good rule of thumb is to read as much can > from a GIOChannel when you get the callback that it is readable, until > you get G_IO_STATUS_AGAIN. And, use the GIOChannel API to read/write > from them, don't use read()/write()/send()/recv() > directly. (Especially so as read()/write() don't work on sockets in > Windows, they work only on the "file descriptors" returbned by > open().) > > --tml -- Vladimir From jcupitt@gmail.com Wed Aug 9 06:20:50 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D0BFE3B00E6 for ; Wed, 9 Aug 2006 06:20:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17416-02 for ; Wed, 9 Aug 2006 06:20:50 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id 9BE3E3B02FF for ; Wed, 9 Aug 2006 06:20:49 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id n15so102628nfc for ; Wed, 09 Aug 2006 03:20:42 -0700 (PDT) Received: by 10.78.139.5 with SMTP id m5mr257505hud; Wed, 09 Aug 2006 03:20:42 -0700 (PDT) Received: by 10.78.133.9 with HTTP; Wed, 9 Aug 2006 03:20:42 -0700 (PDT) Message-ID: <522c6460608090320h5ec553lb0e51ceed71b7957@mail.gmail.com> Date: Wed, 9 Aug 2006 11:20:42 +0100 From: "John Cupitt" To: "Christophe Dehais" Subject: Re: Where are the pixels ? In-Reply-To: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4a305d880608070613q60eff18dn20ea7708f45b164e@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.392 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.392 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:20:51 -0000 On 8/7/06, Christophe Dehais wrote: > What is not clear to me is whether or not a GdkWindow contains the real > pixels in some way. Let's assume this scenario: a window is created and its > size is computed through size negociation, then a pixel buffer containing > all pixels for the window is allocated. No, GTK doesn't work like this. Like X, there are no pixel buffers. Instead, applications are sent expose events and have to be able to redraw parts of their windows when asked. Of course one way they can do this is by allocating a pixel buffer themselves and copying parts of that to the screen on request, but they are free to do it some other way if they want. The purpose of a GdkWindow is to do clipping, coordinate transformation and event management. They do not hold pixels. GTK does automatic double buffering for you. So when an expose event occurs, it allocates an off screen pixel buffer as big as the damaged region and redirects drawing there. When the applications handler has finished drawing to the off screen buffer, GTK copes it to the screen and frees it. This is why you should only ever draw in expose handlers. The system works like this to reduce memory usage. X was designed in the 1980s for workstations with 4 MB of RAM ... you just couldn't afford pixel buffers for all the windows. It was much better to just ask programs to reissue the drawing commands for the damaged areas. Things are changing a bit now with the introduction of XGL and friends. There are pixel buffers for each window at some level in the system. GTK's redraw-on-expose model will stay though (I think). John From tml@iki.fi Wed Aug 9 06:55:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8802B3B00E6 for ; Wed, 9 Aug 2006 06:55:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18902-09 for ; Wed, 9 Aug 2006 06:55:09 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 3E0313B02FF for ; Wed, 9 Aug 2006 06:55:09 -0400 (EDT) Received: from pettson.tml.iki.fi (MCCLXXIX.tun.saunalahti.fi [213.169.28.79]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 32B422161D7; Wed, 9 Aug 2006 13:55:06 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17625.48806.593000.439868@gargle.gargle.HOWL> Date: Wed, 9 Aug 2006 13:53:26 +0300 To: Vladimir Subject: Re: Threads, sockets and windows In-Reply-To: References: <1155039455.8194.15.camel@localhost> <17624.38603.671000.937545@gargle.gargle.HOWL> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.978 tagged_above=-999 required=2 tests=[AWL=-0.235, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_PROXY=0.721] X-Spam-Score: -1.978 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 10:55:10 -0000 Vladimir writes: > Can I just use g_io_channel_unix_new(socket) to create GIOChannel for > windows socket ? Not reliably. The same small integer might be both a valid file descriptor and a socket, and there is no way for g_io_channel_unix_new() to know which one you mean. Use g_io_channel_win32_new_fd() or g_io_channel_win32_socket(). (Vladimir presumably knows this, but for people who are wondering: In Win32, "file descriptors" (the integers that open() and dup() return) are implemented in the C library, not the kernel. Sockets again (the integers that socket() and accept() return) are implemented by the kernel. They are not related at all, the C library knows nothing about sockets, and the kernel knows nothing about C file descriptors.) --tml From billcu1@verizon.net Wed Aug 9 07:19:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ADD9D3B00E6 for ; Wed, 9 Aug 2006 07:19:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20190-06 for ; Wed, 9 Aug 2006 07:19:53 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id CBCD23B01E2 for ; Wed, 9 Aug 2006 07:19:52 -0400 (EDT) Received: from win98 ([207.68.84.244]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Q009J2A4LUH9T@vms046.mailsrvcs.net> for gtk-list@gnome.org; Wed, 09 Aug 2006 06:19:34 -0500 (CDT) Date: Wed, 09 Aug 2006 07:18:11 -0400 From: "Bill Cunningham" Subject: gtk To: Message-id: <000d01c6bba5$809b57e0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.045 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, SPF_PASS=-0.001, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: 0.045 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 11:19:54 -0000 Before I try Serge's tool I want to try this the official way. Pkg-config has been set and I got atk to install so I tried to install gtk having atk and glib installed. I got a configure script error saying glib, atk, pango, and cairo not installed. Well glib and atk are installed so something isn't right. Two more variables were mentioned; something about base dependancies to override pkg-config. It looks like pango is going to need xml so I can get a libxml2 package. This is just getting more complicated. Bill From sergstesh@yahoo.com Wed Aug 9 07:28:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C7CE03B0325 for ; Wed, 9 Aug 2006 07:28:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20587-07 for ; Wed, 9 Aug 2006 07:28:33 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 479B93B0301 for ; Wed, 9 Aug 2006 07:28:32 -0400 (EDT) Received: (qmail 3441 invoked by uid 60001); 9 Aug 2006 11:28:31 -0000 Message-ID: <20060809112831.3439.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35204.mail.mud.yahoo.com via HTTP; Wed, 09 Aug 2006 04:28:31 PDT Date: Wed, 9 Aug 2006 04:28:31 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6bba5$809b57e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.581 tagged_above=-999 required=2 tests=[AWL=-1.568, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -0.581 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 11:28:33 -0000 --- Bill Cunningham wrote: > Before I try Serge's tool I want to try this the official way. > Pkg-config has been set and I got atk to install so I tried to install gtk > having atk and glib installed. I got a configure script error saying glib, > atk, pango, and cairo not installed. Well glib and atk are installed so > something isn't right. Two more variables were mentioned; something about > base dependancies to override pkg-config. It looks like pango is going to > need xml so I can get a libxml2 package. This is just getting more > complicated. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Before even trying my tool you can have a look into build data sub - it describes dependencies hierarchivally. Here is the excerpt: 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; #my $minor_ver = '10'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '20', #micro_ver => '1', depends_on => { targets => { atk => do{ my $major_ver = '1'; #my $minor_ver = '10'; my $minor_ver = '12'; $atk_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'atk', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, #micro_ver => '3', micro_ver => '1', depends_on => { targets => { glib => do{ my $major_ver = '2'; my $minor_ver = '12'; $glib_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'glib', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', }; } # do # glib } # targets } # depends_on } }, # do # atk cairo => do{ $cairo_hash_ref = { base_urls => ["http://cairographics.org/releases"], major_ver => '1', minor_ver => '2', micro_ver => '0', } }, # do # cairo pango => do{ my $major_ver = '1'; my $minor_ver = '12'; $pango_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'pango', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', depends_on => { targets => { glib => $glib_hash_ref, cairo => $cairo_hash_ref } } # depends_on } # pango } # do # pango } # targets } # depends_on } # 'gtk+' }, # do # 'gtk+' --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From salgari2004@hotmail.com Wed Aug 9 04:13:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8EF613B0079 for ; Wed, 9 Aug 2006 04:13:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10563-05 for ; Wed, 9 Aug 2006 04:13:51 -0400 (EDT) Received: from bay0-omc1-s41.bay0.hotmail.com (bay0-omc1-s41.bay0.hotmail.com [65.54.246.113]) by menubar.gnome.org (Postfix) with ESMTP id 853E43B0157 for ; Wed, 9 Aug 2006 04:13:51 -0400 (EDT) Received: from hotmail.com ([65.54.224.26]) by bay0-omc1-s41.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 9 Aug 2006 01:13:51 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 9 Aug 2006 01:13:51 -0700 Message-ID: Received: from 65.54.224.200 by by105fd.bay105.hotmail.msn.com with HTTP; Wed, 09 Aug 2006 08:13:47 GMT X-Originating-IP: [158.42.214.106] X-Originating-Email: [salgari2004@hotmail.com] X-Sender: salgari2004@hotmail.com In-Reply-To: <229D14E2-9C13-4101-8FAD-D41918E948FD@xs4all.nl> From: "Roses Roses" To: gtk-list@gnome.org Subject: Pixmap (II) Date: Wed, 09 Aug 2006 08:13:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 09 Aug 2006 08:13:51.0213 (UTC) FILETIME=[BF5E89D0:01C6BB8B] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.685 tagged_above=-999 required=2 tests=[AWL=1.300, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_QH=0.077] X-Spam-Score: 0.685 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 09:04:56 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 08:13:52 -0000 Hi! I've read your solution, but I haven't obtained the correct answer. My drawable routine is the next: GdkBitmap *masc; // Mascara de bits GtkStyle *stile; // Estilo stile = gtk_widget_get_style(window); pixmap=gdk_pixmap_create_from_xpm(window->window,&masc,&stile->bg[GTK_STATE_NORMAL],"gtk.xpm"); //pixmap is a GdkPixmap and gtk.xpm is the new path of the new image pixmapwid= gtk_pixmap_new (pixmap, masc); //pixmapwid is a GtkWidget gtk_widget_queue_draw_area(pixmapwid,0,0,900,400); gtk_widget_show(pixmapwid); But seems it's not correct. Have I any erro? Thanks!! ============================================ hi, one possible paradigm is to adhere to the following guidelines: 1) the configure event callback is responsible for calling all routines responsible for "drawing" the pixmap for ultimate display, but does NOT do the actual display to the screen; 2) the expose event callback is responsible for rendering the current pixmap to be displayed to the screen, but does NO "drawing" here, only render the pixmap to the screen via gdk_draw_drawable() or equivalent; 3.1) the drawing routine(s) are responsible for creating the pixmap for ultimate display; 3.2) store the address of the pixmap in a variable that the expose event callback also has access to (global or otherwise) 3.3) the last command as part of the drawing routine is to call gtk_widget_queue_draw_area() on the widget used to display the pixmap; this will force an expose event in this manner, your drawing routine is called on all configure events followed immediately by the expose event rendering the pixmap to the screen. while calling your drawing routine via a user-event, or some other event internal to the program, will also result in the expose event being called to render the newly made pixmap to the screen. so, in your case, you would attach the button-click to a callback ultimately calling your pixmap drawing routine. the drawing routine will then be called on button-click and your new pixmap will be rendered via the expose event. cheers, richard On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: Hi!!! I'm programming a little interface but I have a prblem. The objective of this program is shows a pixmap qhich must ghange qhen the user clicks on a button. How the fuction of the button can change the pixmap assigned? One idea I've is declare the GtkPixmap as a global variable, but I'm not sure if this plan can run. Thank you very much _________________________________________________________________ Horóscopo, tarot, numerología... Escucha lo que te dicen los astros. http://astrocentro.msn.es/ From tilman@code-monkey.de Tue Aug 8 12:44:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E30453B008A for ; Tue, 8 Aug 2006 12:44:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04255-02 for ; Tue, 8 Aug 2006 12:44:15 -0400 (EDT) Received: from code-monkey.de (code-monkey.de [81.169.170.126]) by menubar.gnome.org (Postfix) with ESMTP id 6A8193B0080 for ; Tue, 8 Aug 2006 12:44:15 -0400 (EDT) Received: from hammerfest (N12e6.n.pppool.de [89.50.18.230]) by code-monkey.de (Postfix) with ESMTP id 27E3E77EB for ; Tue, 8 Aug 2006 18:44:13 +0200 (CEST) Date: Tue, 8 Aug 2006 18:44:13 +0200 From: Tilman Sauerbeck To: gtk-list@gnome.org Subject: GTK 2.10 - missing icons in file dialog Message-ID: <20060808164413.GA32103@code-monkey.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: mutt-ng/devel-r796 (Linux) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 09:05:14 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 16:44:17 -0000 Hi, with GTK 2.10, I've noticed that the file dialog doesn't show icons for files and directories the way it used to. It's using the same fallback icon (white rectangle) for any entry. http://bugzilla.gnome.org/show_bug.cgi?id=345666 This patch makes the file dialog show the correct icon for directories again. Every file still gets the same fallback file icon though. I'm not sure, but I believe that with GTK 2.8, it showed specific icons for different file types. As the bug says, this is without any gnome theme whatsoever, all I got is hicolor-icon-theme 0.9. Ideas? Is the bug valid? Is the attached patch supposed to fix everything back to normal? Please CC me when replying, I'm not subscribed. Thanks, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From riboaz@xs4all.nl Wed Aug 9 09:41:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F2D643B018D for ; Wed, 9 Aug 2006 09:41:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27690-05 for ; Wed, 9 Aug 2006 09:41:53 -0400 (EDT) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by menubar.gnome.org (Postfix) with ESMTP id 3556C3B0103 for ; Wed, 9 Aug 2006 09:41:53 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr14.xs4all.nl (8.13.6/8.13.6) with ESMTP id k79DfmWC094326; Wed, 9 Aug 2006 15:41:52 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Richard Boaz Subject: Re: Pixmap (II) Date: Wed, 9 Aug 2006 15:41:47 +0200 To: Roses Roses X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.439 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, TW_GT=0.077, TW_QH=0.077] X-Spam-Score: -2.439 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 13:41:55 -0000 Hi, 1) gtk_pixmap_new() is old and should not be used; I think you want =20 to be using gtk_image_new_from_pixmap() instead. 2) though that said, if the image is going to be changing during the =20 course of the program, you might want to do it differently (depending): 2.1) create the image widget at app startup with gtk_image_new() 2.2) then, in your drawing routine, once you've got your pixmap, = set =20 the image widget with gtk_image_set_from_pixmap() 3) and I believe, in the case of using an image widget, you do not =20 need to manage configure and expose events yourself, they are =20 internally managed, so this part of my explanation is not relevant/=20 valid; you can execute your drawing routine (to get the pixmap and =20 then place it in the image) and be done. (I do not use the Gtk image myself, so if any of the above is wrong, =20 would someone else please correct me?) Rather, the paradigm I laid out below I use for DrawingArea widgets =20 and displaying pixmaps therein; drawing area widgets require the user =20= manage the configure() and expose() events themselves. richard On Aug 9, 2006, at 10:13 AM, Roses Roses wrote: > Hi! > > I've read your solution, but I haven't obtained the correct answer. > > My drawable routine is the next: > > GdkBitmap *masc; // Mascara de bits > GtkStyle *stile; // Estilo > stile =3D gtk_widget_get_style(window); > pixmap=3Dgdk_pixmap_create_from_xpm(window->window,&masc,&stile->bg=20 > [GTK_STATE_NORMAL],"gtk.xpm"); > //pixmap is a GdkPixmap and gtk.xpm is the new path of the new image > pixmapwid=3D gtk_pixmap_new (pixmap, masc); //pixmapwid is a = GtkWidget > gtk_widget_queue_draw_area(pixmapwid,0,0,900,400); > gtk_widget_show(pixmapwid); > > But seems it's not correct. Have I any erro? > > Thanks!! > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > hi, > > one possible paradigm is to adhere to the following guidelines: > > 1) the configure event callback is responsible for calling all =20 > routines > responsible for "drawing" the pixmap for ultimate display, but =20 > does NOT do > the actual display to the screen; > > 2) the expose event callback is responsible for rendering the current > pixmap to be displayed to the screen, but does NO "drawing" here, =20 > only > render the pixmap to the screen via gdk_draw_drawable() or =20 > equivalent; > > 3.1) the drawing routine(s) are responsible for creating the =20 > pixmap for > ultimate display; > > 3.2) store the address of the pixmap in a variable that the expose =20= > event > callback also has access to (global or otherwise) > > 3.3) the last command as part of the drawing routine is to call > gtk_widget_queue_draw_area() on the widget used to display > the pixmap; this will force an expose event > > in this manner, your drawing routine is called on all configure =20 > events > followed immediately by the expose event rendering the pixmap to the > screen. while calling your drawing routine via a user-event, or =20 > some other > event internal to the program, will also result in the expose =20 > event being > called to render the newly made pixmap to the screen. > > so, in your case, you would attach the button-click to a callback > ultimately calling your pixmap drawing routine. the drawing =20 > routine will > then be called on button-click and your new pixmap will be =20 > rendered via the > expose event. > > cheers, > > richard > > On Aug 2, 2006, at 11:43 AM, Roses Roses wrote: > > Hi!!! > > I'm programming a little interface but I have a prblem. The =20 > objective of > this program is shows a pixmap qhich must ghange qhen the user =20 > clicks on a > button. How the fuction of the button can change the pixmap assigned? > > One idea I've is declare the GtkPixmap as a global variable, but =20 > I'm not > sure if this plan can run. > > Thank you very much > > _________________________________________________________________ > Hor=F3scopo, tarot, numerolog=EDa... Escucha lo que te dicen los = astros. > http://astrocentro.msn.es/ > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > > From z_b_r@poczta.fm Wed Aug 9 21:04:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9A5643B00B4 for ; Wed, 9 Aug 2006 21:04:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27159-03 for ; Wed, 9 Aug 2006 21:04:47 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp10.poczta.interia.pl [80.48.65.10]) by menubar.gnome.org (Postfix) with ESMTP id BEE643B0005 for ; Wed, 9 Aug 2006 21:04:46 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 691C5374571; Thu, 10 Aug 2006 03:04:43 +0200 (CEST) Received: from poczta.interia.pl (f26.poczta.interia.pl [10.217.2.26]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id D99833744FB for ; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id A1A4020B496; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 81B5E20B48E for ; Thu, 10 Aug 2006 03:04:35 +0200 (CEST) Date: 10 Aug 2006 03:04:35 +0200 From: hm Subject: gtk_label_set_text () BUG !?!?!?!?!??!?!?!??!!? ( N00b) To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060810010435.81B5E20B48E@poczta.interia.pl> X-EMID: 96140acc X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.158 tagged_above=-999 required=2 tests=[AWL=-0.459, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, MISSING_MIMEOLE=1.612, PLING_QUERY=0.514, SPF_PASS=-0.001] X-Spam-Score: -0.158 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 01:04:49 -0000 =0AHi !=0A=0A I`m workin` on a chessgame project. I`m willing to use GLib = threads to make ticking clock visible in my GUI. Thread function modifies (= by gtk_label_set_text () ) text in label, which`s pointer is given as a pa= rameter to Thread. The problem is, that when the thread function is modyfyi= ng text, application slows down, and after first modification of label it i= s impossible to do anything. No reaction. If gtk_label_set_text () is remov= ed, everything is all right. Is it a bug ? or what ? any clue ? =0A=0A=0Ash= ort desc. of what i`ve done : =0AThread function is static, it`s part of Ti= mer class. In main.cpp i`m just calling g_thread_init (NULL) just before cr= eating Timer class object. I`m compiling it with =0Apkg-config gthread-2.0 = --libs --cflags and the same (pkg-config..) with gtk. =0A=0AThanks for any = help. ---------------------------------------------------------------------- PS. Fajny portal... >>> http://link.interia.pl/f196a From hvreddy1110@gmail.com Wed Aug 9 11:39:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0182E3B0553 for ; Wed, 9 Aug 2006 11:39:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01360-03 for ; Wed, 9 Aug 2006 11:39:20 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id 3315C3B00B4 for ; Wed, 9 Aug 2006 11:39:20 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so363350pyg for ; Wed, 09 Aug 2006 08:39:19 -0700 (PDT) Received: by 10.35.121.9 with SMTP id y9mr1753981pym; Wed, 09 Aug 2006 08:39:19 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Wed, 9 Aug 2006 08:39:19 -0700 (PDT) Message-ID: <1dd596080608090839s29756217t39e9b4b38d28484a@mail.gmail.com> Date: Wed, 9 Aug 2006 21:09:19 +0530 From: "harshavardhanreddy mandeepala" To: gtk-app-devel-list@gnome.org Subject: poptlibrary Crosscompilation for ARM11 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_102838_25434401.1155137959341" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.241 tagged_above=-999 required=2 tests=[AWL=-0.270, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BG=0.077] X-Spam-Score: -1.241 X-Spam-Level: X-Mailman-Approved-At: Wed, 09 Aug 2006 22:16:01 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 15:39:28 -0000 ------=_Part_102838_25434401.1155137959341 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline HI, I am trying to cross compile popt libraries for my IMX31(ARM11)processor from FC3. I used popt-1.6.4 ver. when i use ./configure --host=arm-linux --build=i386 --disable-nls or ./configure --host=arm-linux --build=i386 CC=arm-linux-gcc --disable-nls both the time it is compiling and creating libraries. but when i use file libpopt.so.0.0.0 It is displaying that libpopt.so.0.0.0: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), not stripped So why it is not created for ARM. popt library is the dependent library for libgnome. when i tryed to CCompile libgnome it asked for popt. Does any body already crosscompiled Gnome,Glade,GTK related libraries for freescale IMX31/ ARM11 processor. If somebody already developed it will be helpful to me and it will save lot of time.Because i have to crosscompile all Gnome and Glade related libs for ARM11 Kindly provide some help in this regard. Thanks in advance. Regards, Harsha ------=_Part_102838_25434401.1155137959341 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline HI,
I am trying to cross compile popt libraries for my IMX31(ARM11)processor from FC3.
I used  popt-1.6.4 ver.
when i use
./configure --host=arm-linux  --build=i386  --disable-nls
or
./configure --host=arm-linux  --build=i386 CC=arm-linux-gcc --disable-nls
both the time it is compiling and creating libraries.
but when i use
file libpopt.so.0.0.0
It is displaying that
libpopt.so.0.0.0: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), not stripped
So why it is not created for ARM.
popt library is the dependent library for  libgnome.
when i tryed to CCompile libgnome it asked for popt.
Does any body already crosscompiled  Gnome,Glade,GTK related libraries for freescale IMX31/ ARM11 processor.
If somebody already developed it will be helpful to me and it will save lot of time.Because i have to crosscompile all Gnome and Glade related libs for ARM11
Kindly provide some help in this regard.

Thanks in advance.

Regards,
Harsha
------=_Part_102838_25434401.1155137959341-- From wharri2@uicalumni.org Wed Aug 9 19:24:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D1C093B000E for ; Wed, 9 Aug 2006 19:24:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23004-09 for ; Wed, 9 Aug 2006 19:24:02 -0400 (EDT) Received: from mail2world.com (mw192.mail2world.com [66.28.189.192]) by menubar.gnome.org (Postfix) with ESMTP id 0AF4A3B0089 for ; Wed, 9 Aug 2006 19:24:02 -0400 (EDT) Received: from mail pickup service by mail2world.com with Microsoft SMTPSVC; Wed, 9 Aug 2006 16:22:09 -0700 auth-sender: wharri2@uicalumni.org Received: from 10.1.9.10 unverified ([10.1.9.10]) by mwde12la.mail2world.com with Mail2World SMTP Server, Wed 09 Aug 2006 16:22:08 -07:00 Received: from [67.173.11.172] by uicalumni.org with HTTP; 8/9/2006 4:21:58 PM PST thread-index: Aca8Cpxf8vJV71rtSHmp90BebBNpYQ== Thread-Topic: Gtk Style From: "Winslow Harris" To: Subject: Gtk Style Date: Wed, 9 Aug 2006 16:21:58 -0700 Message-ID: <39d401c6bc0a$9c5f6470$0a09010a@mail2world.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_39D5_01C6BBCF.F0008C70" X-Mailer: Microsoft CDO for Exchange 2000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Content-class: urn:content-classes:message Importance: normal Priority: normal X-OriginalArrivalTime: 09 Aug 2006 23:22:09.0351 (UTC) FILETIME=[A2CA7570:01C6BC0A] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.452 tagged_above=-999 required=2 tests=[AWL=1.579, BAYES_50=0.001, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 2.452 X-Spam-Level: ** X-Spam-Flag: YES X-Mailman-Approved-At: Wed, 09 Aug 2006 22:16:01 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 23:24:05 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_39D5_01C6BBCF.F0008C70 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Can anyone explain how the Gtk Style property of a widget works. Changing the GdkColor properties of a gtk style seem to have no effect, the colors have to be change through the graphic content members. Changing the foreground color through the graphic contents property affects all the widgets not just the one I specify. As a matter of fact it does not matter which widget I specify all the widgets change their foreground color. This does not happen when dealing with the background color gc though. Does anyone know exactly what properties of a gtk style are used where and what changes are passed along to children ect...? ------=_NextPart_000_39D5_01C6BBCF.F0008C70 Content-Type: text/html Content-Transfer-Encoding: 7bit Can anyone explain how the Gtk Style property of a widget works. Changing the GdkColor properties of a gtk style seem to have no effect, the colors have to be change through the graphic content members.
Changing the foreground color through the graphic contents property affects all the widgets not just the one I specify.
As a matter of fact it does not matter which widget I specify all the widgets change their foreground color.
This does not happen when dealing with the background color gc though.
Does anyone know exactly what properties of a gtk style are used where and what changes are passed along to children ect...?
------=_NextPart_000_39D5_01C6BBCF.F0008C70-- From sumitskj_20@yahoo.com Thu Aug 10 03:16:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4900D3B0102 for ; Thu, 10 Aug 2006 03:16:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08274-06 for ; Thu, 10 Aug 2006 03:16:04 -0400 (EDT) Received: from web31005.mail.mud.yahoo.com (web31005.mail.mud.yahoo.com [68.142.200.168]) by menubar.gnome.org (Postfix) with SMTP id E77F33B00D6 for ; Thu, 10 Aug 2006 03:16:03 -0400 (EDT) Received: (qmail 88674 invoked by uid 60001); 10 Aug 2006 07:16:03 -0000 Message-ID: <20060810071603.88672.qmail@web31005.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31005.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 00:16:03 PDT Date: Thu, 10 Aug 2006 00:16:03 -0700 (PDT) From: Sumit Kumar Jain Subject: Uniode version To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-567860913-1155194163=:86051" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.853 tagged_above=-999 required=2 tests=[AWL=-2.878, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_30_40=0.374, HTML_MESSAGE=0.001] X-Spam-Score: 0.853 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 07:16:05 -0000 --0-567860913-1155194163=:86051 Content-Type: text/plain; charset=us-ascii Hi, I want some information on the version of unicode that glib2.10.3 supports. I believe it is 4.1.0 glib 2.10.3 and for glib 2.8.4 it is 4.0. But when i compare the files gunidecomp.h for both the versions, its the same. I guess, across version, this file should also change. Can someone please help me on this. Regards, Sumit --0-567860913-1155194163=:86051 Content-Type: text/html; charset=us-ascii
Hi,
I want some information on the version of unicode that glib2.10.3 supports. I believe it is 4.1.0 glib 2.10.3 and for glib 2.8.4 it is 4.0. But when i compare the files gunidecomp.h for both the versions, its the same. I guess, across version, this file should also change.

Can someone please help me on this.
 
Regards,
Sumit
--0-567860913-1155194163=:86051-- From sumitskj_20@yahoo.com Thu Aug 10 06:17:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 606BD3B009D for ; Thu, 10 Aug 2006 06:17:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18081-03 for ; Thu, 10 Aug 2006 06:17:36 -0400 (EDT) Received: from web31006.mail.mud.yahoo.com (web31006.mail.mud.yahoo.com [68.142.200.169]) by menubar.gnome.org (Postfix) with SMTP id 809073B00F2 for ; Thu, 10 Aug 2006 06:17:36 -0400 (EDT) Received: (qmail 8662 invoked by uid 60001); 10 Aug 2006 10:17:32 -0000 Message-ID: <20060810101732.8660.qmail@web31006.mail.mud.yahoo.com> Received: from [192.100.104.17] by web31006.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 03:17:32 PDT Date: Thu, 10 Aug 2006 03:17:32 -0700 (PDT) From: Sumit Kumar Jain Subject: Unicode-Normalize.c test case fails To: gtk list MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-357860941-1155205052=:7584" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.962 tagged_above=-999 required=2 tests=[AWL=-2.891, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, HTML_40_50=0.496, HTML_MESSAGE=0.001] X-Spam-Score: 0.962 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Sumit Kumar Jain List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 10:17:39 -0000 --0-357860941-1155205052=:7584 Content-Type: text/plain; charset=us-ascii hi, I ran unicode-normalize.c with the input file as Normlaizationtest.txt version 4.10. downloaded for unicode.org The test case is failing at multiple input lines. Seems like either the imput file is wrong or the 4.1 version of unicode is not supported. Can someone help me with this. Regards, Sumit --0-357860941-1155205052=:7584 Content-Type: text/html; charset=us-ascii
hi,
I ran unicode-normalize.c with the input file as Normlaizationtest.txt version 4.10. downloaded for unicode.org  The test case is failing at multiple input lines. Seems like either the imput file is wrong or the 4.1 version of unicode is not supported.

Can someone help me with this.

Regards,
Sumit
--0-357860941-1155205052=:7584-- From z_b_r@poczta.fm Thu Aug 10 07:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A7D933B00CE for ; Thu, 10 Aug 2006 07:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21775-10 for ; Thu, 10 Aug 2006 07:44:02 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp10.poczta.interia.pl [80.48.65.10]) by menubar.gnome.org (Postfix) with ESMTP id 4C9BE3B0116 for ; Thu, 10 Aug 2006 07:44:02 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 29A973AFB18; Thu, 10 Aug 2006 13:44:01 +0200 (CEST) Received: from poczta.interia.pl (f32.poczta.interia.pl [10.217.2.32]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id AA3DE3AF9F1 for ; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id 7126616009E; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 2216E160098 for ; Thu, 10 Aug 2006 13:44:00 +0200 (CEST) Date: 10 Aug 2006 13:44:00 +0200 From: hm Subject: Re:Re: gtk_label_set_text () BUG !?!?!?!??!?!?!??!!? ( N00b ) To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060810114400.2216E160098@poczta.interia.pl> X-EMID: 81e40acc X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.115 tagged_above=-999 required=2 tests=[AWL=-0.493, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, MISSING_MIMEOLE=1.612, PLING_QUERY=0.514, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.115 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 11:44:04 -0000 =0AHi !=0A=0A I`m not quiet sure if my previous mail was sent, so I`ll try= to write it once again.=0ALieven van der Heide wrote, that I should call a= ll gtk functions from one thread. I`ve tried :=0A=0A1. Created function in = main program, that calls gtk_label_set_text (). The function takes string a= s a ( from ) parameter, which is converted to c-language string by= string. c_str ()=0A=0A2. Thread function gets pointer to function from poi= nt 1. as a parameter, and when specific conditions arefulfilled, then the f= unction from point 1. is beiung called ( by the pointer passed as an argume= nt for thread function )=0A=0AResult : the same :/=0A=0AAny clues ? :) =0A= =0A=0A=0A=0A=0A=0Aregards ---------------------------------------------------------------------- PS. Fajny portal... >>> http://link.interia.pl/f196a From mekstran@scl.ameslab.gov Thu Aug 10 09:32:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5B73B00B0 for ; Thu, 10 Aug 2006 09:32:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28650-08 for ; Thu, 10 Aug 2006 09:32:41 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id A1EDE3B00AF for ; Thu, 10 Aug 2006 09:32:40 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Thu, 10 Aug 2006 08:32:20 -0500 id 000538A8.44DB3577.00003B3E Resent-Message-Id: <22F88D9D-8C56-4826-90E1-C6DA7A87AA42@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Resent-Date: Thu, 10 Aug 2006 08:32:39 -0500 Message-Id: <09DD4705-58F0-4C0C-9E4F-CA0F063CDB74@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: gtk_label_set_text () BUG !?!?!?!?!??!?!?!??!!? ( N00b) Resent-From: Michael Ekstrand Date: Thu, 10 Aug 2006 08:31:48 -0500 To: hm X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.849 tagged_above=-999 required=2 tests=[AWL=-0.539, BAYES_00=-2.599, MANY_EXCLAMATIONS=0.775, PLING_QUERY=0.514] X-Spam-Score: -1.849 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 13:32:42 -0000 On Aug 9, 2006, at 8:04 PM, hm wrote: > I`m workin` on a chessgame project. I`m willing to use GLib > threads to make ticking clock visible in my GUI. Thread function > modifies ( by gtk_label_set_text () ) text in label, which`s > pointer is given as a parameter to Thread. The problem is, that > when the thread function is modyfying text, application slows down, > and after first modification of label it is impossible to do > anything. No reaction. If gtk_label_set_text () is removed, > everything is all right. Is it a bug ? or what ? any clue ? It sounds like you're violating some cardinal principles of multithreaded GUI programming.... Rule #1 on multithreading GUI's: don't do it if you don't need to. Your timer can be updated using GTK's idle or timeout callbacks. Rule #2: Only ever call the GUI system from one thread (your main thread). This rule can be different on some platforms, but in general, and particularly with GTK, this is the rule. In GTK you can call from other threads (I think) by wrapping calls in g_threads_enter/g_threads_leave pairs, but IMHO it'd be better to use those only to protect setting an idle callback so that your worker thread actually schedules the display update to happen in the main thread. I'm evaluating adding a similar mechanism in my program so that some complex computations and network polling (using libraries not integrated w/ glib) can be run in separate threads. Make sure you're following those rules, and then see what happens. I'm guessing the problem is caused by calling GTK from multiple threads. - Michael From naliven@msn.com Thu Aug 10 09:46:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC6883B00CA for ; Thu, 10 Aug 2006 09:46:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29545-02 for ; Thu, 10 Aug 2006 09:46:51 -0400 (EDT) Received: from bay0-omc1-s5.bay0.hotmail.com (unknown [65.54.246.77]) by menubar.gnome.org (Postfix) with ESMTP id A93943B00BE for ; Thu, 10 Aug 2006 09:46:51 -0400 (EDT) Received: from hotmail.com ([65.54.173.7]) by bay0-omc1-s5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 10 Aug 2006 06:46:51 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 10 Aug 2006 06:46:51 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Thu, 10 Aug 2006 13:46:47 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: gtk drawing question Date: Thu, 10 Aug 2006 13:46:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 10 Aug 2006 13:46:51.0303 (UTC) FILETIME=[6ED81370:01C6BC83] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.572 tagged_above=-999 required=2 tests=[AWL=0.664, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001] X-Spam-Score: 2.572 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 13:46:53 -0000 Hi, I am trying to write a program similar to the one at http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I understand it, net-stop only means that the loading of page is completed, it doesn't necessarily mean that drawing the widget is complete. My question is, is there a way to understand if drawing of a widget (gtkmozembed in this case) is complete? Thanks in advance. _________________________________________________________________ Messenger uzaklardaki sevdiklerinizle bulusturur! http://messenger.live.com From paul@linuxaudiosystems.com Thu Aug 10 10:15:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82F363B0144 for ; Thu, 10 Aug 2006 10:15:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30911-07 for ; Thu, 10 Aug 2006 10:15:12 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 48CAA3B0276 for ; Thu, 10 Aug 2006 10:15:12 -0400 (EDT) Received: from dhin ([141.152.248.25]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3S00CVXCWKFF80@vms044.mailsrvcs.net> for gtk-list@gnome.org; Thu, 10 Aug 2006 09:14:45 -0500 (CDT) Date: Thu, 10 Aug 2006 10:14:24 -0400 From: Paul Davis Subject: Re: gtk drawing question In-reply-to: To: =?iso-8859-9?Q?Do=F0acan_G=FCney?= Message-id: <1155219264.1716.16.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 8BIT References: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.388 tagged_above=-999 required=2 tests=[AWL=0.134, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.388 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:15:13 -0000 On Thu, 2006-08-10 at 13:46 +0000, Doğacan Güney wrote: > Hi, > > I am trying to write a program similar to the one at > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > understand it, net-stop only means that the loading of page is completed, it > doesn't necessarily mean that drawing the widget is complete. My question > is, is there a way to understand if drawing of a widget (gtkmozembed in this > case) is complete? your question is ill-formed. do you mean "when every pixel that represents a widget has been displayed on a screen?" or "when the code responsible for requesting pixel changes has been called?" or something else? From klein.stephane@gmail.com Thu Aug 10 10:34:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 636FF3B0434 for ; Thu, 10 Aug 2006 10:34:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32210-05 for ; Thu, 10 Aug 2006 10:34:17 -0400 (EDT) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.238]) by menubar.gnome.org (Postfix) with ESMTP id 2C8E03B03EE for ; Thu, 10 Aug 2006 10:34:15 -0400 (EDT) Received: by qb-out-0506.google.com with SMTP id p36so149682qba for ; Thu, 10 Aug 2006 07:34:14 -0700 (PDT) Received: by 10.78.158.11 with SMTP id g11mr1340144hue; Thu, 10 Aug 2006 07:34:13 -0700 (PDT) Received: by 10.78.132.20 with HTTP; Thu, 10 Aug 2006 07:34:13 -0700 (PDT) Message-ID: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> Date: Thu, 10 Aug 2006 16:34:13 +0200 From: "=?ISO-8859-1?Q?KLEIN_St=E9phane?=" To: gtk-list@gnome.org Subject: GTK is double buffered by default ? on GNU/Linux and MS Windows ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_85895_25443403.1155220453699" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.51 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: 0.51 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:34:47 -0000 ------=_Part_85895_25443403.1155220453699 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello, I use Ubuntu system. I've showed gnome and Gimp to one friend. This friend use MS Windows since always. He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI display scintillate. This also for Gimp MS Windows version". He say : "First, I see the window draw, next the background draw of button...". On the contrary, MS Windows application display all widget in one step." I don't know if you understand my subject. My question : is there double buffering render in GTK ? If yes, why my friend think than Windows display is faster than GTK and other widget toolkit ? If not, why that ? Thanks for your response. --St=E9phane ------=_Part_85895_25443403.1155220453699 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello,

I use Ubuntu system. I've showed gnome and Gimp to one friend= . This friend use MS Windows since always.

He say : "I dislike = Linux, Ubuntu, Gnome, Gimp ... because the GUI display scintillate. This al= so for Gimp MS Windows version".

He say : "First, I see the window draw, next the background dr= aw of button...". On the contrary, MS Windows application display all = widget in one step."

I don't know if you understand my subject.

My question : is there double buffering render in GTK ? If yes, wh= y my friend think than Windows display is faster than GTK and other widget = toolkit ? If not, why that ?

Thanks for your response.
--St=E9pha= ne=20
------=_Part_85895_25443403.1155220453699-- From sergstesh@yahoo.com Thu Aug 10 10:49:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C3FB3B032E for ; Thu, 10 Aug 2006 10:49:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00614-03 for ; Thu, 10 Aug 2006 10:49:05 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 6C1663B03B3 for ; Thu, 10 Aug 2006 10:49:05 -0400 (EDT) Received: (qmail 50909 invoked by uid 60001); 10 Aug 2006 14:49:04 -0000 Message-ID: <20060810144904.50907.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35209.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 07:49:04 PDT Date: Thu, 10 Aug 2006 07:49:04 -0700 (PDT) From: Sergei Steshenko Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? To: KLEIN "Stéphane" , gtk-list@gnome.org In-Reply-To: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E9 hex) in message header 'To': To: KLEIN "St\351phane" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:49:07 -0000 --- KLEIN Stéphane wrote: > Hello, > > I use Ubuntu system. I've showed gnome and Gimp to one friend. This friend > use MS Windows since always. > > He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI display > scintillate. This also for Gimp MS Windows version". > > He say : "First, I see the window draw, next the background draw of > button...". On the contrary, MS Windows application display all widget in > one step." > > I don't know if you understand my subject. > > My question : is there double buffering render in GTK ? If yes, why my > friend think than Windows display is faster than GTK and other widget > toolkit ? If not, why that ? > > Thanks for your response. > --Stéphane > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > For startes, Windows graphics system is not network-aware, unlike X. This makes it necessary to use VNC, RDP and friends to access remote desktop on Windows, but makes graphics system faster when local access is in place. With X you have built-in network accessibility, but, as far as I know, it's one of the factors making it slower. OpenGL should provide fast X graphics. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Thu Aug 10 10:57:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E97AF3B00EB for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00904-09 for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 1E1963B00BE for ; Thu, 10 Aug 2006 10:57:04 -0400 (EDT) Received: from win98 ([71.251.252.246]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3S00CYQEUKFHG0@vms044.mailsrvcs.net> for gtk-list@gnome.org; Thu, 10 Aug 2006 09:56:45 -0500 (CDT) Date: Thu, 10 Aug 2006 10:55:22 -0400 From: "Bill Cunningham" Subject: tool To: Message-id: <000701c6bc8d$02030200$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.9 tagged_above=-999 required=2 tests=[AWL=-0.008, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.9 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 14:57:05 -0000 Sergei, Does your tool have a home page? I'm about at witts end with this. Now I'm being told I need expat to compile fontconfig which is needed for freetype. You sent me a link and I downloaded the file. Is there a page? I don't have that link anymore. Thanks Bill From sergstesh@yahoo.com Thu Aug 10 11:03:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7736D3B0004 for ; Thu, 10 Aug 2006 11:03:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01564-03 for ; Thu, 10 Aug 2006 11:03:42 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 5C0633B0071 for ; Thu, 10 Aug 2006 11:03:42 -0400 (EDT) Received: (qmail 75352 invoked by uid 60001); 10 Aug 2006 15:03:41 -0000 Message-ID: <20060810150341.75350.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.107] by web35204.mail.mud.yahoo.com via HTTP; Thu, 10 Aug 2006 08:03:41 PDT Date: Thu, 10 Aug 2006 08:03:41 -0700 (PDT) From: Sergei Steshenko Subject: Re: tool To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6bc8d$02030200$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.64 tagged_above=-999 required=2 tests=[AWL=-1.473, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.64 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:03:43 -0000 --- Bill Cunningham wrote: > Sergei, > > Does your tool have a home page? I'm about at witts end with this. Now I'm > being told I need expat to compile fontconfig which is needed for freetype. > You sent me a link and I downloaded the file. Is there a page? I don't have > that link anymore. > > Thanks > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > http://appsfromscratch.berlios.de/ Isn't the URL in my signature ? I'll be out for several hours - if you encounter a problem, read the first error message (look for :ERROR:). The message should contain full path to 'configure.log', 'make.log', etc. Look into the logs to see what the problem is. Typically, you'll need some basic packages like 'zlib', 'libpng' etc., including .h files, installed at system level. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From tristan.van.berkom@gmail.com Thu Aug 10 11:40:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 854B53B00EA for ; Thu, 10 Aug 2006 11:40:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03575-09 for ; Thu, 10 Aug 2006 11:40:21 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id A77443B0126 for ; Thu, 10 Aug 2006 11:40:20 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so724610wxd for ; Thu, 10 Aug 2006 08:40:20 -0700 (PDT) Received: by 10.70.15.15 with SMTP id 15mr3365192wxo; Thu, 10 Aug 2006 08:40:19 -0700 (PDT) Received: from ?66.48.170.42? ( [66.48.170.42]) by mx.gmail.com with ESMTP id i19sm30556wxd.2006.08.10.08.40.15; Thu, 10 Aug 2006 08:40:18 -0700 (PDT) Message-ID: <44DB5820.4090606@gnome.org> Date: Thu, 10 Aug 2006 12:00:32 -0400 User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051013) X-Accept-Language: en-us, en MIME-Version: 1.0 To: hm Subject: Re: gtk_label_set_text () BUG !?!?!?!??!?!?!??!!? ( N00b ) References: <20060810114400.2216E160098@poczta.interia.pl> In-Reply-To: <20060810114400.2216E160098@poczta.interia.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: Tristan Van Berkom X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.414 tagged_above=-999 required=2 tests=[AWL=-0.380, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, MANY_EXCLAMATIONS=0.775, PLING_QUERY=0.514, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.414 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:40:22 -0000 hm wrote: >Hi ! > > I`m not quiet sure if my previous mail was sent, so I`ll try to write it once again. >Lieven van der Heide wrote, that I should call all gtk functions from one thread. I`ve tried : > >1. Created function in main program, that calls gtk_label_set_text (). The function takes string as a ( from ) parameter, which is converted to c-language string by string. c_str () > >2. Thread function gets pointer to function from point 1. as a parameter, and when specific conditions arefulfilled, then the function from point 1. is beiung called ( by the pointer passed as an argument for thread function ) > >Result : the same :/ > > Because your not doing anything different. >Any clues ? :) > > Yes, please save yourself (and all of us) alot of effort by finding out the meaning of threads, if you dont have a good understanding about threads, your program will crash and lock up I garauntee it, you will also find yourself unable to properly phrase questions about why its not working - because you havent figured out the meaning of your questions yet. Cheers, -Tristan I'm not about to write a book here but here's a little hint to justify my rant: - Threads share data throughout the process address space, all data belongs to the 'program' or 'process', if you are currently executing thread B, then function calls from thread B will be run in thread B; regardless of in which object file the stub happened to be built in and linked from. - When you use an idle handler (g_idle_add()) to schedule an event in the mainloop, this will result in a write to a pipe() that is used to wakeup the GMainContext of the mainloop (usually in the main thread), again - regardless of what object file the idle handler was declared in - it will be run from the main thread of execution. From naliven@msn.com Thu Aug 10 11:58:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D7B3F3B0116 for ; Thu, 10 Aug 2006 11:58:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04487-03 for ; Thu, 10 Aug 2006 11:58:52 -0400 (EDT) Received: from bay0-omc3-s14.bay0.hotmail.com (bay0-omc3-s14.bay0.hotmail.com [65.54.246.214]) by menubar.gnome.org (Postfix) with ESMTP id 56D9C3B00EB for ; Thu, 10 Aug 2006 11:58:52 -0400 (EDT) Received: from hotmail.com ([65.54.173.14]) by bay0-omc3-s14.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 10 Aug 2006 08:58:52 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 10 Aug 2006 08:58:52 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Thu, 10 Aug 2006 15:58:47 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: Re: gtk drawing question Date: Thu, 10 Aug 2006 15:58:47 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 10 Aug 2006 15:58:52.0057 (UTC) FILETIME=[DFFB3890:01C6BC95] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.217 tagged_above=-999 required=2 tests=[AWL=1.755, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: 1.217 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 15:58:55 -0000 >From: Paul Davis >Reply-To: paul@linuxaudiosystems.com >To: Doðacan Güney >CC: gtk-list@gnome.org >Subject: Re: gtk drawing question >Date: Thu, 10 Aug 2006 10:14:24 -0400 > >On Thu, 2006-08-10 at 13:46 +0000, Doðacan Güney wrote: > > Hi, > > > > I am trying to write a program similar to the one at > > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > > understand it, net-stop only means that the loading of page is >completed, it > > doesn't necessarily mean that drawing the widget is complete. My >question > > is, is there a way to understand if drawing of a widget (gtkmozembed in >this > > case) is complete? > >your question is ill-formed. do you mean "when every pixel that >represents a widget has been displayed on a screen?" or "when the code >responsible for requesting pixel changes has been called?" or something >else? What I want to do is to load a web page, then take the snapshot of this page. So I tell gtkmozembed to load the url and notify me (through net-stop) when it is done. When I recieve the net-stop signal, I create a pixbuf from the gtkmozembed widget and save it to a jpg. My problem is that, recieving net-stop signal only means that the page is fetched from web but not completely displayed on the screen(I think). So the jpg I generated is sometimes empty, or half-drawn. So, I guess my question is: I want to be notified when the page is completely rendered (with all the pictures and text and other stuff in it) and displayed on the screen. Is that clear enough? > > _________________________________________________________________ Sohbet ederken Messenger'da eglenin! http://messenger.live.com From torriem@chem.byu.edu Thu Aug 10 12:43:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E05C3B0079 for ; Thu, 10 Aug 2006 12:43:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06779-02 for ; Thu, 10 Aug 2006 12:43:15 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id B312C3B008D for ; Thu, 10 Aug 2006 12:43:14 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7AGh9GC027223; Thu, 10 Aug 2006 10:43:09 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: KLEIN =?ISO-8859-1?Q?St=E9phane?= In-Reply-To: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Date: Thu, 10 Aug 2006 10:43:09 -0600 Message-Id: <1155228189.12091.41.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Thu, 10 Aug 2006 10:43:09 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 16:43:16 -0000 On Thu, 2006-08-10 at 16:34 +0200, KLEIN Stéphane wrote: > Hello, > > I use Ubuntu system. I've showed gnome and Gimp to one friend. This > friend use MS Windows since always. > > He say : "I dislike Linux, Ubuntu, Gnome, Gimp ... because the GUI > display scintillate. This also for Gimp MS Windows version". > > He say : "First, I see the window draw, next the background draw of > button...". On the contrary, MS Windows application display all widget > in one step." > > I don't know if you understand my subject. > > My question : is there double buffering render in GTK ? If yes, why my > friend think than Windows display is faster than GTK and other widget > toolkit ? If not, why that ? It is a matter of perception. I cannot say whether GTK renders faster than Windows. But GTK is double-buffered. However what your friend is seeing is a result of a couple of things. First is that when you uncover a window, X11 sends expose events to the uncovered window. It is up to the client (the app) to respond to these events and redraw the parts that were exposed. If the window is in motion, these expose events may come faster than the app can deal with. GTK typically "compresses" these events and will wait to do the actual redraw. This reduces the CPU consumption and increases overall speed, but it comes at the expense of visual stuttering. One is that the X windowing system in asynchronous. This means, among other things, that the windowing code accepts requests as they come from various clients (apps). These means that redraws and reconfigures of the various applications aren't necessarily going to happen at the exact same time. Also when you drag a window, for example, the redrawing isn't synchronized to any particular clock, so you get tearing. Windows also often has tearing when you drag a large window around. Mac does not, for reasons I'll describe below. Work is being done to address these perceptions (speed really is fast; it just looks slow). First of all, people are developing X servers that use OpenGL to draw the windows on the screen. What this means is that apps draw to an off-screen bitmap, which OpenGL then pastes on the screen. Since the OpenGL drawing is very quick, this eliminates redraw flicker to a large degree (since the flicker is hidden off-screen where you can't see it). Also when you move a window, the window underneath is intact (it's an opengl texture) so there are *no* expose events needed. This doesn't address the resize stuttering issue, though (even Mac OS X stutters on resizes on slow video cards). This will be addressed through new synchronization events that the X server will use to make sure everything happens smoothly, without any stuttering. If you want to see how fast a Linux desktop can appear, check out the new OpenSuSE with it's Xgl system. It's sweet! Fedora Core 6 will have similar technology, called AIXGL. Besides providing fast rendering (which will definitely quell your friend's complaints), it also enables lots of other cool things like 3-d desktops, OS X-like expose, etc. See http://www.freedesktop.org/~davidr/xgl-demo1.xvid.avi , and also http://kororaa.org/ Michael > > Thanks for your response. > --Stéphane > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From florian.boor@kernelconcepts.de Thu Aug 10 13:30:29 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F2DF83B0078 for ; Thu, 10 Aug 2006 13:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09050-10 for ; Thu, 10 Aug 2006 13:30:27 -0400 (EDT) Received: from mail.kernelconcepts.de (www.kernelconcepts.de [212.60.202.195]) by menubar.gnome.org (Postfix) with ESMTP id F06E83B000C for ; Thu, 10 Aug 2006 13:30:26 -0400 (EDT) Received: from [212.60.202.194] (helo=[192.168.2.128]) by mail.kernelconcepts.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GBEZj-0007CO-CM; Thu, 10 Aug 2006 19:44:07 +0200 Message-ID: <44DB6D6C.8060703@kernelconcepts.de> Date: Thu, 10 Aug 2006 19:31:24 +0200 From: Florian Boor User-Agent: Thunderbird 1.5.0.4 (X11/20060713) MIME-Version: 1.0 To: harshavardhanreddy mandeepala Subject: Re: glib cross compilation error References: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> In-Reply-To: <1dd596080608080323s368a9379m7ce708fd191f1ec@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 17:30:29 -0000 Hello, harshavardhanreddy mandeepala wrote: > I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. oh... that's an old one. > I configured using the following configure command. > > cannot run test program while cross compiling > See `config.log' for more details. > > Any idea why it is not compiling? That means you need to define the value it tries to determine in your site file. Both scratchbox and OpenEmbedded could help you crosscompiling, but i suppose Familiar or OpenZaurus binaries might be compatible too. Greetings Florian -- The dream of yesterday Florian Boor is the hope of today Tel: +49 271-771091-14 and the reality of tomorrow. Fax: +49 271-771091-19 [Robert Hutchings Goddard, 1904] florian.boor@kernelconcepts.de 1D78 2D4D 6C53 1CA4 5588 D07B A8E7 940C 25B7 9A76 From chris@cvine.freeserve.co.uk Thu Aug 10 16:29:54 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3375F3B0007 for ; Thu, 10 Aug 2006 16:29:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18344-08 for ; Thu, 10 Aug 2006 16:29:53 -0400 (EDT) Received: from smtp1.freeserve.com (smtp1.wanadoo.co.uk [193.252.22.158]) by menubar.gnome.org (Postfix) with ESMTP id A30AD3B000C for ; Thu, 10 Aug 2006 16:29:52 -0400 (EDT) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3009.me.freeserve.com (SMTP Server) with ESMTP id 94F881C0008D; Thu, 10 Aug 2006 22:29:51 +0200 (CEST) Received: from laptop.homenet (modem-167.monkey.dialup.pol.co.uk [217.135.208.167]) by mwinf3009.me.freeserve.com (SMTP Server) with ESMTP id D1C111C00088; Thu, 10 Aug 2006 22:29:50 +0200 (CEST) X-ME-UUID: 20060810202950859.D1C111C00088@mwinf3009.me.freeserve.com Received: from localhost (IDENT:1000@localhost [127.0.0.1]) by laptop.homenet (8.12.10/8.12.10) with ESMTP id k7AKPdiA003494; Thu, 10 Aug 2006 21:26:19 +0100 From: Chris Vine To: gtk-list@gnome.org Subject: Re: GTK 2.10 - missing icons in file dialog Date: Thu, 10 Aug 2006 21:22:40 +0100 User-Agent: KMail/1.9.3 References: <20060808164413.GA32103@code-monkey.de> In-Reply-To: <20060808164413.GA32103@code-monkey.de> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200608102122.41227.chris@cvine.freeserve.co.uk> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.514 tagged_above=-999 required=2 tests=[AWL=-0.706, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, RCVD_IN_SORBS_WEB=1.456] X-Spam-Score: -1.514 X-Spam-Level: Cc: Tilman Sauerbeck X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2006 20:29:54 -0000 On Tuesday 08 August 2006 17:44, Tilman Sauerbeck wrote: > Hi, > with GTK 2.10, I've noticed that the file dialog doesn't show icons for > files and directories the way it used to. It's using the same fallback > icon (white rectangle) for any entry. > > http://bugzilla.gnome.org/show_bug.cgi?id=345666 > This patch makes the file dialog show the correct icon for directories > again. Every file still gets the same fallback file icon though. I'm not > sure, but I believe that with GTK 2.8, it showed specific icons for > different file types. > > As the bug says, this is without any gnome theme whatsoever, all I got > is hicolor-icon-theme 0.9. > > Ideas? Is the bug valid? Is the attached patch supposed to fix > everything back to normal? The ABI for GTK+ changed with version 2.10 for pixbufs (you will get the result you describe if you try to use gnome compiled against GTK+ version 2.8 with version 2.10). I do not know if that is the cause in you case, but if you have not done so try recompiling your program (and also gnome, if you are using gnome). Chris From kyndig@gmail.com Thu Aug 10 23:10:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D48603B008B for ; Thu, 10 Aug 2006 23:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02526-01 for ; Thu, 10 Aug 2006 23:09:59 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by menubar.gnome.org (Postfix) with ESMTP id 4B9B03B000C for ; Thu, 10 Aug 2006 23:09:56 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so938970wxd for ; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Received: by 10.70.13.1 with SMTP id 1mr4207368wxm; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Received: by 10.70.118.1 with HTTP; Thu, 10 Aug 2006 20:09:54 -0700 (PDT) Message-ID: Date: Thu, 10 Aug 2006 23:09:54 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: Mac OS X: error: X development libraries not found In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_47771_31187468.1155265794391" References: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.259 tagged_above=-999 required=2 tests=[AWL=-0.442, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BJ=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -1.259 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 03:10:02 -0000 ------=_Part_47771_31187468.1155265794391 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline > > > I'm working on porting a gtk software program that runs on linux/windows > to MAC OS X. The prior release of my software works fine on Mac (Tiger) with > the X11 server. I'm trying the native port. I was able to build my Gtk > development environment up to gtk-2.8.20 version ( glib, pango, cairo, > atk, etc all installed "ok" ). But when I go to configure gtk, I get the > error: X development libraries not found. I removed all X11 packages to try > building a vanilla native Mac devel env. > An update to this problem. I was able to compile and get the GTK devel env built on MAC OS X Tiger. And IT WORKS! Albeit, my software has a black screen ( I had problems with libjpeg - which I know how to fix ), and something is wrong with my font set up. I can't figure out the font problem yet. Has anyone run into a problem with loading fonts on application start up? I tried moving the fc-cache program from Gtk/bin to my software program - and after installing a script and running it. The program would start. I had to add the Mac OS X: /Library/Fonts directory to the etc/fonts/fonts.conf file. Here is the error I am getting. Any recomendations? The domain/default pair of (.GlobalPreferences, AppleCollationOrder) does not exist (mudmagic-bin:2001): Pango-WARNING **: No builtin or dynamically loaded modules were found. Pango will not work correctly. This probably means there was an error in the creation of: '/GTK/etc/pango/pango.modules' You should create this file by running pango-querymodules. (mudmagic-bin:2001): Pango-WARNING **: pango_shape called with bad font, expect ugly output (mudmagic-bin:2001): Pango-WARNING **: pango_font_get_glyph_extents called with bad font, expect ugly output (mudmagic-bin:2001): Gdk-WARNING **: Unsupported cursor type 14, using default (mudmagic-bin:2001): Pango-WARNING **: pango_font_get_font_map called with bad font, expect ugly output (mudmagic-bin:2001): Pango-CRITICAL **: _pango_cairo_font_map_get_renderer: assertion `PANGO_IS_CAIRO_FONT_MAP (fontmap)' failed (mudmagic-bin:2001): Pango-WARNING **: _pango_cairo_font_install called with bad font, expect ugly output ============================== BUT, it is working =) And without _any_ X11 application on the box ( I fully removed all traces of X11 before compiling ) These are the install instructions I'm using to build my GTK devel environment. http://cvs.mudmagic.com/co.php/mudmagic_client/macintosh.txt?r=1.2 Any help greatly appreciated. Thank you, Calvin ------=_Part_47771_31187468.1155265794391 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

I'm working on porting a gtk software program that runs on linux/windows to MAC OS X. The prior release of my software works fine on Mac (Tiger) with the X11 server. I'm trying the native port. I was able to build my Gtk development environment up to gtk-2.8.20 version ( glib, pango, cairo, atk, etc all installed "ok" ). But when I go to configure gtk, I get the error:  X development libraries not found. I removed all X11 packages to try building a vanilla native Mac devel env.

An update to this problem. I was able to compile and get the GTK devel env built on MAC OS X Tiger. And IT WORKS! Albeit, my software has a black screen ( I had problems with libjpeg - which I know how to fix ), and something is wrong with my font set up. I can't figure out the font problem yet. Has anyone run into a problem with loading fonts on application start up? I tried moving the fc-cache program from Gtk/bin to my software program - and after installing a script and running it. The program would start. I had to add the Mac OS X: /Library/Fonts  directory to the etc/fonts/fonts.conf file.

Here is the error I am getting. Any recomendations?
The domain/default pair of (.GlobalPreferences, AppleCollationOrder) does not exist

(mudmagic-bin:2001): Pango-WARNING **: No builtin or dynamically
loaded modules were found. Pango will not work correctly.
This probably means there was an error in the creation of:
  '/GTK/etc/pango/pango.modules'
You should create this file by running pango-querymodules.

(mudmagic-bin:2001): Pango-WARNING **: pango_shape called with bad font, expect ugly output

(mudmagic-bin:2001): Pango-WARNING **: pango_font_get_glyph_extents called with bad font, expect ugly output

(mudmagic-bin:2001): Gdk-WARNING **: Unsupported cursor type 14, using default

(mudmagic-bin:2001): Pango-WARNING **: pango_font_get_font_map called with bad font, expect ugly output

(mudmagic-bin:2001): Pango-CRITICAL **: _pango_cairo_font_map_get_renderer: assertion `PANGO_IS_CAIRO_FONT_MAP (fontmap)' failed

(mudmagic-bin:2001): Pango-WARNING **: _pango_cairo_font_install called with bad font, expect ugly output
==============================

BUT, it is working =) And without _any_ X11 application on the box ( I fully removed all traces of X11 before compiling )
These are the install instructions I'm using to build my GTK devel environment.
http://cvs.mudmagic.com/co.php/mudmagic_client/macintosh.txt?r=1.2

Any help greatly appreciated.

Thank you,
Calvin

------=_Part_47771_31187468.1155265794391-- From hvreddy1110@gmail.com Fri Aug 11 03:36:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 33B443B0154 for ; Fri, 11 Aug 2006 03:36:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13547-08 for ; Fri, 11 Aug 2006 03:36:31 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by menubar.gnome.org (Postfix) with ESMTP id 143D23B006B for ; Fri, 11 Aug 2006 03:36:30 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so35380pyg for ; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Received: by 10.35.60.16 with SMTP id n16mr5561274pyk; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Fri, 11 Aug 2006 00:36:27 -0700 (PDT) Message-ID: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> Date: Fri, 11 Aug 2006 13:06:27 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: glib-devel SRPM MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_142424_2640852.1155281787849" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.252 tagged_above=-999 required=2 tests=[AWL=-0.204, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.252 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:36:33 -0000 ------=_Part_142424_2640852.1155281787849 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I have glib-2.4.7 src rpm. But i coudn't get corresponding devel package . Any body has an idea that where i can download glib-devel src rpm. I need it for cross compile. I searched but In all the places only rpms are there. Thanks in advance. Regards, Harsha ------=_Part_142424_2640852.1155281787849 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,
I have glib-2.4.7 src rpm.
But i coudn't get corresponding devel package .
Any body has an idea that where i can download  glib-devel src rpm.
I need it for cross compile.
I searched but In all the places only rpms are there.

Thanks in advance.

Regards,
Harsha
------=_Part_142424_2640852.1155281787849-- From yeti@physics.muni.cz Fri Aug 11 03:40:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3FEEE3B01C2 for ; Fri, 11 Aug 2006 03:40:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13842-10 for ; Fri, 11 Aug 2006 03:40:20 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id A38A93B00C4 for ; Fri, 11 Aug 2006 03:40:17 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7B7eD80023495 for ; Fri, 11 Aug 2006 09:40:14 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 3DAF423D87; Fri, 11 Aug 2006 09:40:13 +0200 (CEST) Date: Fri, 11 Aug 2006 09:40:14 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: glib-devel SRPM Message-ID: <20060811074014.GB5199@potato.chello.upc.cz> References: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608110036k3e197557pe719f6f3b39b02b3@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:40:22 -0000 On Fri, Aug 11, 2006 at 01:06:27PM +0530, harshavardhanreddy mandeepala wrote: > I have glib-2.4.7 src rpm. > But i coudn't get corresponding devel package . > Any body has an idea that where i can download glib-devel src rpm. There is no glib-devel src.rpm, all binary packages are built from one source package. If you tried to rebuild the package you would immediately find out that. A quick look at the spec file would reveal it too. Yeti -- Anonyms eat their boogers. From linuxhippy@gmail.com Fri Aug 11 03:57:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 97B4D3B01C2 for ; Fri, 11 Aug 2006 03:57:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14822-09 for ; Fri, 11 Aug 2006 03:57:03 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by menubar.gnome.org (Postfix) with ESMTP id 1DB6D3B0075 for ; Fri, 11 Aug 2006 03:57:02 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so41639pyg for ; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Received: by 10.65.59.19 with SMTP id m19mr3657311qbk; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 00:57:00 -0700 (PDT) Message-ID: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> Date: Fri, 11 Aug 2006 09:57:00 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155228189.12091.41.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.226 tagged_above=-999 required=2 tests=[AWL=0.174, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.226 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 07:57:05 -0000 Hi again, Well there has been a lot of discussion about GTKs performance, wether its fast or not. I just found that moving a window on top of a GTK window on Windows I get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that slow or fast ... I don't want to comment. > Also when you drag a window, for example, the redrawing > isn't synchronized to any particular clock, so you get tearing. Windows > also often has tearing when you drag a large window around. Mac does > not, for reasons I'll describe below Tearing is caused by the fact that applications don't paint themself fast enough, not because drawing is not synchronized. Draw a window on top of a maximized xcalc and you won't see any tearing. > screen. Since the OpenGL drawing is very quick, this eliminates redraw > flicker to a large degree (since the flicker is hidden off-screen where > you can't see it). This is basically wrong. Drawing primitives through OpenGL is very likely to be a lot slower than through accalerated X11 drivers, I would give x11perf a try on XGL. I would not consider drawing to be the largest problem anymore, espacially when it comes down to GTK+ performance problems. Readbacks and > Also when you move a window, the window underneath > is intact (it's an opengl texture) so there are *no* expose events > needed. Well thats not OpenGL related and is basically what a Composition manager does. However toolkits should be fast enough also without composition, and a lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, qt, win32, ....). lg Clemens From tml@iki.fi Fri Aug 11 04:25:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 428353B0154 for ; Fri, 11 Aug 2006 04:25:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16588-03 for ; Fri, 11 Aug 2006 04:25:37 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 082273B01C2 for ; Fri, 11 Aug 2006 04:25:35 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCCXLVIII.tun.saunalahti.fi [213.169.31.148]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id E818B2162AA; Fri, 11 Aug 2006 11:25:30 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17628.16132.763000.45282@gargle.gargle.HOWL> Date: Fri, 11 Aug 2006 11:25:40 +0300 To: "Clemens Eisserer" Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 08:25:40 -0000 Clemens Eisserer writes: > I just found that moving a window on top of a GTK window on Windows I > get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that > slow or fast ... I don't want to comment. Feel free to work on this and submit patches. > However toolkits should be fast enough also without composition, and a > lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, > qt, win32, ....). Maybe you should use one of them instead, then? --tml From linuxhippy@gmail.com Fri Aug 11 05:05:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BE67D3B043F for ; Fri, 11 Aug 2006 05:05:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18359-02 for ; Fri, 11 Aug 2006 05:05:38 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 222953B03E5 for ; Fri, 11 Aug 2006 05:05:37 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so63200pyg for ; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Received: by 10.64.241.3 with SMTP id o3mr3698134qbh; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 02:05:35 -0700 (PDT) Message-ID: <194f62550608110205j617390afy81cc80b9f1d00ac6@mail.gmail.com> Date: Fri, 11 Aug 2006 11:05:35 +0200 From: "Clemens Eisserer" To: "Tor Lillqvist" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <17628.16132.763000.45282@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <17628.16132.763000.45282@gargle.gargle.HOWL> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.191 tagged_above=-999 required=2 tests=[AWL=0.132, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.191 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 09:05:40 -0000 Hi again, > Feel free to work on this and submit patches. Well I am not interrested in the win32 port. I did already some experiments with tuning GTK on Linux which resulted in a 25%-35% performance increase on nvidia hardware. I also talked with nvidia driver developers about existing problems ... and how they eventually could solve it in their drivers. > Maybe you should use one of them instead, then? Yes right - I try to do this whenever possible. I ran Eclipse hooked on top of Fox as long as SwtFox worked with the Eclipse versions I use, I use KDE and all of its tools. But sometimes I simply can't get arround GTK like when using FireFox, Thunderbird, gaim, gimp or when using my Nokia770 - which is quite fast but definitivly underpowered with its 250mhz arm9 to resize two lists fluently (fltk had no problems at all on the same device, gtk-resize 1fps, fltk:8fps). PalmeSource and Nokia stick at gtk-2.6 because 2.8+ is simply to slow for embedded use. I just think its funny how GTK devs do proceed with preformance related posts. First people are told that the problem they are reporting are very vague and that this is no proof that GTK is slow. Then 50% of the compaining people are quiet. The other 50% submit performance data and results - since these guys can proove that its slow they don't get any replies any more - since they can't be blamed for flaming and nobody feels responsible for investigation. This makes me a bit sad when thinking about the fact that almost everybody in the OSS world is moving to GTK. When looking at blogs like this: http://www.sysinternals.com/blog/2006/07/first-week.html Ms is investigating any report with experts analysing problems through the whole chain of involved components. People report that they have problems and get fooled and ignored ... well .. thats the other way to do it. I wonder who's the fool ... the people complaining or the maintainers ignoring 1+ performance complain per week. Best wishes, lg Clemens From torriem@chem.byu.edu Fri Aug 11 11:07:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D7BC13B0014 for ; Fri, 11 Aug 2006 11:07:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04365-10 for ; Fri, 11 Aug 2006 11:07:14 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id B662F3B000B for ; Fri, 11 Aug 2006 11:07:12 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7BF79N7014825; Fri, 11 Aug 2006 09:07:09 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: Clemens Eisserer In-Reply-To: <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> Content-Type: text/plain Date: Fri, 11 Aug 2006 09:07:08 -0600 Message-Id: <1155308828.32140.25.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Fri, 11 Aug 2006 09:07:09 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.535 tagged_above=-999 required=2 tests=[AWL=0.064, BAYES_00=-2.599] X-Spam-Score: -2.535 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 15:07:18 -0000 On Fri, 2006-08-11 at 09:57 +0200, Clemens Eisserer wrote: > Hi again, > > Well there has been a lot of discussion about GTKs performance, wether > its fast or not. > I just found that moving a window on top of a GTK window on Windows I > get 100% CPU on a XP2200+/WindowsXP and visible repaint lags - be that > slow or fast ... I don't want to comment. GTK performance on Windows is a red herring, really. And from what I can see, probably because of the way windows events work, GTK apps will freeze all their windows while moving the window, so you won't see lags in the repaint; you'll just see nothing until the window is moved and then you'll see the repaint which may or may not be as fast as you think it should be. Under Xgl, and any of the new opengl backends, you should find almost no cpu use when dragging the window. > Tearing is caused by the fact that applications don't paint themself > fast enough, not because drawing is not synchronized. Draw a window on > top of a maximized xcalc and you won't see any tearing. You are wrong. The visible application redraw, either during expose or configure events, is very much a synchronization issue. Sure redrawing at light speed would eliminate the symptom, but it wouldn't address the problem (and it would be very inefficient anyway). Sure Xcalc redraws itself fast enough so as not to have visible redrawing because the ops are very simple. However, most of the time on my fast nvidia graphics card and machine I can't see GTK apps redraw either. GTK is orders of magnitude more complicated and intensive that the Xaw widgets. GTK widgets are all dynamically sized on the fly. That is one reason why GTK may be slower to redraw than Xaw. But Xaw is not very useful and you wouldn't want to make a full app out of it. Back to synchronization. The problem is that as you rapidly move one window past another, or resize a window, the events queue up and ask the app to redraw. However the redraw app will likely have to happen all over again before redraw is finished. So GTK queues up the events, halting the redraw momentarily. The upshot of this is that you save a lot of CPU and in the end redraw faster (cause you're only doing it 5 times instead of 1000), but there is visible stutter. If the redraw events and the movement of the windows are synchronized according to a frame rate, everything does get smoother. The biggest win here is resizing a window. With the proposed X11 synchronization extension stuff (as I understand it), GTK app resizes will be silky smooth (well at a frame-rate your computer can handle CPU-wise). Here is a quote from an unknown source that explains it better: "Because X11 is asynchronous, as the window resizes, configure and expose events are sent to the GTK widgets to get them to redraw. Because of this asynchronous nature, until recently there was no good way to synchronize the redrawing to the actual expanding of the window, as OS X and Windows do. This is changing and a synchronization mechanism is being built into X11 that will allow Gtk (and Qt and any other widget set) to be able to resize fluidly." > This is basically wrong. Drawing primitives through OpenGL is very > likely to be a lot slower than through accalerated X11 drivers, I > would give x11perf a try on XGL. > I would not consider drawing to be the largest problem anymore, > espacially when it comes down to GTK+ performance problems. Readbacks > and No you are incorrect. OpenGL is not only fast at 3d but also 2d. However this is beside the point. Xgl uses OpenGL to display window contents as textures. Thus GTK apps render as normal (or with Cairo) to a texture in memory (just like they did before), but this texture is rendered to the screen, with special effects like shadows and transparency at 30-60 frames per second. Cairo is also moving to render paths directly in OpenGL, which should speed up all advanced Cairo operations. > Well thats not OpenGL related and is basically what a Composition manager does. > However toolkits should be fast enough also without composition, and a > lot toolkits prove that it is no problem for them (Fox-toolkit, fltk, > qt, win32, ....). Of course. But openGL makes the composite manager very fast. In short, composite is slow and CPU intensive without OpenGL. This allows windows to move without any redraw at all, very quickly, and with transparency, 3-d effects, full Xvideo support/emulation, etc. Interestingly enough, I tried out composite years ago back on a Vesa-only X server (some experimental server from freedesktop.org) and even though we *know* that Vesa is slower in every way, composite made it feel faster. It wasn't really, but it seemed that way. With OpenGL it can seem faster and actually be faster too (or at least as fast as it always was). In answer to your original question, GTK apps are double-buffered at the widget level, not the window-contents level. Xgl and AIXGL (composite generally) make all apps "double-buffered" at the window level, eliminating expose redraws entirely, speeding up every window operation except resize, which still depends on the speed at which the widgets can dynamically resize. Once Xgl and AIXGL become widespread, and the synchronization mechanism is released, I doubt you'll find anyone complaining about GTK speed. It's been shown on this list and in other places to largely be a perception issue. Now, GTK2 is slower than GTK1. It's also more complicated. It won't work as well on a 486 or a pentium 1. If you want to target an older, slower platform, or an embedded device, and you think GTK2 is too slow, either real or perceived, then yes, move to another toolkit that's lighter. GTK is advancing far beyond FLTK or many of the other light toolkits. It does more than just GUI stuff. Michael > > lg Clemens > From linuxhippy@gmail.com Fri Aug 11 11:28:12 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E4AAC3B011E for ; Fri, 11 Aug 2006 11:28:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05359-04 for ; Fri, 11 Aug 2006 11:28:09 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.205]) by menubar.gnome.org (Postfix) with ESMTP id 19A333B00A0 for ; Fri, 11 Aug 2006 11:28:08 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so274375nzn for ; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Received: by 10.65.121.9 with SMTP id y9mr4170045qbm; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 08:28:05 -0700 (PDT) Message-ID: <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> Date: Fri, 11 Aug 2006 17:28:05 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155308828.32140.25.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.233 tagged_above=-999 required=2 tests=[AWL=0.167, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.233 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 15:28:12 -0000 Hi again, > then you'll see the repaint which may or may not be as fast as you think > it should be. And how can you explain the 100% CPU useage? If it would be idle or supress redraws it would not need that many cycles. > frame rate, everything does get smoother. The biggest win here is > resizing a window. With the proposed X11 synchronization extension > stuff (as I understand it), GTK app resizes will be silky smooth (well > at a frame-rate your computer can handle CPU-wise). A simple example - placing two tables with some data (maybe 10 text clumns) in a PannedWindow maximize the window to 1600x1200 and move the gripper. CPU goes up to 100% while animation is slow. This has nothing to do with event processing - at least 10% of total CPU time is spent in glibs data structures. This is on a 2.6ghz pentium 4 Northwood - so I don't talk about pentium1 or 486. > X11 that will allow Gtk (and Qt and any other widget set) to be able to > resize fluidly." Well I don't have any problems with QT, Fox-Toolkit or Fltk. And I would call QT even more feature-rich and fatter - but it does not suffer from those performance problems. > No you are incorrect. OpenGL is not only fast at 3d but also 2d. > However this is beside the point. OpenGL is fast if you do special stuff thats not possible through X11 (where you would e.g. need software fallbacks) but most guys draw lines and fill rects and this is where OpenGL really sucks - just because its much more complex and has a deeper ... I would call it .. well ... driver pipeline. Thats also why NVIDIA developers said that they would support a major transition to XGL but they would not recommend it from the performance pov. and these guys should know ;-) > Of course. But OpenGL makes the composite manager very fast. In short, > composite is slow and CPU intensive without OpenGL. No - why should it be slow? I don't talk about effects, just good plain old composition maybe with shadows. This can be done through XRENDER without any CPU hit (at least on my nvidia gpu). If you don't use fancy effects composition can even be done using the old "core" instruction set, painting pixmaps is accalerated more or less everywhere. > In answer to your original question, GTK apps are double-buffered at the > widget level, not the window-contents level. GTK's widget are double-buffered at window-level, I would have a look at gdkwindow.c. > I doubt you'll find anyone complaining about GTK speed. > It's been shown on this list and in other places to largely be a > perception issue. Well the example I gave (resizing a PannedWindow with table, tree or richtext widgets) will stay slow or be even slower when running on XGL, its not related to synchronization nore to event-buffering mechanismns, since CPU is working at 100%. I'll work out some benchmarks comparing GTK with QT. Both are feature rich and fat so they can be compared well. I just would like to have results handy - I am tired of explaining again and again why I think GTK is slow (and why do so many others dislike it because of its weak performance?). I am quite sure - if I have the results my code will be as long analyzed to find unfair advantage sof the qt part and if there are none and QT is still faster .... the thread will die and nobody will care. lg Clemens From torriem@chem.byu.edu Fri Aug 11 12:27:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3ECFD3B000B for ; Fri, 11 Aug 2006 12:27:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08351-07 for ; Fri, 11 Aug 2006 12:27:18 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id 441163B0138 for ; Fri, 11 Aug 2006 12:27:17 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7BGREJM026954; Fri, 11 Aug 2006 10:27:14 -0600 Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? From: Michael L Torrie To: Clemens Eisserer In-Reply-To: <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> Content-Type: text/plain Date: Fri, 11 Aug 2006 10:27:14 -0600 Message-Id: <1155313634.32140.64.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Fri, 11 Aug 2006 10:27:14 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 16:27:21 -0000 On Fri, 2006-08-11 at 17:28 +0200, Clemens Eisserer wrote: > Hi again, > > > then you'll see the repaint which may or may not be as fast as you think > > it should be. > And how can you explain the 100% CPU useage? If it would be idle or > supress redraws it would not need that many cycles. you are talking about Windows here? Or Linux? If it is Windows, well all bets are off. GTK is an X11 toolkit ported to a win32 drawing layer. It is not going to be ideal on Windows. I move my windows on linux and don't wee 100% cpu, except in frequent, occasional (and expected) spikes. > > > frame rate, everything does get smoother. The biggest win here is > > resizing a window. With the proposed X11 synchronization extension > > stuff (as I understand it), GTK app resizes will be silky smooth (well > > at a frame-rate your computer can handle CPU-wise). > A simple example - placing two tables with some data (maybe 10 text > clumns) in a PannedWindow maximize the window to 1600x1200 and move > the gripper. CPU goes up to 100% while animation is slow. > This has nothing to do with event processing - at least 10% of total > CPU time is spent in glibs data structures. This is on a 2.6ghz > pentium 4 Northwood - so I don't talk about pentium1 or 486. Just because 10% of the cpu time is spent in the glibs "data structures" in no way means that it isn't event processing that is taking the time. Event processing (reacting to the events) is handled in the GDK and GTK libs. I am unsure of what you are trying to prove here, other than the 100% cpu usage. > > > X11 that will allow Gtk (and Qt and any other widget set) to be able to > > resize fluidly." > Well I don't have any problems with QT, Fox-Toolkit or Fltk. > And I would call QT even more feature-rich and fatter - but it does > not suffer from those performance problems. Qt *does* have the same problems generally (stuttering, redraws). > > > No you are incorrect. OpenGL is not only fast at 3d but also 2d. > > However this is beside the point. > OpenGL is fast if you do special stuff thats not possible through X11 > (where you would e.g. need software fallbacks) but most guys draw > lines and fill rects and this is where OpenGL really sucks - just > because its much more complex and has a deeper ... I would call it .. > well ... driver pipeline. > Thats also why NVIDIA developers said that they would support a major > transition to XGL but they would not recommend it from the performance > pov. and these guys should know ;-) You're missing the point. Xgl currently doesn't use OpenGL for rectangles and lines. It uses OpenGL to rapidly render textures. So there's no speed penalty at all. And frankly the NVidia comments are bogus, or at least misunderstood by you. Xgl is an X server that runs on top of X11, so there's overhead there. NVidia *is* supporting the method used by AIXGL, which *is* fast. These technologies *will* make everything including Qt, Gtk, FLTK feel faster (except in your divider drag example). > > > Of course. But OpenGL makes the composite manager very fast. In short, > > composite is slow and CPU intensive without OpenGL. > No - why should it be slow? I don't talk about effects, just good > plain old composition maybe with shadows. This can be done through > XRENDER without any CPU hit (at least on my nvidia gpu). If you don't > use fancy effects composition can even be done using the old "core" > instruction set, painting pixmaps is accalerated more or less > everywhere. Umm composite is naturally slow because each window layer has to be mathematically combined together before displaying on the window. OpenGL offloads this to the render hardware which does this kind of thing at 60 frames a second. Yes Nvidia's driver can offload composite to the card. But in the case of the nvidia driver, composite is very buggy and it is recommended you disable it. BUT, as you know perfectly well, with composite turned on, moving one GTK window across another feels fast and smooth with no tearing or stuttering. Xgl and AIXGL make composite a stable standard. > > > In answer to your original question, GTK apps are double-buffered at the > > widget level, not the window-contents level. > GTK's widget are double-buffered at window-level, I would have a look > at gdkwindow.c. Each GTK application window consists of dozens or hundreds of gdk windows. In X terminology, a window is a small region that accepts events from the X server. Each widget that receives events like clicks is a GdkWindow (and also an X Window). I could be wrong, but I believe that this point has caused you to understand GdkWindows and double- buffering incorrectly. Therefore, I don't believe GTK apps are double-buffered at the window- contents level. If they are, I believe the code would be in GtkWindow, not GdkWindow. Besides that, it's really not GTK's place to double-buffer the entire application window. That's the responsibility of the X server (and composite does do this). > > > I doubt you'll find anyone complaining about GTK speed. > > It's been shown on this list and in other places to largely be a > > perception issue. By chopping up my comments you are taking them out of context. I didn't say "I doubt you'll find anyone complaining about GTK speed." I said that with Xgl or AIXGL, combined with the synchronization stuff, then I doubt that you will find that. > Well the example I gave (resizing a PannedWindow with table, tree or > richtext widgets) will stay slow or be even slower when running on > XGL, its not related to synchronization nore to event-buffering > mechanismns, since CPU is working at 100%. All resizing problems can be helped by synchronization. In situation it is probably the complicated calculations being run to dynamically resize the widgets that is taking 100% of the cpu. However I don't know. > > I'll work out some benchmarks comparing GTK with QT. Both are feature > rich and fat so they can be compared well. I just would like to have > results handy - I am tired of explaining again and again why I think > GTK is slow (and why do so many others dislike it because of its weak > performance?). I am quite sure - if I have the results my code will be > as long analyzed to find unfair advantage sof the qt part and if there > are none and QT is still faster .... the thread will die and nobody > will care. Proper benchmarks will always be useful and acceptable to the GTK developers I think. Then at least there will be real numbers to discuss with you. Likely this thread will die. It's not that no one cares; it's that, likely due to the e-mail medium, it is difficult to have a constructive discussion about this. The last exchange you had with the list left many people feeling frustrated. > > lg Clemens > From linuxhippy@gmail.com Fri Aug 11 13:15:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 77A643B006E for ; Fri, 11 Aug 2006 13:15:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10375-09 for ; Fri, 11 Aug 2006 13:15:51 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 868613B0098 for ; Fri, 11 Aug 2006 13:15:46 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so290417nzn for ; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Received: by 10.64.179.11 with SMTP id b11mr4334937qbf; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Fri, 11 Aug 2006 10:15:44 -0700 (PDT) Message-ID: <194f62550608111015u3465af41ua512524783428845@mail.gmail.com> Date: Fri, 11 Aug 2006 19:15:44 +0200 From: "Clemens Eisserer" To: "Michael L Torrie" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155313634.32140.64.camel@isengard> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <1155308828.32140.25.camel@isengard> <194f62550608110828q287c2459w69ff171669e69a6c@mail.gmail.com> <1155313634.32140.64.camel@isengard> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.236 tagged_above=-999 required=2 tests=[AWL=0.164, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.236 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 17:15:52 -0000 Hi again, > libs. I am unsure of what you are trying to prove here, other than the > 100% cpu usage. I prove here that the argument "gtk is collapsing events to consume less cpu" is not valid for this case. > Qt *does* have the same problems generally (stuttering, redraws). Well not that much on my machine, maybe this varies. At least trolltech is working on performance (QT4 was mainly a performance/footprint release) instead of ignoring it. (KDE devs said to expect about 30% better gui performance jsut by switching to QT4). If you report a performance problem in qt's lists you find at least an angineer talking to you - and adressing it if its really a problem. The same way does SUN with java - I know I've filed about 30 bugs (not performance related) which got accapted. > You're missing the point. Xgl currently doesn't use OpenGL for > rectangles and lines. It uses OpenGL to rapidly render textures. So > there's no speed penalty at all. Well if it does it in software it is: * slow anyway * cpu hogging * need to copy system-ram to vram which is basically ... well god damn slow. > And frankly the NVidia comments are bogus, or at least misunderstood by > you. Xgl is an X server that runs on top of X11, so there's overhead > there. Well XGL just uses the "underlaying" X-Server for input and mode-setting and stuff like that. So if we're talking about even delevery than yes there is overhead. For drawing theres none (except you use indirect GLX in the host-x-server). > NVidia *is* supporting the method used by AIXGL, which *is* > fast. These technologies *will* make everything including Qt, Gtk, FLTK > feel faster (except in your divider drag example). Yes but AIXGL does not use OpenGL for rendering, just for composition. Furthermore NVIDIA does not support the tuxture_to_pixmap extension (or how that stuff is called) till now. > buggy and it is recommended you disable it. BUT, as you know perfectly > well, with composite turned on, moving one GTK window across another > feels fast and smooth with no tearing or stuttering. First of all its the same when moving on top of OpenGL. OpenGL drivers are far from beeing perfect and because openGL is a much more complex topic than XRender its a lot more work to get opengl drivers up and running that host X11 instead of just plain old exa drivers. I saw the proof when Sun implemented Java2d on topi of opengl - crashes, rendering artifacts and so on - they filed tons of driver bug-reports to both ATI and NVidia. Furthermore this does nothing more than hiding existing problems. As long as I move windows arround everything is fine, but as soon as I resize it or force repaint/relayouting it will be as slow as ever, maybe even slower because of the additional overhead. > that this point has caused you to understand GdkWindows and double- > buffering incorrectly. Well not all widget are GdkWindows as you noticed correctly - but from the X point of view double buffering happens at window-level. Otherwise you should say "top-window level". Furthermore the many-window model GTK uses is really inefficient for Composition - since each window's content needs to be stored inside of pixmaps. Even a single maximized GFTP window contains 15mb of pixmap data if you enable composition. You end up with having hundreds of small to medium-sized pixmap for composition - where most of them is hidden anyway by other subwindows. > Besides that, it's really not GTK's place to double-buffer the entire > application window. That's the responsibility of the X server (and > composite does do this). Wrong there was a discussion on xorg started by me where Xorg developers explaind very well why Composite is not suited for double buffering. > All resizing problems can be helped by synchronization. In situation it > is probably the complicated calculations being run to dynamically resize > the widgets that is taking 100% of the cpu. However I don't know. Yes but then those are slow and need tuning. I don't see how synchronization could help here (btw as I say at least 5% are spent only in hashtable lookups!), synchronization would eliminate the flicker and half-moved windows when dragging windows really fast - but synchronization will not speed it up. > discussion about this. The last exchange you had with the list left > many people feeling frustrated. Well the last exchange I had with this list were questions about GDK/Gtk's internal stuff since I set down and did some tweaking - and got 35% more performance on my nvidia board. As soon as it started to be medium-level questions nobody answered, this leads me to the conclusion that either nobody cares about how GTK could be made faster (even if theres someone working on it) or nobody really has any clue what the hell is going on inside of GTK - at least thats how the source looks. lg Clemens From frido@q-software-solutions.de Sat Aug 12 02:32:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D0D343B006C for ; Sat, 12 Aug 2006 02:32:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10887-10 for ; Sat, 12 Aug 2006 02:32:47 -0400 (EDT) Received: from mail.q-software-solutions.de (213-239-199-47.clients.your-server.de [213.239.199.47]) by menubar.gnome.org (Postfix) with ESMTP id 90B753B0003 for ; Sat, 12 Aug 2006 02:32:46 -0400 (EDT) Received: from p54a36654.dip.t-dialin.net ([84.163.102.84] helo=flarge.here) by mail.q-software-solutions.de with esmtpa (Exim 4.50) id 1GBn37-0001Bz-6s for gtk-list@gnome.org; Sat, 12 Aug 2006 08:32:45 +0200 Received: from frido by flarge.here with local (Exim 4.60) (envelope-from ) id 1GBf54-0000sV-O3 for gtk-list@gnome.org; Sat, 12 Aug 2006 00:02:14 +0200 To: gtk-list@gnome.org From: Friedrich Dominicus Organization: Q Software Solutions GmbH Date: Sat, 12 Aug 2006 00:02:14 +0200 Message-ID: <87u04jlymx.fsf@flarge.here> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.18 (linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SA-Exim-Connect-IP: 84.163.102.84 X-SA-Exim-Mail-From: frido@q-software-solutions.de Subject: gtk on 64-bit Windows OSes? X-SA-Exim-Version: 4.2.1 (built Mon, 27 Mar 2006 13:42:28 +0200) X-SA-Exim-Scanned: Yes (on mail.q-software-solutions.de) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.025 tagged_above=-999 required=2 tests=[AWL=-0.388, BAYES_00=-2.599, DATE_IN_PAST_06_12=0.827, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.025 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 06:32:48 -0000 Does anyone has this combination running? Regards Friedrich From tml@iki.fi Sat Aug 12 03:41:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1834D3B0113 for ; Sat, 12 Aug 2006 03:41:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13670-01 for ; Sat, 12 Aug 2006 03:41:54 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id 62F6C3B006C for ; Sat, 12 Aug 2006 03:41:54 -0400 (EDT) Received: from pettson.tml.iki.fi (MMCCXLVIII.tun.saunalahti.fi [213.169.31.148]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 49EB92162C2; Sat, 12 Aug 2006 10:41:51 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17629.34382.403000.84351@gargle.gargle.HOWL> Date: Sat, 12 Aug 2006 10:42:06 +0300 To: Friedrich Dominicus Subject: gtk on 64-bit Windows OSes? In-Reply-To: <87u04jlymx.fsf@flarge.here> References: <87u04jlymx.fsf@flarge.here> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 07:41:56 -0000 Friedrich Dominicus writes: > Does anyone has this combination running? No. --tml From gnome-gtk-list@m.gmane.org Sat Aug 12 05:58:44 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 806113B0003 for ; Sat, 12 Aug 2006 05:58:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18888-10 for ; Sat, 12 Aug 2006 05:58:43 -0400 (EDT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by menubar.gnome.org (Postfix) with ESMTP id 7F9C03B006E for ; Sat, 12 Aug 2006 05:58:42 -0400 (EDT) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GBqGK-0005Li-Lo for gtk-list@gnome.org; Sat, 12 Aug 2006 11:58:36 +0200 Received: from 84.52.165.220 ([84.52.165.220]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 12 Aug 2006 11:58:36 +0200 Received: from jernej.listsonly by 84.52.165.220 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 12 Aug 2006 11:58:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gtk-list@gnome.org From: Jernej =?utf-7?Q?Simon+AQ0-i+AQ0-?= Subject: Re: gtk on 64-bit Windows OSes? Date: Sat, 12 Aug 2006 11:58:21 +0200 Lines: 9 Message-ID: <1krtl57lvod68$.11nwbvell8d91$.dlg@40tude.net> References: <87u04jlymx.fsf@flarge.here> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-7" Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 84.52.165.220 User-Agent: 40tude_Dialog/2.0.15.84 (b70ca7b4.298.344) X-Face: %[WXM5!\pKCy(*!C)<8@PtPR(t'|H Zwo" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.97 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, FROM_EXCESS_QP=0, RCVD_NUMERIC_HELO=1.5, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.97 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 09:58:44 -0000 On Sat, 12 Aug 2006 00:02:14 +-0200, Friedrich Dominicus wrote: > Does anyone has this combination running? Only 32bit GTK+-. -- < Jernej Simon+AQ0-i+AQ0- >< http://deepthought.ena.si/ > < Contact address: >< jernej simoncic at isg si > From lists@nabble.com Sat Aug 12 06:27:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1EBD73B0091 for ; Sat, 12 Aug 2006 06:27:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20341-01 for ; Sat, 12 Aug 2006 06:27:23 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0A9D63B006E for ; Sat, 12 Aug 2006 06:27:23 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GBqiA-00049y-HG for gtk-list@gnome.org; Sat, 12 Aug 2006 03:27:22 -0700 Message-ID: <5774441.post@talk.nabble.com> Date: Sat, 12 Aug 2006 03:27:22 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: tooltips MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.331 tagged_above=-999 required=2 tests=[AWL=-0.751, BAYES_20=-0.74, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.331 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 10:27:24 -0000 tooltpis for treeitems in tree view. i want to put a tooltips for treeview items. i tried GtkTooltips to trree view but -- View this message in context: http://www.nabble.com/tooltips-tf2094772.html#a5774441 Sent from the Gtk+ - General forum at Nabble.com. From lists@nabble.com Sat Aug 12 06:27:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BC2073B04B8 for ; Sat, 12 Aug 2006 06:27:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20229-06 for ; Sat, 12 Aug 2006 06:27:51 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id E94AF3B0148 for ; Sat, 12 Aug 2006 06:27:50 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GBqib-0004AW-TY for gtk-list@gnome.org; Sat, 12 Aug 2006 03:27:49 -0700 Message-ID: <5774441.post@talk.nabble.com> Date: Sat, 12 Aug 2006 03:27:22 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: tooltips MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.321 tagged_above=-999 required=2 tests=[AWL=-0.741, BAYES_20=-0.74, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.321 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 10:27:52 -0000 tooltpis for treeitems in tree view. i want to put a tooltips for treeview items. i tried GtkTooltips to trree view but not working. please help. -- View this message in context: http://www.nabble.com/tooltips-tf2094772.html#a5774441 Sent from the Gtk+ - General forum at Nabble.com. From philip@lawatsch.at Sun Aug 13 11:48:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 63E2B3B00F3 for ; Sun, 13 Aug 2006 11:48:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06935-04 for ; Sun, 13 Aug 2006 11:48:52 -0400 (EDT) Received: from smtp-1.edis.at (mail.customers.edis.at [62.99.242.131]) by menubar.gnome.org (Postfix) with ESMTP id 5DA213B0092 for ; Sun, 13 Aug 2006 11:48:51 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by smtp-1.edis.at (Postfix) with ESMTP id 04FF1931F2 for ; Sun, 13 Aug 2006 17:48:49 +0200 (CEST) Received: from smtp-1.edis.at ([127.0.0.1]) by localhost (smtp-1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 07603-05-2 for ; Sun, 13 Aug 2006 17:48:47 +0200 (CEST) Received: from webmail.waug.at (83-65-233-182.dynamic.xdsl-line.inode.at [83.65.233.182]) by smtp-1.edis.at (Postfix) with ESMTP id 9BABB931F3 for ; Sun, 13 Aug 2006 17:48:47 +0200 (CEST) Received: from [192.168.1.7] (icefox.internal.waug.at [192.168.1.7]) by webmail.waug.at (Postfix) with ESMTP id 2DE9E81151D1 for ; Sun, 13 Aug 2006 17:48:46 +0200 (CEST) Message-ID: <44DF49E1.6030604@lawatsch.at> Date: Sun, 13 Aug 2006 17:48:49 +0200 From: Philip Lawatsch User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: GtkTreeView, Multiselect and editable CellRenderer Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by edis.at Virus-Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.129 tagged_above=-999 required=2 tests=[AWL=0.335, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.129 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Aug 2006 15:48:56 -0000 Hi, I've got a really simple data model for my TreeView, basically it's just a list with 2 colums, one of which is editable. Now one thing that would be nice to have is to select more than one row and set the value of all selected rows to a new value by editing the text in one CellRenderer. Is this supported by GtkTreeView? I thought it was not, but now I found out that I can actually do this (for CellRendererText) by .) Selecting the rows .) DoubleClicking onto the renderer with the alt key held down .) Clicking with alt released once more. In this I get the callback from the renderer I edited and then can use the selections to find out which rows were selected. Timing constraints for the click sequence however are very tight so I'm not sure if this is intended behaviour or a bug. So, is there any support for editing several cells / rows at once? kind regards Philip From billcu1@verizon.net Sun Aug 13 23:35:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B3CC3B00D7 for ; Sun, 13 Aug 2006 23:35:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32307-06 for ; Sun, 13 Aug 2006 23:35:39 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id ADF8E3B0134 for ; Sun, 13 Aug 2006 23:35:38 -0400 (EDT) Received: from win98 ([71.251.249.62]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Y00KACXYUD0F4@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sun, 13 Aug 2006 22:35:19 -0500 (CDT) Date: Sun, 13 Aug 2006 23:33:53 -0400 From: "Bill Cunningham" Subject: gtk installation To: Message-id: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.941 tagged_above=-999 required=2 tests=[AWL=-0.044, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_KG=0.077] X-Spam-Score: 1.941 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 03:35:40 -0000 Well I started over again installed pkg-config. Set the variable in .bash_profile and installed glib fine. Then I tried atk. Atk could find pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that variable that didn't work. I tried setting the path in ld.so.conf and ran ldconfig. That didn't work. I looked into Sergei's tool and couldn't get anywhere there either. I have X installed too. I tried pkg-config --cflag glib-2.0 and got part of a compiler line but I don't know where to put it. pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm trying to get configure to work. I've tried all I know to try. Bill From tonikitoo@gmail.com Mon Aug 14 00:01:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C9C373B0078 for ; Mon, 14 Aug 2006 00:01:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00805-03 for ; Mon, 14 Aug 2006 00:01:24 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id 9DDF13B0018 for ; Mon, 14 Aug 2006 00:01:23 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id n15so1546954nfc for ; Sun, 13 Aug 2006 21:01:23 -0700 (PDT) Received: by 10.78.170.17 with SMTP id s17mr3078200hue; Sun, 13 Aug 2006 21:01:22 -0700 (PDT) Received: by 10.78.194.19 with HTTP; Sun, 13 Aug 2006 21:01:22 -0700 (PDT) Message-ID: <7eb9ad710608132101l659a7568o50dce834fefd8075@mail.gmail.com> Date: Mon, 14 Aug 2006 00:01:22 -0400 From: "Antonio Gomes" To: gtk-list@gnome.org Subject: Getting gdkwindow from Display or Window ? MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_10108_26869754.1155528082952" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.159 tagged_above=-999 required=2 tests=[AWL=0.086, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_DK=0.077, TW_GD=0.077] X-Spam-Score: -2.159 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 04:01:25 -0000 ------=_Part_10108_26869754.1155528082952 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all, I'd like to get a gdk_window instance of an window without having much information about such window (I am not quite sure if it is possible though). Currently I am try to do this (wrongly) as following : (...) // getting the gdk_window object needed by gtk_im_* stuff. Display *display = GDK_DISPLAY (); if (!display) return NS_ERROR_UNEXPECTED; GdkDisplay* gdk_display = gdk_x11_lookup_xdisplay (display); if (!gdk_display) return NS_ERROR_UNEXPECTED; // maybe here I have to get a "Window *" , but how??? // FIXME: Get the right gdkwindow here !!! mGdkWindow = (GdkWindow *) gdk_display_get_default_group (gdk_display); if (!mGdkWindow) return NS_ERROR_UNEXPECTED; (...) it's getting me the wrong gdkwindow. Is it possible to do what I want to ? Am I missing ? regards -- --Antonio Gomes Nokia Technology Institute ------=_Part_10108_26869754.1155528082952 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi all,

I'd like to get a gdk_window instance of an window without having much information about such window (I am not quite sure if it is possible though). Currently I am try to do this (wrongly) as following :

(...)

  // getting the gdk_window object needed by gtk_im_* stuff.

  Display *display = GDK_DISPLAY ();
  if (!display) return NS_ERROR_UNEXPECTED;

  GdkDisplay* gdk_display = gdk_x11_lookup_xdisplay (display);
  if (!gdk_display) return NS_ERROR_UNEXPECTED;

  // maybe here I have to get a "Window *" , but how???

  // FIXME: Get the right gdkwindow here !!!
  mGdkWindow =
            (GdkWindow *) gdk_display_get_default_group (gdk_display);

  if (!mGdkWindow) return NS_ERROR_UNEXPECTED;
(...)

it's getting me the wrong gdkwindow.

Is it possible to do what I want to ? Am I missing ?

regards

--
--Antonio Gomes
Nokia Technology Institute
------=_Part_10108_26869754.1155528082952-- From sergstesh@yahoo.com Mon Aug 14 04:21:39 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A81AF3B01AB for ; Mon, 14 Aug 2006 04:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11420-04 for ; Mon, 14 Aug 2006 04:21:38 -0400 (EDT) Received: from web35204.mail.mud.yahoo.com (web35204.mail.mud.yahoo.com [66.163.179.83]) by menubar.gnome.org (Postfix) with SMTP id 75D2F3B0164 for ; Mon, 14 Aug 2006 04:21:38 -0400 (EDT) Received: (qmail 27567 invoked by uid 60001); 14 Aug 2006 08:21:38 -0000 Message-ID: <20060814082138.27565.qmail@web35204.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35204.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 01:21:38 PDT Date: Mon, 14 Aug 2006 01:21:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk installation To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.575 tagged_above=-999 required=2 tests=[AWL=-1.485, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.575 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 08:21:39 -0000 --- Bill Cunningham wrote: > Well I started over again installed pkg-config. Set the variable in > .bash_profile and installed glib fine. Then I tried atk. Atk could find > pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that > variable that didn't work. I tried setting the path in ld.so.conf and ran > ldconfig. That didn't work. I looked into Sergei's tool and couldn't get > anywhere there either. I have X installed too. I tried pkg-config --cflag > glib-2.0 and got part of a compiler line but I don't know where to put it. > pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm > trying to get configure to work. I've tried all I know to try. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And what about my tool ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Mon Aug 14 04:22:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 646263B00AC for ; Mon, 14 Aug 2006 04:22:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11235-09 for ; Mon, 14 Aug 2006 04:22:13 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 649413B0164 for ; Mon, 14 Aug 2006 04:22:13 -0400 (EDT) Received: (qmail 98187 invoked by uid 60001); 14 Aug 2006 08:22:12 -0000 Message-ID: <20060814082212.98185.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35209.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 01:22:12 PDT Date: Mon, 14 Aug 2006 01:22:12 -0700 (PDT) From: Sergei Steshenko Subject: Re: gtk installation To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001d01c6bf52$77c10600$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.566 tagged_above=-999 required=2 tests=[AWL=-1.476, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.566 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 08:22:14 -0000 --- Bill Cunningham wrote: > Well I started over again installed pkg-config. Set the variable in > .bash_profile and installed glib fine. Then I tried atk. Atk could find > pkgconfig but not glib. I set the LD_CONFIG_LIB or something like that > variable that didn't work. I tried setting the path in ld.so.conf and ran > ldconfig. That didn't work. I looked into Sergei's tool and couldn't get > anywhere there either. I have X installed too. I tried pkg-config --cflag > glib-2.0 and got part of a compiler line but I don't know where to put it. > pkg-config --lib glib-2.0 gave me part of a line to use with gcc too but I'm > trying to get configure to work. I've tried all I know to try. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And what about my tool ? I mean, what were the errors if any ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Mon Aug 14 13:02:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CBBD3B0002 for ; Mon, 14 Aug 2006 13:02:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03418-01 for ; Mon, 14 Aug 2006 13:02:06 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id A36D63B0017 for ; Mon, 14 Aug 2006 13:02:06 -0400 (EDT) Received: from win98 ([141.153.51.118]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3Z00GFZZAPEY20@vms040.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 12:01:38 -0500 (CDT) Date: Mon, 14 Aug 2006 13:00:11 -0400 From: "Bill Cunningham" Subject: variables To: Message-id: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.908 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.908 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:02:09 -0000 Can someone help explain to me the LD_LIBRARIES_PATH variables? Pkg-config recognizes several glib related libraries and exports libs. I can get pkg-config to spit out some compiler switches but I don't know where to put them. I think the above stated variable is the sticky point. Bill From etchstable@gmail.com Mon Aug 14 13:05:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5F6393B0018 for ; Mon, 14 Aug 2006 13:05:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03425-05 for ; Mon, 14 Aug 2006 13:05:34 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by menubar.gnome.org (Postfix) with ESMTP id 973D43B0094 for ; Mon, 14 Aug 2006 13:05:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so412068nzn for ; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Received: by 10.65.51.16 with SMTP id d16mr2928489qbk; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Received: by 10.65.210.11 with HTTP; Mon, 14 Aug 2006 10:05:33 -0700 (PDT) Message-ID: <3022cc00608141005ve096bcdue629b05f7164d6b8@mail.gmail.com> Date: Mon, 14 Aug 2006 19:05:33 +0200 From: "theo crite" To: gtk-list@gnome.org Subject: (long) glib 2.10.3 failed to compile on hpux and Irix In-Reply-To: <3022cc00608141000t3cc91e67v535d3db136c09cc6@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <3022cc00608141000t3cc91e67v535d3db136c09cc6@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.367 tagged_above=-999 required=2 tests=[AWL=1.956, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GF=0.077] X-Spam-Score: -0.367 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:05:37 -0000 Hi, I'm having trouble to compile glib-2.10.3 on Irix and HPUX. I compiled all the dependences (expat, freetype, fontconfig, gettext, libiconv, zlib, poppler) and all make check were totaly succesfull exept gettext (All 226 tests passed (23 tests were not run) on Irix and 24 of 227 tests failed (22 tests were not run) on hpux). Here is the configure for SGI : ================================ LDFLAGS='-lintl -lgettextsrc' ./configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu checking for a BSD-compatible install... /tmp/utils/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... mips-sgi-irix6.5 checking host system type... mips-sgi-irix6.5 checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for c++... c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /tmp/utils/bin/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... perl5 checking for indent... no checking for perl5... /usr/bin/perl5 checking for libiconv_open in -liconv... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking whether we are using the GNU C Library 2.1 or newer... no checking Whether to cache iconv descriptors... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... no checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dgettext in -lintl... yes checking for bind_textdomain_codeset... yes checking for msgfmt... no configure: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ Folowing, part of config.log : ================================ ## --------- ## ## Platform. ## ## --------- ## hostname = octane uname -m = IP30 uname -r = 6.5 uname -s = IRIX64 uname -v = 07201608 /usr/bin/uname -p = mips /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown ... [SNIP] ... configure:7098: checking for bind_textdomain_codeset configure:7155: gcc -o conftest -g -O2 -lintl -lgettextsrc conftest.c -lintl >&5 ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libintl.so is not used for resolving any symbol. ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libgettextsrc.so is not used for resolving any symbol. ld32: WARNING 85: definition of locale_charset in /tmp/compil/gettext-0.14.5/lib/libintl.so preempts that definition in /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3. ld32: WARNING 85: definition of __register_frame in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_table in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_table_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __register_frame_info_table in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame_info_bases in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of __deregister_frame_info in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of _Unwind_Find_FDE in /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. ld32: WARNING 85: definition of locale_charset in /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3 preempts that definition in /tmp/compil/gettext-0.14.5/lib/libgettextlib-0.14.5.so. configure:7161: $? = 0 configure:7165: test -z || test ! -s conftest.err configure:7168: $? = 0 configure:7171: test -s conftest configure:7174: $? = 0 configure:7186: result: yes configure:7226: checking for msgfmt configure:7256: result: no configure:7708: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ For HPUX : CFLAGS="-lintl -lgettextsrc" . /configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu checking for a BSD-compatible install... /tmp/utils/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... hppa1.1-hp-hpux11.00 checking host system type... hppa1.1-hp-hpux11.00 checking for the BeOS... no checking for Win32... no checking whether to enable garbage collector friendliness... no checking whether to disable memory pools... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for c++... c++ checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /tmp/utils/install -c checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGE_FILES value needed for large files... no checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config checking for gawk... (cached) gawk checking for perl5... perl5 checking for indent... no checking for perl5... /usr/bin/perl5 checking for libiconv_open in -liconv... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking whether we are using the GNU C Library 2.1 or newer... no checking Whether to cache iconv descriptors... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... no checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dgettext in -lintl... yes checking for bind_textdomain_codeset... yes checking for msgfmt... no configure: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ================================ And the config.log : ================================ ## --------- ## ## Platform. ## ## --------- ## hostname = hpux4 uname -m = 9000/813 uname -r = B.11.00 uname -s = HP-UX uname -v = A /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown ... [snip] ... configure:6153: checking locale.h usability configure:6165: gcc -c -lintl -lgettextsrc conftest.c >&5 gcc: -lintl: linker input file unused because linking not done gcc: -lgettextsrc: linker input file unused because linking not done configure:6171: $? = 0 configure:6175: test -z || test ! -s conftest.err configure:6178: $? = 0 configure:6181: test -s conftest.o configure:6184: $? = 0 configure:6194: result: yes configure:6198: checking locale.h presence configure:6208: gcc -E conftest.c configure:6214: $? = 0 configure:6234: result: yes configure:6269: checking for locale.h configure:6276: result: yes configure:6290: checking for LC_MESSAGES configure:6311: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6317: $? = 0 configure:6321: test -z || test ! -s conftest.err configure:6324: $? = 0 configure:6327: test -s conftest configure:6330: $? = 0 configure:6342: result: yes configure:6371: checking libintl.h usability configure:6383: gcc -c -lintl -lgettextsrc conftest.c >&5 gcc: -lintl: linker input file unused because linking not done gcc: -lgettextsrc: linker input file unused because linking not done configure:6389: $? = 0 configure:6393: test -z || test ! -s conftest.err configure:6396: $? = 0 configure:6399: test -s conftest.o configure:6402: $? = 0 configure:6412: result: yes configure:6416: checking libintl.h presence configure:6426: gcc -E conftest.c configure:6432: $? = 0 configure:6452: result: yes configure:6487: checking for libintl.h configure:6494: result: yes configure:6505: checking for ngettext in libc configure:6528: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6534: $? = 0 configure:6538: test -z || test ! -s conftest.err configure:6541: $? = 0 configure:6544: test -s conftest configure:6547: $? = 0 configure:6560: result: yes configure:6564: checking for dgettext in libc configure:6587: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6593: $? = 0 configure:6597: test -z || test ! -s conftest.err configure:6600: $? = 0 configure:6603: test -s conftest configure:6606: $? = 0 configure:6619: result: yes configure:6628: checking for bind_textdomain_codeset configure:6685: gcc -o conftest -lintl -lgettextsrc conftest.c >&5 configure:6691: $? = 0 configure:6695: test -z || test ! -s conftest.err configure:6698: $? = 0 configure:6701: test -s conftest configure:6704: $? = 0 configure:6716: result: yes configure:7226: checking for msgfmt configure:7256: result: no configure:7708: error: *** You must have either have gettext support in your C library, or use the *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html ====================== I've double checked my PATH, includes and libraries. Now, I'm stuck. What can/should I do ? Any help is appreciated. From sergstesh@yahoo.com Mon Aug 14 13:16:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 46DB33B0002 for ; Mon, 14 Aug 2006 13:16:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03770-09 for ; Mon, 14 Aug 2006 13:16:10 -0400 (EDT) Received: from web35205.mail.mud.yahoo.com (web35205.mail.mud.yahoo.com [66.163.179.84]) by menubar.gnome.org (Postfix) with SMTP id E7FCA3B002C for ; Mon, 14 Aug 2006 13:16:09 -0400 (EDT) Received: (qmail 42356 invoked by uid 60001); 14 Aug 2006 17:16:09 -0000 Message-ID: <20060814171609.42353.qmail@web35205.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35205.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 10:16:09 PDT Date: Mon, 14 Aug 2006 10:16:09 -0700 (PDT) From: Sergei Steshenko Subject: Re: variables To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.596 tagged_above=-999 required=2 tests=[AWL=-1.429, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.596 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:16:11 -0000 --- Bill Cunningham wrote: > Can someone help explain to me the LD_LIBRARIES_PATH variables? > Pkg-config recognizes several glib related libraries and exports libs. I can > get pkg-config to spit out some compiler switches but I don't know where to > put them. I think the above stated variable is the sticky point. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is what to read: http://www.tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html . But my tool sets it automatically, and I haven't seen a single error message from you regarding my tool. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Mon Aug 14 13:20:14 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A52833B0017 for ; Mon, 14 Aug 2006 13:20:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03938-06 for ; Mon, 14 Aug 2006 13:20:11 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 3C08E3B0002 for ; Mon, 14 Aug 2006 13:20:11 -0400 (EDT) Received: (qmail 26886 invoked by uid 60001); 14 Aug 2006 17:20:10 -0000 Message-ID: <20060814172010.26884.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35210.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 10:20:10 PDT Date: Mon, 14 Aug 2006 10:20:10 -0700 (PDT) From: Sergei Steshenko Subject: Re: (long) glib 2.10.3 failed to compile on hpux and Irix To: theo crite , gtk-list@gnome.org In-Reply-To: <3022cc00608141005ve096bcdue629b05f7164d6b8@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.587 tagged_above=-999 required=2 tests=[AWL=-1.420, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GF=0.077] X-Spam-Score: -0.587 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 17:20:14 -0000 --- theo crite wrote: > Hi, > > I'm having trouble to compile glib-2.10.3 on Irix and HPUX. > I compiled all the dependences (expat, freetype, fontconfig, gettext, > libiconv, zlib, poppler) and all make check were totaly succesfull > exept gettext (All 226 tests passed (23 tests were not run) on Irix > and 24 of 227 tests failed (22 tests were not run) on hpux). > > Here is the configure for SGI : > > ================================ > LDFLAGS='-lintl -lgettextsrc' ./configure > --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... mips-sgi-irix6.5 > checking host system type... mips-sgi-irix6.5 > checking for the BeOS... no > checking for Win32... no > checking whether to enable garbage collector friendliness... no > checking whether to disable memory pools... no > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ANSI C... none needed > checking for style of include used by make... GNU > checking dependency style of gcc... gcc3 > checking for c++... c++ > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking for gcc option to accept ANSI C... none needed > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... no > checking for _LARGE_FILES value needed for large files... no > checking for pkg-config... /tmp/compil/pkg-config-0.20/bin/pkg-config > checking for gawk... (cached) gawk > checking for perl5... perl5 > checking for indent... no > checking for perl5... /usr/bin/perl5 > checking for libiconv_open in -liconv... yes > checking how to run the C preprocessor... gcc -E > checking for egrep... grep -E > checking whether we are using the GNU C Library 2.1 or newer... no > checking Whether to cache iconv descriptors... yes > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... no > checking for unistd.h... yes > checking locale.h usability... yes > checking locale.h presence... yes > checking for locale.h... yes > checking for LC_MESSAGES... yes > checking libintl.h usability... yes > checking libintl.h presence... yes > checking for libintl.h... yes > checking for ngettext in libc... no > checking for bindtextdomain in -lintl... yes > checking for ngettext in -lintl... yes > checking for dgettext in -lintl... yes > checking for bind_textdomain_codeset... yes > checking for msgfmt... no > configure: error: > *** You must have either have gettext support in your C library, or use the > *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html > ================================ > > Folowing, part of config.log : > ================================ > ## --------- ## > ## Platform. ## > ## --------- ## > > hostname = octane > uname -m = IP30 > uname -r = 6.5 > uname -s = IRIX64 > uname -v = 07201608 > > /usr/bin/uname -p = mips > /bin/uname -X = unknown > > /bin/arch = unknown > /usr/bin/arch -k = unknown > /usr/convex/getsysinfo = unknown > hostinfo = unknown > /bin/machine = unknown > /usr/bin/oslevel = unknown > /bin/universe = unknown > > ... > [SNIP] > ... > > configure:7098: checking for bind_textdomain_codeset > configure:7155: gcc -o conftest -g -O2 -lintl -lgettextsrc conftest.c > -lintl >&5 > ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libintl.so is not > used for resolving any symbol. > ld32: WARNING 84: /tmp/compil/gettext-0.14.5/lib/libgettextsrc.so is > not used for resolving any symbol. > ld32: WARNING 85: definition of locale_charset in > /tmp/compil/gettext-0.14.5/lib/libintl.so preempts that definition in > /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3. > ld32: WARNING 85: definition of __register_frame in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_table in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_table_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __register_frame_info_table in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame_info_bases in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of __deregister_frame_info in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of _Unwind_Find_FDE in > /home/Distrib/gcc-3.4.4/bin/../lib/gcc/mips-sgi-irix6.5/3.4.4/libgcc_eh.a(unwind-dw2-fde.o) > preempts that definition in /home/Distrib/gcc-3.4.4/lib/libgcc_s.so.1. > ld32: WARNING 85: definition of locale_charset in > /tmp/compil/libiconv-1.9.2/lib/libiconv.so.3 preempts that definition > in /tmp/compil/gettext-0.14.5/lib/libgettextlib-0.14.5.so. > configure:7161: $? = 0 > configure:7165: test -z > || test ! -s conftest.err > configure:7168: $? = 0 > configure:7171: test -s conftest > configure:7174: $? = 0 > configure:7186: result: yes > configure:7226: checking for msgfmt > configure:7256: result: no > configure:7708: error: > *** You must have either have gettext support in your C library, or use the > *** GNU gettext library. (http://www.gnu.org/software/gettext/gettext.html > ================================ > > > For HPUX : > CFLAGS="-lintl -lgettextsrc" . > /configure --prefix=/tmp/compil/glib-2.10.3 --with-libiconv=gnu > checking for a BSD-compatible install... /tmp/utils/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... hppa1.1-hp-hpux11.00 > checking host system type... hppa1.1-hp-hpux11.00 > checking for the BeOS... no > checking for Win32... no > checking whether to enable garbage collector friendliness... no > checking whether to disable memory pools... no > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ANSI C... none needed > checking for style of include used by make... GNU > checking dependency style of gcc... gcc3 > checking for c++... c++ > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking for gcc option to accept ANSI C... none needed > checking for a BSD-compatible install... /tmp/utils/install -c > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... no > checking for _LARGE_FILES value needed for large files... no > === message truncated === PATH does not deal with libraries. You most likely have to set properly these ones: CPPFLAGS for *.h files; LD_LIBRARY_PATH for *.so files; LDFLAGS - for *.so files, but in a different format. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mekstran@scl.ameslab.gov Mon Aug 14 15:22:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D2F3C3B010A for ; Mon, 14 Aug 2006 15:22:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09760-03 for ; Mon, 14 Aug 2006 15:22:22 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 230FC3B0159 for ; Mon, 14 Aug 2006 15:22:22 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 14 Aug 2006 14:22:20 -0500 id 0006F6D0.44E0CD6C.00002ADB In-Reply-To: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 14 Aug 2006 14:21:48 -0500 To: "Bill Cunningham" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.453 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.453 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 19:22:24 -0000 On Aug 14, 2006, at 12:00 PM, Bill Cunningham wrote: > Can someone help explain to me the LD_LIBRARIES_PATH variables? > Pkg-config recognizes several glib related libraries and exports > libs. I can > get pkg-config to spit out some compiler switches but I don't know > where to > put them. I think the above stated variable is the sticky point. That variable is a variable used by the dynamic linker to locate shared libraries at run time. About the pkg-config compiler switches, etc.: you don't put them anywhere. You make sure that configure can find pkg-config, and pkg- config can find its module definition files (the *.pc files in $PREFIX/lib/pkgconfig), and then configure asks pkg-config for the compiler flags and inserts them appropriately. You can, for some collection of pkg-config-checked packages FOO, set FOO_CFLAGS and FOO_LIBS (or FOO_LDFLAGS, not sure which; output of a configure script made using a recent version of the pkg-config autoconf macros will document this) to the output of pkg-config -- cflags and pkg-config --libs, respectively; however, you shouldn't actually need to do this. If pkg-config is in your PATH, and PKG_CONFIG_PATH is set appropriately if necessary (if you can do pkg- config --cflags glib-2.0 and get meaningful output, then it probably is), then configure should be finding glib properly. Now, where the LD_LIBRARY_PATH (or LIBRARIES_PATH - is that a typo, or does your distro use a name other than the one used by Debian?) variable comes in: several of the gtk-related packages do a check to make sure the necessary libraries can not only be linked against, but also found by the dynamic linker at run time, by compiling and running a test program. If this is the stage where configure is failing (some output from configure would be useful in determining that), then setting LD_LIBRARY_PATH to the lib directory where the glib libraries are located should allow ATK to finish configuring. HTH, Michael From billcu1@verizon.net Mon Aug 14 16:25:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 578C53B0159 for ; Mon, 14 Aug 2006 16:25:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12605-10 for ; Mon, 14 Aug 2006 16:25:46 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 7F1C33B00CB for ; Mon, 14 Aug 2006 16:25:46 -0400 (EDT) Received: from win98 ([207.68.82.27]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4000D3L8QTV9XB@vms048.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 15:25:42 -0500 (CDT) Date: Mon, 14 Aug 2006 16:24:15 -0400 From: "Bill Cunningham" Subject: autoconf and automake To: Message-id: <004401c6bfdf$9d7f0f80$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.015 tagged_above=-999 required=2 tests=[AWL=-0.970, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_KG=0.077] X-Spam-Score: 1.015 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:25:47 -0000 Ok I have two copies of autoconf and automake installed now. One for global use in /usr and one for the glib pkg-config and so on in /usr/local. That may be part of my problem too. I found a pkgconfig directory in /usr and some other pkgconfig stuff in /usr/local. It's all in usr/local now. Bill From sergstesh@yahoo.com Mon Aug 14 16:35:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 02C273B0357 for ; Mon, 14 Aug 2006 16:35:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13170-06 for ; Mon, 14 Aug 2006 16:35:44 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 6FCE23B0264 for ; Mon, 14 Aug 2006 16:35:44 -0400 (EDT) Received: (qmail 5928 invoked by uid 60001); 14 Aug 2006 20:35:44 -0000 Message-ID: <20060814203544.5926.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35206.mail.mud.yahoo.com via HTTP; Mon, 14 Aug 2006 13:35:44 PDT Date: Mon, 14 Aug 2006 13:35:44 -0700 (PDT) From: Sergei Steshenko Subject: Re: autoconf and automake To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <004401c6bfdf$9d7f0f80$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.54 tagged_above=-999 required=2 tests=[AWL=-1.450, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: -0.54 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:35:47 -0000 --- Bill Cunningham wrote: > Ok I have two copies of autoconf and automake installed now. One for > global use in /usr and one for the glib pkg-config and so on in /usr/local. > That may be part of my problem too. I found a pkgconfig directory in /usr > and some other pkgconfig stuff in /usr/local. It's all in usr/local now. > > Bill > > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I think you are making your life unnecessarily complex. My tool builds a lot of things not calling autoconf and automake. Before creating my tool I built gtk manually not at all calling autoconf and automake. IIRC, autoconf and automake help to create 'configure' script - you get 'configure' with every target you need to build. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From xtremejames183@msn.com Mon Aug 14 16:42:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 499453B00AA for ; Mon, 14 Aug 2006 16:42:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13286-09 for ; Mon, 14 Aug 2006 16:41:59 -0400 (EDT) Received: from bay0-omc1-s41.bay0.hotmail.com (bay0-omc1-s41.bay0.hotmail.com [65.54.246.113]) by menubar.gnome.org (Postfix) with ESMTP id 45E313B0077 for ; Mon, 14 Aug 2006 16:41:59 -0400 (EDT) Received: from hotmail.com ([65.54.173.10]) by bay0-omc1-s41.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 14 Aug 2006 13:41:58 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 14 Aug 2006 13:41:56 -0700 Message-ID: Received: from 196.203.211.106 by by5fd.bay5.hotmail.msn.com with HTTP; Mon, 14 Aug 2006 20:41:54 GMT X-Originating-IP: [196.203.211.106] X-Originating-Email: [xtremejames183@msn.com] X-Sender: xtremejames183@msn.com From: "Mrad James deane" To: gtk-list@gnome.org Subject: A problem with FontDialog and FontButton Date: Mon, 14 Aug 2006 21:41:54 +0100 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 14 Aug 2006 20:41:56.0271 (UTC) FILETIME=[15039BF0:01C6BFE2] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.506 tagged_above=-999 required=2 tests=[AWL=0.521, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 2.506 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:42:00 -0000 Hi, iwant to know if a gtk font dialog can return the full pach of a selected font ex: C:\WINDOWS\Fonts\Arial.ttf if not : *** can i use a file selection dlg that return the full path *** how to set a file filter only for ex:*.ttf Regards. _________________________________________________________________ MSN Messenger : discutez en direct avec vos amis ! http://www.msn.fr/msger/default.asp From mekstran@scl.ameslab.gov Mon Aug 14 16:44:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4EAE93B00AA for ; Mon, 14 Aug 2006 16:44:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13258-10 for ; Mon, 14 Aug 2006 16:44:02 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id 8C9D53B0123 for ; Mon, 14 Aug 2006 16:44:01 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 14 Aug 2006 15:44:00 -0500 id 0006F647.44E0E090.0000164F In-Reply-To: <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 14 Aug 2006 15:43:29 -0500 To: Bill Cunningham X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.453 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.453 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 20:44:03 -0000 On Aug 14, 2006, at 2:37 PM, Bill Cunningham wrote: > ----- Original Message ----- > From: "Michael Ekstrand" > To: "Bill Cunningham" > Cc: > Sent: Monday, August 14, 2006 3:21 PM > Subject: Re: variables >> That variable is a variable used by the dynamic linker to locate >> shared libraries at run time. > > I compiled glib with the default. I didn't turn on shared > libraries if I > needed to. So if it builds only static libraries by default, that > could be > it. It builds shared libraries by default. >> Now, where the LD_LIBRARY_PATH (or LIBRARIES_PATH - is that a typo, >> or does your distro use a name other than the one used by Debian?) >> variable comes in: several of the gtk-related packages do a check to >> make sure the necessary libraries can not only be linked against, but >> also found by the dynamic linker at run time, by compiling and >> running a test program. If this is the stage where configure is >> failing (some output from configure would be useful in determining >> that), then setting LD_LIBRARY_PATH to the lib directory where the >> glib libraries are located should allow ATK to finish configuring. >> >> HTH, >> Michael > > The test program(s) compile but they do not run. You mentioned > changes > made to configure script. I don't have either autoconf or automake > installed. Maybe I better install them. Which means that it can't find the shared libraries at run time. Try setting the LD_LIBRARY_PATH to point to the $PREFIX/lib directory where glib's shared libraries are. Running `ldconfig /path/to/glib/ lib` may help also. Also, you don't need to edit configure at all - I merely ment that it would be helpful for debugging if you posted the output from configure (or at least the relevant error messages) for us to read. - Michael From billcu1@verizon.net Mon Aug 14 19:05:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 54F373B00B8 for ; Mon, 14 Aug 2006 19:05:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19622-02 for ; Mon, 14 Aug 2006 19:05:30 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 8729E3B0017 for ; Mon, 14 Aug 2006 19:05:30 -0400 (EDT) Received: from win98 ([141.153.7.226]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J400065GG4R6MP4@vms046.mailsrvcs.net> for gtk-list@gnome.org; Mon, 14 Aug 2006 18:05:16 -0500 (CDT) Date: Mon, 14 Aug 2006 19:03:49 -0400 From: "Bill Cunningham" Subject: atk To: Message-id: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.908 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.908 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 23:05:33 -0000 Well I finally got atk to compile! One step closer to GTK. I run ldconf /usr/local/lib and the configure script ran successfully. Then I tried make and got the error from grep. /opt/usr/lib/libintl.la not found. Why make was looking into opt for anything I don't know. So I copied libintl.la from /usr/lib into the opt path it wanted for compilation sake. Now I guess for cairo or pango. Bill From lists@nabble.com Tue Aug 15 04:44:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B701E3B0101 for ; Tue, 15 Aug 2006 04:44:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05698-08 for ; Tue, 15 Aug 2006 04:44:42 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id A12693B00E7 for ; Tue, 15 Aug 2006 04:44:42 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GCuXS-0000DB-Ew for gtk-list@gnome.org; Tue, 15 Aug 2006 01:44:42 -0700 Message-ID: <5810799.post@talk.nabble.com> Date: Tue, 15 Aug 2006 01:44:42 -0700 (PDT) From: heavenscape To: gtk-list@gnome.org Subject: How to port a GTK project to Win32 platform? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.807 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_05=-1.11, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.807 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:44:43 -0000 Hi all, I see some documentations of Gtk and Gnome are saying that the GTK and Gnome projects can be ported to win32 platform. I'd like to know how, and how can I get the related libraries and environments available under MS windows XP. Thank you!! Mason -- View this message in context: http://www.nabble.com/How-to-port-a-GTK-project-to-Win32-platform--tf2108098.html#a5810799 Sent from the Gtk+ - General forum at Nabble.com. From martyn@imendio.com Tue Aug 15 04:51:16 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BA5523B0070 for ; Tue, 15 Aug 2006 04:51:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06330-02 for ; Tue, 15 Aug 2006 04:51:14 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id BEAE33B0017 for ; Tue, 15 Aug 2006 04:51:13 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 968D411E87; Tue, 15 Aug 2006 10:51:12 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17131-04; Tue, 15 Aug 2006 10:51:08 +0200 (CEST) Received: from [192.168.0.8] (82-147-21-65.dsl.uk.rapidplay.com [82.147.21.65]) by holken.mikan.net (Postfix) with ESMTP id BB1C312603; Tue, 15 Aug 2006 10:51:07 +0200 (CEST) Subject: Re: atk From: Martyn Russell To: Bill Cunningham In-Reply-To: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> References: <000b01c6bff5$e7b17fa0$2f01a8c0@myhome.westell.com> Content-Type: text/plain Organization: Imendio Date: Tue, 15 Aug 2006 09:50:58 +0100 Message-Id: <1155631858.16373.80.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.522 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.522 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:51:16 -0000 On Mon, 2006-08-14 at 19:03 -0400, Bill Cunningham wrote: > Well I finally got atk to compile! One step closer to GTK. I run ldconf > /usr/local/lib and the configure script ran successfully. Then I tried make > and got the error from grep. > /opt/usr/lib/libintl.la not found. Why make was looking into opt for > anything I don't know. So I copied libintl.la from /usr/lib into the opt > path it wanted for compilation sake. Now I guess for cairo or pango. Might I suggest you try out jhbuild if you want to GTK+ in a particular prefix without having to worry about software being installed all over the place. This might make like a little easier. It is in Gnome's CVS. http://cvs.gnome.org/viewcvs/jhbuild/ The instructions are here: http://www.jamesh.id.au/software/jhbuild/ Once set up (which should just be a case of configuring your ~/.jhbuildrc file, you should be able to run: $ jhbuild bootstrap ... $ jhbuild build gtk+ ... -- Regards, Martyn From martyn@imendio.com Tue Aug 15 04:53:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7098C3B00D2 for ; Tue, 15 Aug 2006 04:53:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06353-02 for ; Tue, 15 Aug 2006 04:53:36 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id F146D3B0070 for ; Tue, 15 Aug 2006 04:53:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 54FBD11EB3; Tue, 15 Aug 2006 10:53:35 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17198-04; Tue, 15 Aug 2006 10:53:30 +0200 (CEST) Received: from [192.168.0.8] (82-147-21-65.dsl.uk.rapidplay.com [82.147.21.65]) by holken.mikan.net (Postfix) with ESMTP id 30C6412603; Tue, 15 Aug 2006 10:53:30 +0200 (CEST) Subject: Re: How to port a GTK project to Win32 platform? From: Martyn Russell To: heavenscape In-Reply-To: <5810799.post@talk.nabble.com> References: <5810799.post@talk.nabble.com> Content-Type: text/plain Organization: Imendio Date: Tue, 15 Aug 2006 09:53:23 +0100 Message-Id: <1155632003.16373.83.camel@nemesis> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599] X-Spam-Score: -2.561 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 08:53:37 -0000 On Tue, 2006-08-15 at 01:44 -0700, heavenscape wrote: > Hi all, > > I see some documentations of Gtk and Gnome are saying that the GTK and Gnome > projects can be ported to win32 platform. I'd like to know how, and how can > I get the related libraries and environments available under MS windows XP. You might find these useful: Tor wrote this on porting Evolution to Windows: http://www.go-evolution.org/Building_Evolution_on_Windows I wrote this on porting Loudmouth to Windows (much is similar just updated from Tor's): http://developer.imendio.com/projects/loudmouth/win32 Hope this helps. -- Regards, Martyn From tml@iki.fi Tue Aug 15 05:09:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82C733B00A8 for ; Tue, 15 Aug 2006 05:09:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07149-02 for ; Tue, 15 Aug 2006 05:09:16 -0400 (EDT) Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi [195.197.172.115]) by menubar.gnome.org (Postfix) with ESMTP id E5D703B0017 for ; Tue, 15 Aug 2006 05:09:15 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 213BE151155; Tue, 15 Aug 2006 12:09:13 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17633.36686.700000.142615@gargle.gargle.HOWL> Date: Tue, 15 Aug 2006 12:09:34 +0300 To: heavenscape Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <5810799.post@talk.nabble.com> References: <5810799.post@talk.nabble.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 09:09:17 -0000 heavenscape writes: > I'd like to know how, and how can I get the related libraries and > environments available under MS windows XP. Browse ftp://ftp.gtk.org and http://ftp.gnome.org and you will find zip archives that contain the Win32 ports of GTK+ and dependencies, and most GNOME platform libraries, and a few desktop ones. (For instance, ftp://ftp.gtk.org/pub/gtk/v2.8/win32/ has Win32 ports of GTK+ and dependencies, and http://ftp.gnome.org/pub/gnome/platform/2.14/2.14.3/win32/ has the GNOME platform libraries.) There are usually two zip archives for each version of a library: Runtime and developer. (Just like Linux distros have separate runtime and developer packages for libraries.) If your application uses only GTK+ you can use MSVC6 to build your app even if the GTK+ libraries have been built with gcc (mingw). (You might be able to use newer versions of MSVC is you are careful and avoid such GTK+ and GLib API that passes or returns data specific to the C library being used, like file descriptors.) If you use GNOME libraries, you have to use gcc. Some hints can be found in http://www.iki.fi/tml/fosdem-2006.pdf . --tml From linuxhippy@gmail.com Tue Aug 15 05:30:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8CE193B0017 for ; Tue, 15 Aug 2006 05:30:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07875-10 for ; Tue, 15 Aug 2006 05:30:19 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 742EB3B0081 for ; Tue, 15 Aug 2006 05:30:18 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so508232nzn for ; Tue, 15 Aug 2006 02:30:18 -0700 (PDT) Received: by 10.65.159.20 with SMTP id l20mr8253180qbo; Tue, 15 Aug 2006 02:30:17 -0700 (PDT) Received: by 10.64.185.8 with HTTP; Tue, 15 Aug 2006 02:30:17 -0700 (PDT) Message-ID: <194f62550608150230k5a09d238rb0410b147fd5a573@mail.gmail.com> Date: Tue, 15 Aug 2006 11:30:17 +0200 From: "Clemens Eisserer" To: "=?ISO-8859-1?Q?Mirco_M=FCller?=" , gtk-list@gnome.org Subject: Re: GTK is double buffered by default ? on GNU/Linux and MS Windows ? In-Reply-To: <1155626182.5811.15.camel@hal9000> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6bcc32f20608100734j618826ffofbbafc2141d74268@mail.gmail.com> <1155228189.12091.41.camel@isengard> <194f62550608110057h25a098e2nfaa2c1e2da1d3d13@mail.gmail.com> <17628.16132.763000.45282@gargle.gargle.HOWL> <194f62550608110205j617390afy81cc80b9f1d00ac6@mail.gmail.com> <1155626182.5811.15.camel@hal9000> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.239 tagged_above=-999 required=2 tests=[AWL=0.161, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.239 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 09:30:21 -0000 Hi Mirco, > Do you have a patch of your changes to gtk+ you could send me? Its was only very experimental stuff (and broke Gtk's spinner widget - although none on the list could even give me an explanation why this could happen). It was written against GTK-2.0 and helps only on nvidia hardware. I already talked to nvidia drivers programmers, they'll try to optimize their drivers in future. > Against > which version did you write your changes? GTK-2.10 > Have you only patched gtk+ or glib too? GDK and GTK. > http://primates.ximian.com/~federico/news-2005-07.html#26 > > Have you tried to get in touch with him in order to maybe join efforts > and avoid duplicate work? No, but thanks a lot for the hint. I always used oprofile, I'll try to get in contact with him. I could send it to you if you're interrested by mail. lg Clemens From riboaz@xs4all.nl Tue Aug 15 08:12:51 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 853823B00C0; Tue, 15 Aug 2006 08:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16489-04; Tue, 15 Aug 2006 08:12:48 -0400 (EDT) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by menubar.gnome.org (Postfix) with ESMTP id D86413B006C; Tue, 15 Aug 2006 08:12:46 -0400 (EDT) Received: from [192.168.1.65] (a80-127-22-34.adsl.xs4all.nl [80.127.22.34]) by smtp-vbr8.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7FCCiXh054669; Tue, 15 Aug 2006 14:12:45 +0200 (CEST) (envelope-from riboaz@xs4all.nl) In-Reply-To: References: <6fe8fcb90607252105u2a77942cy86b51ecebcf92f64@mail.gmail.com> <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <73E07F56-C827-46BF-82F4-C872D6ADC31B@xs4all.nl> Content-Transfer-Encoding: 7bit From: Richard Boaz Subject: Re: problem displaying rgb images on window Date: Tue, 15 Aug 2006 14:12:48 +0200 To: "Daniel Haude" X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.516 tagged_above=-999 required=2 tests=[AWL=0.083, BAYES_00=-2.599] X-Spam-Score: -2.516 X-Spam-Level: Cc: gtk-app-devel-list@gnome.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 12:12:51 -0000 hi, the gtk_widget_queue_draw_area() creates/forces an expose event on the drawing area in question; this event, then, to be processed by the mainLoop. the while loop, then, forces all outstanding events sitting in the mainLoop event queue to be processed until all events are exahusted; essentially forcing your expose event callback code to be executed, immediately. (and, using this paradigm, this is the reason, too, you should do no drawing in the expose event except to render the pixmap to the physical display, i.e., it must be the end-point in the entire process of making and displaying your image). you also use this while loop construct, for example, when wanting to update a progress meter while doing work in the background (that's being metered). ta, richard On Aug 15, 2006, at 1:59 PM, Daniel Haude wrote: > On Wed, 26 Jul 2006 06:41:38 +0200, Richard Boaz > wrote: > >> gtk_widget_queue_draw_area(DrawingArea, 0, 0, >> DrawingArea->allocation.width, DrawingArea->allocation.height); >> while (gtk_events_pending()) >> gtk_main_iteration(); >> } // end while > > What is the while loop for? > From dunno@stoptrick.com Tue Aug 15 07:59:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBA7F3B006C; Tue, 15 Aug 2006 07:59:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15437-09; Tue, 15 Aug 2006 07:59:18 -0400 (EDT) Received: from can15.can15.de (can15.de [213.203.199.222]) by menubar.gnome.org (Postfix) with ESMTP id 2D6393B009D; Tue, 15 Aug 2006 07:59:18 -0400 (EDT) Received: from localhost (KIR.physnet.uni-hamburg.de [134.100.105.153]) by can15.can15.de (can15.can15.de) with ESMTP id 43BC651816E; Tue, 15 Aug 2006 13:59:08 +0200 (CEST) To: "Richard Boaz" , "sachin kamat" Subject: Re: problem displaying rgb images on window References: <6fe8fcb90607252105u2a77942cy86b51ecebcf92f64@mail.gmail.com> <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> Message-ID: From: "Daniel Haude" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Tue, 15 Aug 2006 13:59:15 +0200 In-Reply-To: <18173.80.126.242.36.1153888898.squirrel@webmail.xs4all.nl> User-Agent: Opera M2/8.50 (Linux, build 1358) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599] X-Spam-Score: -2.54 X-Spam-Level: X-Mailman-Approved-At: Tue, 15 Aug 2006 10:53:43 -0400 Cc: gtk-app-devel-list@gnome.org, gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 11:59:21 -0000 On Wed, 26 Jul 2006 06:41:38 +0200, Richard Boaz wrote: > gtk_widget_queue_draw_area(DrawingArea, 0, 0, > DrawingArea->allocation.width, DrawingArea->allocation.height); > while (gtk_events_pending()) > gtk_main_iteration(); > } // end while What is the while loop for? From billcu1@verizon.net Tue Aug 15 14:23:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F402C3B0012 for ; Tue, 15 Aug 2006 14:23:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01364-05 for ; Tue, 15 Aug 2006 14:23:03 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 033513B000D for ; Tue, 15 Aug 2006 14:23:03 -0400 (EDT) Received: from win98 ([151.205.86.205]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J41003L3XQDRR04@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 15 Aug 2006 13:23:02 -0500 (CDT) Date: Tue, 15 Aug 2006 14:21:36 -0400 From: "Bill Cunningham" Subject: jhbuild To: Message-id: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.169 tagged_above=-999 required=2 tests=[AWL=-0.816, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_JH=0.077] X-Spam-Score: 1.169 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 18:23:05 -0000 I don't know about jhbuild but I do have something called garnome. Haven't got a chance to use it yet. Bill From g.tagliaretti@gmail.com Tue Aug 15 15:05:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B3413B00EB for ; Tue, 15 Aug 2006 15:05:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03312-07 for ; Tue, 15 Aug 2006 15:05:55 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by menubar.gnome.org (Postfix) with ESMTP id 4E2EF3B000D for ; Tue, 15 Aug 2006 15:05:55 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id h2so57188ugf for ; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Received: by 10.66.224.19 with SMTP id w19mr383425ugg; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Received: by 10.67.123.10 with HTTP; Tue, 15 Aug 2006 12:05:54 -0700 (PDT) Message-ID: <35bf41160608151205v61b2b530r28b896c0e957e924@mail.gmail.com> Date: Tue, 15 Aug 2006 21:05:54 +0200 From: "Gian Mario Tagliaretti" To: "Bill Cunningham" Subject: Re: jhbuild In-Reply-To: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000701c6c097$a54b2d80$2f01a8c0@myhome.westell.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.431 tagged_above=-999 required=2 tests=[AWL=-0.108, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_JH=0.077] X-Spam-Score: -2.431 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 19:05:58 -0000 2006/8/15, Bill Cunningham : > I don't know about jhbuild but I do have something called garnome. > Haven't got a chance to use it yet. Hi Bill, do you mind not open a new thread each time? thanks btw, first hit on google for jhbuild and garnome: http://www.jamesh.id.au/software/jhbuild/ http://www.gnome.org/projects/garnome/ cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ http://pygstdocs.berlios.de From mclasen@redhat.com Tue Aug 15 22:16:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29DA33B00DB; Tue, 15 Aug 2006 22:16:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20954-06; Tue, 15 Aug 2006 22:16:47 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5D10B3B00AB; Tue, 15 Aug 2006 22:16:47 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7G2GlBJ021963; Tue, 15 Aug 2006 22:16:47 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7G2Gkff031948; Tue, 15 Aug 2006 22:16:46 -0400 Received: from [10.13.248.53] (vpn-248-53.boston.redhat.com [10.13.248.53]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k7G2Gjwj029925; Tue, 15 Aug 2006 22:16:46 -0400 Subject: GLib 2.12.2 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Tue, 15 Aug 2006 22:20:41 -0400 Message-Id: <1155694841.5578.1.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.91 (2.7.91-4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.542 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.542 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 02:16:49 -0000 GLib 2.12.2 is now available for download at: ftp://ftp.gtk.org/pub/glib/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.2.tar.bz2 md5sum: 45471ca86af288b7a48116ab2b498d0c glib-2.12.2.tar.gz md5sum: fe0ca5a41f40443eb80c3e7fe8a36836 GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.12.0 to GLib 2.12.1 =================================================== * Update to final Unicode Character Database 5.0.0 * Bugs fixed: 346660 issues with base64 api documentation / g_base64_decode_cl... 348136 Coverity reports allocation of wrong size CID #2839 336281 Update to UCD 5.0 346197 g_date_strftime %F option doesnt work for win32 348011 Small optimization to real_toupper() 246494 prototype mismatch in glib/gconvert.c * New and updated translations (bg,bn_IN,ca,dz,eu,fi, fr,he,it,ja,mk,or,pt) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=348694,347842,348491,349825,349792,349952,348785 Thanks to all contributors: Tor Lillqvist, Behdad Esfahbod, Nikolai Weibull, Chris Wilson, Jakub Friedl, Emmanuele Bassi, Matt Barnes, Josh Parsons Matthias Clasen August 15, 2006 From tml@iki.fi Wed Aug 16 04:51:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29AAB3B0235 for ; Wed, 16 Aug 2006 04:51:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02583-10 for ; Wed, 16 Aug 2006 04:51:21 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id CF5C13B00B5 for ; Wed, 16 Aug 2006 04:51:20 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id 93D4D1396E4; Wed, 16 Aug 2006 11:51:17 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17634.56474.231000.931060@gargle.gargle.HOWL> Date: Wed, 16 Aug 2006 11:51:38 +0300 To: gtk-list@gnome.org Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> References: <5810799.post@talk.nabble.com> <17633.36686.700000.142615@gargle.gargle.HOWL> <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: Mason X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 08:51:23 -0000 (Keeping the discussion on the list. Don't reply personally to a message thread on a mailing list.) Mason writes: > I have found that there are too many different versions > of the Gtk and Gnome libraries available on the ftp sites and I am just not > sure which versions to use, Use the newest ones available. (There aren't any GTK 2.10.x binaries for Win32 yet, for instance.) > since there may be some compatibility issues. Sure, obviously you cannot mix a current GTK with an old Pango, for instance. But if you just use the newest versions of cairo, GLib, atk, Pango and GTK it should work out fine. Also, if you find a bug, the first question when you report the bug will be what version you are using, and if you aren't using a relatively current version there isn't much that will be done about the bug anyway, so... > Could you tell me how to find out what versions I am currently using under > Linux? That depends on your Linux distribution. On RPM-based distributions, for instance: rpm -qa | grep -E 'cairo|glib|atk|pango|gtk' Or use whatever graphical package management frontend your Linux distribution offers. --tml From kaustubh.atrawalkar@celunite.com Wed Aug 16 08:10:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B90A3B000F for ; Wed, 16 Aug 2006 08:10:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11198-04 for ; Wed, 16 Aug 2006 08:10:02 -0400 (EDT) Received: from rs384.securehostserver.com (rs384.securehostserver.com [72.22.69.69]) by menubar.gnome.org (Postfix) with SMTP id E8A003B007D for ; Wed, 16 Aug 2006 08:10:01 -0400 (EDT) Received: (qmail 77714 invoked by uid 3521); 16 Aug 2006 12:09:10 -0000 Received: from 220.225.33.101 by rs384.securehostserver.com (envelope-from , uid 1002) with qmail-scanner-1.25st (clamdscan: 0.88/1245. spamassassin: 3.1.0. perlscan: 1.25st. Clear:RC:1(220.225.33.101):. Processed in 0.247851 secs); 16 Aug 2006 12:09:10 -0000 Received: from unknown (HELO ?192.168.100.41?) (220.225.33.101) by rs384.securehostserver.com with SMTP; 16 Aug 2006 12:09:09 -0000 Message-ID: <44E30B13.90601@celunite.com> Date: Wed, 16 Aug 2006 17:39:55 +0530 From: Kaustubh Atrawalkar Organization: Celunite, Inc. User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Memory Optimization Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.329 tagged_above=-999 required=2 tests=[AWL=0.270, BAYES_00=-2.599] X-Spam-Score: -2.329 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: kaustubh.atrawalkar@celunite.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 12:10:03 -0000 Hi !! I am working on glib optimization for our product. I just need to know what is the use of G_QUARK_BLOCK_SIZE (defined in gdataset.c) and used while allocating memory for any types? Also why we need the size 512 bytes for that quark block? Cant we reduce them to say 64 bytes or somewhat like that. We have very critical memory requirement. So need so save as much memory as possible. If you can give me some more hot spots where i can save more memory it will be very helpful to me. -Kaustubh Atrawalkar Software Engineer Codito Technologies 3rd Floor, Business Avenue Koregaon Park Pune, MS 411001 INDIA Work: 912026051367 Mobile: 919890305492 Email: kaustubh.atrawalkar@gmail.com http://www.linkedin.com/in/kaustubh From francisco.moraes@gmail.com Thu Aug 17 09:27:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 479DE3B0391 for ; Thu, 17 Aug 2006 09:27:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10435-05 for ; Thu, 17 Aug 2006 09:27:02 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 7BA2A3B0363 for ; Thu, 17 Aug 2006 09:27:02 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so645166pyg for ; Thu, 17 Aug 2006 06:27:02 -0700 (PDT) Received: by 10.35.94.7 with SMTP id w7mr3521741pyl; Thu, 17 Aug 2006 06:27:02 -0700 (PDT) Received: by 10.35.103.16 with HTTP; Thu, 17 Aug 2006 06:27:01 -0700 (PDT) Message-ID: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> Date: Thu, 17 Aug 2006 09:27:01 -0400 From: "Francisco Moraes" To: gtk-list@gnome.org Subject: GtkPrint PangoLayout extents MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1561_29587065.1155821221956" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.831 tagged_above=-999 required=2 tests=[AWL=0.217, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.831 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 13:27:05 -0000 ------=_Part_1561_29587065.1155821221956 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango layout from the cairo reference, setting the font and text and calling pango_layout_get_pixel_extents. This seems to work well, except that the returned width seems to be about twice of what it is printed either on preview or in the output page in the printer. Is this correct or is there a better way to figure out the text extents when using Pango? Here's the exact code I am using: PangoLayout *layout = gtk_print_context_create_pango_layout (job->pc); PangoRectangle ink; PangoRectangle log; pango_layout_set_font_description (layout, current_font); pango_layout_set_text (layout, text, -1); pango_layout_context_changed (layout); pango_layout_get_pixel_extents (layout, &ink, &log); g_object_unref (layout); return ink.width; Francisco ------=_Part_1561_29587065.1155821221956 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,

I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango
layout from the cairo reference, setting the font and text and calling
pango_layout_get_pixel_extents. This seems to work well, except that the
returned width seems to be about twice of what it is printed either on
preview or in the output page in the printer.

Is this correct or is there a better way to figure out the text extents when
using Pango?

Here's the exact code I am using:

PangoLayout *layout = gtk_print_context_create_pango_layout (job->pc);
PangoRectangle ink;
PangoRectangle log;

pango_layout_set_font_description (layout, current_font);
pango_layout_set_text (layout, text, -1);

pango_layout_context_changed (layout);

pango_layout_get_pixel_extents (layout, &ink, &log);

g_object_unref (layout);

return ink.width;

Francisco
------=_Part_1561_29587065.1155821221956-- From paul@linuxaudiosystems.com Thu Aug 17 09:42:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4869F3B018B for ; Thu, 17 Aug 2006 09:42:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11149-09 for ; Thu, 17 Aug 2006 09:42:20 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 760443B03CF for ; Thu, 17 Aug 2006 09:42:13 -0400 (EDT) Received: from dhin ([151.197.173.177]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4500FLTA1MWF30@vms048.mailsrvcs.net> for gtk-list@gnome.org; Thu, 17 Aug 2006 08:41:47 -0500 (CDT) Date: Thu, 17 Aug 2006 09:41:34 -0400 From: Paul Davis Subject: Re: GtkPrint PangoLayout extents In-reply-to: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> To: Francisco Moraes Message-id: <1155822094.28145.30.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain Content-transfer-encoding: 7bit References: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.551 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599] X-Spam-Score: -2.551 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 13:42:23 -0000 On Thu, 2006-08-17 at 09:27 -0400, Francisco Moraes wrote: > Hi, > > I am trying to use the new GtkPrint from GTK 2.10. I am creating a pango > layout from the cairo reference, setting the font and text and calling > pango_layout_get_pixel_extents. This seems to work well, except that the > > returned width seems to be about twice of what it is printed either on > preview or in the output page in the printer. > > Is this correct or is there a better way to figure out the text extents when > using Pango? try using the ink extents variant. From hvreddy1110@gmail.com Thu Aug 17 10:03:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 38B9B3B04BD for ; Thu, 17 Aug 2006 10:03:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12879-02 for ; Thu, 17 Aug 2006 10:03:22 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by menubar.gnome.org (Postfix) with ESMTP id 3FFE73B0363 for ; Thu, 17 Aug 2006 10:03:22 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id n25so656442pyg for ; Thu, 17 Aug 2006 07:03:22 -0700 (PDT) Received: by 10.35.51.19 with SMTP id d19mr3624907pyk; Thu, 17 Aug 2006 07:03:22 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Thu, 17 Aug 2006 07:03:21 -0700 (PDT) Message-ID: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> Date: Thu, 17 Aug 2006 19:33:21 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Books for Cross compile Libraries MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2902_28367673.1155823401945" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.515 tagged_above=-999 required=2 tests=[AWL=-0.904, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.515 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 14:03:23 -0000 ------=_Part_2902_28367673.1155823401945 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline HI, Is there any book or document on How to crosscompile Libraries. I want to cross compile Libraries from i386 to ARM11(Which are Needed for Gtk Application). Thanks in advance, Regards, Harsha ------=_Part_2902_28367673.1155823401945 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
HI,
Is there any book or document on How to crosscompile Libraries.
I want to cross compile Libraries from i386 to ARM11(Which are Needed for Gtk Application).
 
Thanks in advance,
 
Regards,
Harsha
------=_Part_2902_28367673.1155823401945-- From ibr@radix50.net Thu Aug 17 17:20:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9FD993B0014 for ; Thu, 17 Aug 2006 17:20:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01727-04 for ; Thu, 17 Aug 2006 17:20:01 -0400 (EDT) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by menubar.gnome.org (Postfix) with ESMTP id 8CE9B3B008D for ; Thu, 17 Aug 2006 17:20:00 -0400 (EDT) Received: from mail-in-11-z2.arcor-so.net (mail-in-11-z2.arcor-online.net [151.189.8.28]) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 0916E17702E for ; Thu, 17 Aug 2006 23:19:59 +0200 (CEST) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mail-in-11-z2.arcor-so.net (Postfix) with ESMTP id E67FC1C71C9 for ; Thu, 17 Aug 2006 23:19:58 +0200 (CEST) Received: from alatau.radix50.net (dslb-088-064-009-120.pools.arcor-ip.net [88.64.9.120]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id 7E7914ABCB1 for ; Thu, 17 Aug 2006 23:19:58 +0200 (CEST) Received: from alatau.radix50.net (localhost [127.0.0.1]) by alatau.radix50.net (8.13.7/8.13.7/Debian-2) with ESMTP id k7HLJvcD005257 for ; Thu, 17 Aug 2006 23:19:57 +0200 Received: (from ibr@localhost) by alatau.radix50.net (8.13.7/8.13.7/Submit) id k7HLJv1D005256 for gtk-list@gnome.org; Thu, 17 Aug 2006 23:19:57 +0200 Date: Thu, 17 Aug 2006 23:19:57 +0200 From: Baurzhan Ismagulov To: gtk-list@gnome.org Subject: Re: Books for Cross compile Libraries Message-ID: <20060817211957.GB3891@radix50.net> References: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1dd596080608170703i1b83068bi824a57c78e439563@mail.gmail.com> User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.205 tagged_above=-999 required=2 tests=[AWL=0.259, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.205 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 21:20:02 -0000 Hello Harsha, On Thu, Aug 17, 2006 at 07:33:21PM +0530, harshavardhanreddy mandeepala wrote: > Is there any book or document on How to crosscompile Libraries. > I want to cross compile Libraries from i386 to ARM11(Which are Needed for > Gtk Application). Googling for "cross compile libraries" finds some general overviews and specific HOWTOs, they may or may not be useful for you. In my experience, if you understand how it is supposed to work, it's better to google for specific problems you encounter, and ask on an appropriate list if that doesn't help. With kind regards, Baurzhan. From sergstesh@yahoo.com Thu Aug 17 18:34:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DCDD03B006B for ; Thu, 17 Aug 2006 18:34:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05859-04 for ; Thu, 17 Aug 2006 18:34:03 -0400 (EDT) Received: from web35214.mail.mud.yahoo.com (web35214.mail.mud.yahoo.com [66.163.179.93]) by menubar.gnome.org (Postfix) with SMTP id 5A47C3B0231 for ; Thu, 17 Aug 2006 18:33:42 -0400 (EDT) Received: (qmail 58942 invoked by uid 60001); 17 Aug 2006 22:33:41 -0000 Message-ID: <20060817223341.58940.qmail@web35214.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35214.mail.mud.yahoo.com via HTTP; Thu, 17 Aug 2006 15:33:41 PDT Date: Thu, 17 Aug 2006 15:33:41 -0700 (PDT) From: Sergei Steshenko Subject: new AppsFromScratch.20060710.20060817.tar.gz release To: gtk-list@gnome.org, gtk-perl-list@gnome.org, wx-users@lists.wxwidgets.org, wxperl-users@lists.sourceforge.net MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.301 tagged_above=-999 required=2 tests=[AWL=-1.673, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_BP=0.077, TW_BW=0.077, TW_BX=0.077, TW_GT=0.077, TW_IB=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -0.301 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 22:34:06 -0000 Hello All, I am pleased to announce new release of AppsFromScratch: http://prdownload.berlios.de/appsfromscratch/AppsFromScratch.20060710.20060817.tar.gz . The homepage: http://appsfromscratch.berlios.de/ . News/Changes: ------------- * Added generation of 'binsh' directories and 'sh' wrappers to simplify end results usage - no manual setting of environment variables is necessary; * Enhanced default target build sub so now it can also build targets not using 'pkg-config' without manual seting of environment variables; * Added optional 'post_sub' which, if present' is executed after the last 'make' target; * Added a number of "low level" targets like 'libjpeg', 'zlib', 'libpng', 'freetype' making default build data sub even less dependent on on libraries installed at system level; * Added a number of targets and updated a number of targets versions; * Updated documentation. Currrently supported targets (libraries and applications): ---------------------------------------------------------- atk-1.12.1 at-spi-1.6.6 audiofile-0.2.6 Cairo-0.92 cairo-1.2.2 diacanvas2-0.14.4 esound-0.2.36 freetype-2.2.1 gail-1.8.11 GConf-2.14.0 glade-2.12.1 Glib-1.120 glib-2.12.2 Gnome2-1.040 Gnome2-Canvas-1.002 Gnome2-Dia-0.04 Gnome2-GConf-1.032 Gnome2-Print-0.951 Gnome2-VFS-1.060 Gnome2-Vte-0.06 Gnome2-Wnck-0.13 gnome-keyring-0.4.9 gnome-vfs-2.14.2 gst-plugins-base-0.10.7 GStreamer-0.09 gstreamer-0.10.8 Gtk2-1.122 gtk+-2.8.20 Gtk2-GladeXML-1.005 Gtk2-Html2-0.04 Gtk2-TrayIcon-0.04 jpegsrc.v6b libart_lgpl-2.3.17 libbonobo-2.14.0 libbonoboui-2.14.0 libglade-2.6.0 libgnome-2.14.1 libgnomecanvas-2.14.0 libgnomeprint-2.12.1 libgnomeprintui-2.12.1 libgnomeui-2.14.1 libgtkhtml-2.6.3 libIDL-0.8.7 liboil-0.3.9 libpng-1.2.12 libwnck-2.14.2 libxml2-2.6.26 ORBit2-2.14.2 pango-1.14.0 tiff-3.8.2 vte-0.12.2 Wx-0.26 wxGTK-2.6.3 wxX11-2.6.3 zlib-1.2.3 . Regards, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From z_b_r@poczta.fm Thu Aug 17 19:16:05 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 59AB73B0091 for ; Thu, 17 Aug 2006 19:16:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07592-08 for ; Thu, 17 Aug 2006 19:16:04 -0400 (EDT) Received: from smtp4.poczta.interia.pl (smtp9.poczta.interia.pl [80.48.65.9]) by menubar.gnome.org (Postfix) with ESMTP id DC74D3B00B0 for ; Thu, 17 Aug 2006 19:16:03 -0400 (EDT) Received: by smtp4.poczta.interia.pl (INTERIA.PL, from userid 502) id 8A92527100D; Fri, 18 Aug 2006 01:16:02 +0200 (CEST) Received: from poczta.interia.pl (f11.poczta.interia.pl [10.217.2.11]) by smtp4.poczta.interia.pl (INTERIA.PL) with ESMTP id 30AF5270FF7 for ; Fri, 18 Aug 2006 01:16:02 +0200 (CEST) Received: by poczta.interia.pl (Postfix, from userid 502) id 98261DACA0; Fri, 18 Aug 2006 01:16:01 +0200 (CEST) Received: from localhost (localhost.interia.pl [127.0.0.1]) by poczta.interia.pl (Postfix) with ESMTP id 70DAADAC95 for ; Fri, 18 Aug 2006 01:16:01 +0200 (CEST) Date: 18 Aug 2006 01:16:01 +0200 From: hm Subject: Simple (?) question about GtkLabel To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=ISO-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE X-ORIGINATE-IP: 213.199.194.1 IMPORTANCE: Normal X-MSMAIL-PRIORITY: Normal X-PRIORITY: 3 X-Mailer: PSE3 Message-Id: <20060817231601.70DAADAC95@poczta.interia.pl> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.266 tagged_above=-999 required=2 tests=[AWL=-2.863, BAYES_50=0.001, BLANK_LINES_70_80=1.805, MISSING_MIMEOLE=1.612, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: 2.266 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 23:16:05 -0000 =0AHi !=0A=0A Is it possible to stretch text in gtk label to fill all par= rent space, that is given for GtkLabel ? I mean.. let`s say we`ve got a ta= ble. Let`s place GtkLabel in one of the cells. Now.. Let`s say, that window= is now maximized, and text insie gtklabel is something short, like : "ABC"= . Normally , text will appear centered, right, or left - justified. I would= like it to be centered, but displayed through all width of window space , = that is given to gtklabel.=0A=0A[ abc ] - Normally it is so.= ..=0A=0A[ a b c ] - .. and I would like it to be like this=0A= =0A=0A=0A=0A=0A=0A=0A From mclasen@redhat.com Fri Aug 18 00:59:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 474763B0094; Fri, 18 Aug 2006 00:59:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18943-07; Fri, 18 Aug 2006 00:59:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 9F5EB3B0014; Fri, 18 Aug 2006 00:59:28 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7I4xSG4017306; Fri, 18 Aug 2006 00:59:28 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7I4xS8T006842; Fri, 18 Aug 2006 00:59:28 -0400 Received: from [172.16.80.24] (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k7I4xR1V015345; Fri, 18 Aug 2006 00:59:27 -0400 Subject: GTK+ 2.10.2 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Fri, 18 Aug 2006 00:59:26 -0400 Message-Id: <1155877167.4806.5.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.91 (2.7.91-5.fc6) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.465 tagged_above=-999 required=2 tests=[AWL=-0.018, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_XT=0.077] X-Spam-Score: -2.465 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 04:59:30 -0000 GTK+ 2.10.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.10/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.10/ gtk+-2.10.2.tar.bz2 md5sum: 9039804dfd115e40a70a6ba096f418a2 gtk+-2.10.2.tar.gz md5sum: 2a18d8b4c7c19cd2417d6e778b1738f0 This is a bug fix release and is source and binary compatible with 2.10.0. What is GTK+ ============ GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. GTK+ has been designed from the ground up to support a range of languages, not only C/C++. Using GTK+ from languages such as Perl and Python (especially in combination with the Glade GUI builder) provides an effective method of rapid application development. GTK+ is free software and part of the GNU Project. However, the licensing terms for GTK+, the GNU LGPL, allow it to be used by all developers, including those developing proprietary software, without any license fees or royalties. Where to get more information about GTK+ ======================================== Information about GTK+ including links to documentation can be found at: http://www.gtk.org/ An installation guide for GTK+ 2.10 is found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.0/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.10.1 to 2.10.2 ============================================== * Many fixes and improvements for the OS X backend * Revert to using gtk modules with global binding, since the local binding that was introduced in 2.10 breaks the accessibility support of current OpenOffice.org releases. * GtkRecenManager - Poll for changes to the XBEL file - Fix initial bad placement of recent files menu - Show nonexisting resources by default, and do not mark them as insensitive - Allow adding a filter to GtkRecentChooserMenu * GtkFileChooser - Improve the fallbacks for icons - Make / and ~ activate the location entry again * Bugs fixed: 348828 Segmentation Fault in gtk_combo_box_menu_setup when removing combobox child 349552 problem with parsing (enum) style properties 351581 API Documentation issues with 2.15 release 348652 reorder() from ComboBoxEntry produces Gtk+ assert error 349128 Fix docs about GtkTreeModel::row-deleted 350605 Crash caused by the recent menu 348096 GtkStyle leaks GtkRcContext 348145 Background images not working with Quartz backend 329752 Problem with has_selection notification when deleting the selection 347856 gtk_recent_chooser_add_filter not implemented for GtkRecentChooserMenu 348245 Disabling pdf printing doesn't hide option 348278 textview doesn't update on hinting setting change 348289 Filechooser is blocked by higher priority idle 348478 entry completions needs to reset the IM context before emitting action-activate signal 348538 Remove old email addreses from the tutorial 348626 drag-to-child should not work 348634 IconView does not update background 348706 don't allow dnd onto arrows 348740 configure script does not honour PKG_CONFIG variable 348787 Segfault in gtk_font_button_update_font_info() 348824 test attached calendar-sane-timer patch in head 348971 gtk_status_icon_get_geometry returns bogus data 349382 valgrind uninitialized memory warnings setting partly uninitialized X properties 349570 notebook arrow PRELIGHT drawing doesn't work 349834 Memleak from gtk_tree_view_set_enable_tree_lines 349858 Leak of ShmPixmapInfo from get_shm_pixmap_for_image 349859 gtk_paint_tab doesn't work when widget is now option menu 349997 Indirect leak from XkbGetMap 350039 GtkFileChooserEntry leaks sources 350050 GdkGC leak from GtkRuler 350139 Should use evince preview mode 350258 Memory leak in gtk_entry_drag_data_received() 350329 The CUPS printer backend in GTK+-2.10.1 fails with CUPS 1.1. 350517 reset_style_idle() interferes with application idles 350860 Balloon messages sent to tray do not have the correct window in XEvent 350938 TreeViewColumn rendering off when "spacing" property set 351112 gtk_notebook_set_current_page fails when the notebook has not yet been shown 351519 Directfb backend fails to build 165714 GtkEntryCompletion doesn't complete on paste 168737 Different button sizes in About dialogs 345666 The icons of file, directory and device at GtkFileChooser 349429 spin button does not use correct value for inner_border 349501 fix in the documentation of function gtk_list_store_insert_with_values() 350072 stdout output from colorselection 351759 Wrong range value in documentation of gtk_color_selection_set_current_alpha 349277 Wrong message for problems with serializing texts 346800 Rework sort/filter models to use indices to parents instead of pointers 349120 Small error in doc 350911 gdk_pixbuf_new_from_file_at_scale() should skip when there's enough image data 348728 GtkTable Row and Column Spacing 351241 swapped argument description 350023 "Running GTK+ Applications" chapter does not document new GTK_DEBUG possibilities 351812 file print backend filename encoding issue * New and updated translations (bg,bn_IN,de,dz,el,es, et,eu,fi,gu,hu,ko,ku,ja,lt,mk,ml,nb,ne,nl,or,pl,po, sv,th,tr,tt,uk,zh_HK,zh_TW) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=348096,348145,349552,348652,348278,348478,348538,348706,348626,348740,348787,348824,349834,349859,349997,350605,350258,348828,347856,349382,249285,349570,349277,350072,349501,350329,350139,349858,350050,345666,350517,350039,349429,168737,351519,351581,346800,350938,351112,165714,348634,349128,329752,348245,351759,348971,348289,350860,350911,349120,349367,351241,350023,348728,351812 Thanks to all contributors: Chris Wilson, Willie Walker, Richard Hult, Tommi Komulainen, Emmanuele Bassi, Erik van Pienbroek, Michael Emmel, Michael Natterer, Patrick K. O'Brian, Behdad Esfahbod, Nguyen Thai Ngoc Duy, Christian Persch, Owen Taylor, Benjamin Otte, Jeremy Lainé, Leonardo Boshell, Federico Mena Quintero, Michael Meeks,Wouter Bolsterlee, Colin Leroy, Rolando Espinoza La Fuente, Rod Butcher, David Baron, Iago Rubio, Carlos GUSLiBu, Carlos Garcia Campos, Kazuki Iwamoto, Søren Sandmann, Benjamin Berg, Kristian Rietveld, Brian Cameron, Jonathan Matthew, Peter Johanson, Thomas Rydzynski, Benedikt Meurer, Paolo Borelli, Don Scorgie, Tor Lillqvist, Tim Janik, Yevgen Muntyan, Vincent Untz, Christian Neumair, Don Anderson, Étienne Bersac, Mart Raudsepp Matthias Clasen August 18, 2006 From tml@iki.fi Fri Aug 18 04:35:12 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 54A253B011B for ; Fri, 18 Aug 2006 04:35:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27522-07 for ; Fri, 18 Aug 2006 04:35:10 -0400 (EDT) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by menubar.gnome.org (Postfix) with ESMTP id E500C3B010D for ; Fri, 18 Aug 2006 04:35:05 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 0A8542167FA; Fri, 18 Aug 2006 11:35:02 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17637.31669.506000.653436@gargle.gargle.HOWL> Date: Fri, 18 Aug 2006 11:35:01 +0300 To: gtk-list@gnome.org Subject: Re: How to port a GTK project to Win32 platform? In-Reply-To: <000b01c6c29f$d3744980$4da9e29f@CYGNUS> References: <5810799.post@talk.nabble.com> <17633.36686.700000.142615@gargle.gargle.HOWL> <002301c6c0dd$b605d9e0$4da9e29f@CYGNUS> <17634.56474.231000.931060@gargle.gargle.HOWL> <000b01c6c29f$d3744980$4da9e29f@CYGNUS> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: Cc: Mason X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 08:35:12 -0000 (I repeat: Don't reply to me personally, but to the mailing list where the discussion started, thanks. Yes, this is important.) Mason writes: > I have downloaded some of the packages from the ftp.gtk.org site, > however, I still don't know how to compile and install them on my > windows XP system. Well, you have lots to learn then. You seem very confused at least judging by your choice of words. Surely you don't intend to compile GTK+ from source? > Is there a tutorial or something similar that I can follow? Did you read the documents that you were pointed to in the first reply? > I am a newbie to Linux and I have minimal experience handling the > various libs. Hmm. How come you are programming with GTK then? When you say "handling the various libs", what do you mean exactly? That you have experience "handling" other libraries, but not GTK? Or have never used any third-party libraries at all? Have you ever used "command-line" tools at all? --tml From kyndig@gmail.com Fri Aug 18 15:53:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 510C53B00B5 for ; Fri, 18 Aug 2006 15:53:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27482-04 for ; Fri, 18 Aug 2006 15:53:07 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by menubar.gnome.org (Postfix) with ESMTP id 4D5383B0093 for ; Fri, 18 Aug 2006 15:53:07 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1097748wxd for ; Fri, 18 Aug 2006 12:53:07 -0700 (PDT) Received: by 10.70.29.14 with SMTP id c14mr5341784wxc; Fri, 18 Aug 2006 12:53:06 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Fri, 18 Aug 2006 12:53:06 -0700 (PDT) Message-ID: Date: Fri, 18 Aug 2006 15:53:06 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: pango on MAC OS X MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_10638_2817337.1155930786041" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.363 tagged_above=-999 required=2 tests=[AWL=-0.315, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -1.363 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 19:53:10 -0000 ------=_Part_10638_2817337.1155930786041 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I'm trying to figure out why my software on MAC OS X only displays squares instead of fonts. So I'm using CVS pango and running into problems getting it to compile. Initially it was looking for a gnome-automake.sh, so I manually ran the autoconf,automake to create the configure script. I then had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to an outdated MAC autoconf system ] I've finally managed to get pango to compile but am having linking difficulties. the pkg-config didn't run as expected during configure, so I hand modified several of the Makefiles. The final linking error I am having is: make[4]: Nothing to be done for `all'. /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib -L/GTK/lib/glib-2.0 ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz /GTK/lib/libgobject-2.0.dylib /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib /usr/bin/ld: Undefined symbols: _g_module_close _g_module_error _g_module_open _g_module_symbol collect2: ld returned 1 exit status make[4]: *** [pango-querymodules] Error 1 make[3]: *** [all-recursive] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 ================ Does anyone know what lib I am missing to handle those symbols? Thank you, Calvin PS: If anyone has succesfully ported their GTK project to the native pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - howtos - or software usage examples ------=_Part_10638_2817337.1155930786041 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I'm trying to figure out why my software on MAC OS X only displays squares instead of fonts. So I'm using CVS pango and running into problems getting it to compile. Initially it was looking for a gnome-automake.sh, so I manually ran the autoconf,automake to create the configure script. I then had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to an outdated MAC autoconf system ]

I've finally managed to get pango to compile but am having linking difficulties. the pkg-config didn't run as expected during configure, so I hand modified several of the Makefiles. The final linking error I am having is:
make[4]: Nothing to be done for `all'.
/bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -L/GTK/lib -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o pango-querymodules  querymodules.o   libpangoft2-1.0.la  libpango-1.0.la 
gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o  -L/GTK/lib -L/GTK/lib/glib-2.0 ./.libs/libpangoft2-1.0.0.1.14.dylib /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz /GTK/lib/libgobject-2.0.dylib /GTK/lib/libglib- 2.0.dylib /GTK/lib/libintl.dylib /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib
/usr/bin/ld: Undefined symbols:
_g_module_close
_g_module_error
_g_module_open
_g_module_symbol
collect2: ld returned 1 exit status
make[4]: *** [pango-querymodules] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
================
Does anyone know what lib I am missing to handle those symbols?

Thank you,
Calvin

PS: If anyone has succesfully ported their GTK project to the native pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - howtos - or software usage examples

------=_Part_10638_2817337.1155930786041-- From sergstesh@yahoo.com Fri Aug 18 16:00:20 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 20D0A3B01C4 for ; Fri, 18 Aug 2006 16:00:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27631-09 for ; Fri, 18 Aug 2006 16:00:18 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 6E9DF3B0248 for ; Fri, 18 Aug 2006 16:00:07 -0400 (EDT) Received: (qmail 84624 invoked by uid 60001); 18 Aug 2006 20:00:06 -0000 Message-ID: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.145.20] by web35213.mail.mud.yahoo.com via HTTP; Fri, 18 Aug 2006 13:00:06 PDT Date: Fri, 18 Aug 2006 13:00:06 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango on MAC OS X To: Calvin Ellis , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.551 tagged_above=-999 required=2 tests=[AWL=-1.384, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.551 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 20:00:20 -0000 --- Calvin Ellis wrote: > I'm trying to figure out why my software on MAC OS X only displays squares > instead of fonts. So I'm using CVS pango and running into problems getting > it to compile. Initially it was looking for a gnome-automake.sh, so I > manually ran the autoconf,automake to create the configure script. I then > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to > an outdated MAC autoconf system ] > > I've finally managed to get pango to compile but am having linking > difficulties. the pkg-config didn't run as expected during configure, so I > hand modified several of the Makefiles. The final linking error I am having > is: > make[4]: Nothing to be done for `all'. > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > -L/GTK/lib/glib-2.0 > ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > /GTK/lib/libgobject-2.0.dylib > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > /usr/bin/ld: Undefined symbols: > _g_module_close > _g_module_error > _g_module_open > _g_module_symbol > collect2: ld returned 1 exit status > make[4]: *** [pango-querymodules] Error 1 > make[3]: *** [all-recursive] Error 1 > make[2]: *** [all] Error 2 > make[1]: *** [all-recursive] Error 1 > make: *** [all] Error 2 > ================ > Does anyone know what lib I am missing to handle those symbols? > > Thank you, > Calvin > > PS: If anyone has succesfully ported their GTK project to the native > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs - > howtos - or software usage examples > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool (see signature), though I never had a chance to run it on MacOS. On the other had, I did nothing to make it Linux or Solaris-specific, so maybe it will also work on MacOS. My tool builds released (not CVS) versions. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From kyndig@gmail.com Sat Aug 19 18:44:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 981DD3B00E3 for ; Sat, 19 Aug 2006 18:44:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22889-01 for ; Sat, 19 Aug 2006 18:44:40 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by menubar.gnome.org (Postfix) with ESMTP id 5CBB53B0003 for ; Sat, 19 Aug 2006 18:44:40 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1535781wxd for ; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Received: by 10.70.13.1 with SMTP id 1mr7107180wxm; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Sat, 19 Aug 2006 15:44:39 -0700 (PDT) Message-ID: Date: Sat, 19 Aug 2006 18:44:39 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: pango on MAC OS X In-Reply-To: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23301_5220546.1156027479833" References: <20060818200006.84622.qmail@web35213.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.992 tagged_above=-999 required=2 tests=[AWL=0.330, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.992 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 22:44:43 -0000 ------=_Part_23301_5220546.1156027479833 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks Sergei - What finally got it working was the GTK MAC OSX "build-gtk.sh" script from their website. I did a full OS reload with a vanilla MAC OS X and made sure X11 wasn't installed. I then ran the build-gtk.sh script to build the devel env. I compiled my software and it worked directly out of the box =) It's a little sluggish - nowhere near as fast in buffering as the X11 version for MAC OS X, but I'm going to stick with this release and keep an eye out for specific MAC updates. Thanks all for the help and pointers. For those looking to develop their MAC OS X, gtk+ software - the only thing you need is: http://developer.imendio.com/projects/gtk-macosx/build-instructions Once you run the: build-gtk.sh bootstrap - make sure you move all your: /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do the same for /usr/share/aclo* /usr/share/autom* directories - as the prescense of these files will confuse the cairo/glib build process. Calvin On 8/18/06, Sergei Steshenko wrote: > > > > --- Calvin Ellis wrote: > > > I'm trying to figure out why my software on MAC OS X only displays > squares > > instead of fonts. So I'm using CVS pango and running into problems > getting > > it to compile. Initially it was looking for a gnome-automake.sh, so I > > manually ran the autoconf,automake to create the configure script. I > then > > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due > to > > an outdated MAC autoconf system ] > > > > I've finally managed to get pango to compile but am having linking > > difficulties. the pkg-config didn't run as expected during configure, so > I > > hand modified several of the Makefiles. The final linking error I am > having > > is: > > make[4]: Nothing to be done for `all'. > > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > > -L/GTK/lib/glib-2.0 > > ./.libs/libpangoft2-1.0.0.1.14.dylib > /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > > /GTK/lib/libgobject-2.0.dylib > > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > > /usr/bin/ld: Undefined symbols: > > _g_module_close > > _g_module_error > > _g_module_open > > _g_module_symbol > > collect2: ld returned 1 exit status > > make[4]: *** [pango-querymodules] Error 1 > > make[3]: *** [all-recursive] Error 1 > > make[2]: *** [all] Error 2 > > make[1]: *** [all-recursive] Error 1 > > make: *** [all] Error 2 > > ================ > > Does anyone know what lib I am missing to handle those symbols? > > > > Thank you, > > Calvin > > > > PS: If anyone has succesfully ported their GTK project to the native > > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - > docs - > > howtos - or software usage examples > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > Try my tool (see signature), though I never had a chance to run it > on MacOS. > > On the other had, I did nothing to make it Linux or Solaris-specific, > so maybe it will also work on MacOS. > > My tool builds released (not CVS) versions. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > ------=_Part_23301_5220546.1156027479833 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks Sergei -

What finally got it working was the GTK MAC OSX "build-gtk.sh" script from their website. I did a full OS reload with a vanilla MAC OS X and made sure X11 wasn't installed. I then ran the build-gtk.sh script to build the devel env. I compiled my software and it worked directly out of the box =)

It's a little sluggish - nowhere near as fast in buffering as the X11 version for MAC OS X, but I'm going to stick with this release and keep an eye out for specific MAC updates.

Thanks all for the help and pointers.

For those looking to develop their MAC OS X, gtk+ software - the only thing you need is:
http://developer.imendio.com/projects/gtk-macosx/build-instructions
Once you run the: build-gtk.sh bootstrap - make sure you move all your: /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do the same for /usr/share/aclo* /usr/share/autom* directories - as the prescense of these files will confuse the cairo/glib build process.

Calvin


On 8/18/06, Sergei Steshenko <sergstesh@yahoo.com> wrote:


--- Calvin Ellis <kyndig@gmail.com> wrote:

> I'm trying to figure out why my software on MAC OS X only displays squares
> instead of fonts. So I'm using CVS pango and running into problems getting
> it to compile. Initially it was looking for a gnome-automake.sh, so I
> manually ran the autoconf,automake to create the configure script. I then
> had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due to
> an outdated MAC autoconf system ]
>
> I've finally managed to get pango to compile but am having linking
> difficulties. the pkg-config didn't run as expected during configure, so I
> hand modified several of the Makefiles. The final linking error I am having
> is:
> make[4]: Nothing to be done for `all'.
> /bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -L/GTK/lib
> -L/GTK/lib/glib- 2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o
> pango-querymodules  querymodules.o   libpangoft2-1.0.la  libpango-1.0.la
> gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o  -L/GTK/lib
> -L/GTK/lib/glib-2.0
> ./.libs/libpangoft2-1.0.0.1.14.dylib/Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango-
> 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm
> /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib
> /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz
> /GTK/lib/libgobject-2.0.dylib
> /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib
> /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib
> /usr/bin/ld: Undefined symbols:
> _g_module_close
> _g_module_error
> _g_module_open
> _g_module_symbol
> collect2: ld returned 1 exit status
> make[4]: *** [pango-querymodules] Error 1
> make[3]: *** [all-recursive] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
> ================
> Does anyone know what lib I am missing to handle those symbols?
>
> Thank you,
> Calvin
>
> PS: If anyone has succesfully ported their GTK project to the native
> pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - docs -
> howtos - or software usage examples
> > _______________________________________________
> gtk-list mailing list
> gtk-list@gnome.org
> http://mail.gnome.org/mailman/listinfo/gtk-list
>

Try my tool (see signature), though I never had a chance to run it
on MacOS.

On the other had, I did nothing to make it Linux or Solaris-specific,
so maybe it will also work on MacOS.

My tool builds released (not CVS) versions.

--Sergei.

Applications From Scratch: http://appsfromscratch.berlios.de/

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

------=_Part_23301_5220546.1156027479833-- From sergstesh@yahoo.com Sat Aug 19 19:52:25 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AE10E3B0098 for ; Sat, 19 Aug 2006 19:52:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24793-02 for ; Sat, 19 Aug 2006 19:51:52 -0400 (EDT) Received: from web35215.mail.mud.yahoo.com (web35215.mail.mud.yahoo.com [66.163.179.94]) by menubar.gnome.org (Postfix) with SMTP id 69A603B00E3 for ; Sat, 19 Aug 2006 19:51:41 -0400 (EDT) Received: (qmail 91647 invoked by uid 60001); 19 Aug 2006 23:51:40 -0000 Message-ID: <20060819235140.91645.qmail@web35215.mail.mud.yahoo.com> Received: from [84.94.133.55] by web35215.mail.mud.yahoo.com via HTTP; Sat, 19 Aug 2006 16:51:40 PDT Date: Sat, 19 Aug 2006 16:51:40 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango on MAC OS X To: Calvin Ellis , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.91 tagged_above=-999 required=2 tests=[AWL=-0.077, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_AQ=0.077, TW_GT=0.077, TW_QN=0.077] X-Spam-Score: 0.91 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 23:52:25 -0000 --- Calvin Ellis wrote: > Thanks Sergei - > > What finally got it working was the GTK MAC OSX "build-gtk.sh" script from > their website. I did a full OS reload with a vanilla MAC OS X and made sure > X11 wasn't installed. I then ran the build-gtk.sh script to build the devel > env. I compiled my software and it worked directly out of the box =) > > It's a little sluggish - nowhere near as fast in buffering as the X11 > version for MAC OS X, but I'm going to stick with this release and keep an > eye out for specific MAC updates. > > Thanks all for the help and pointers. > > For those looking to develop their MAC OS X, gtk+ software - the only thing > you need is: > http://developer.imendio.com/projects/gtk-macosx/build-instructions > Once you run the: build-gtk.sh bootstrap - make sure you move all your: > /usr/bin/automake* /usr/bin/autoco* files to some other backup directory. Do > the same for /usr/share/aclo* /usr/share/autom* directories - as the > prescense of these files will confuse the cairo/glib build process. > > Calvin > > > On 8/18/06, Sergei Steshenko wrote: > > > > > > > > --- Calvin Ellis wrote: > > > > > I'm trying to figure out why my software on MAC OS X only displays > > squares > > > instead of fonts. So I'm using CVS pango and running into problems > > getting > > > it to compile. Initially it was looking for a gnome-automake.sh, so I > > > manually ran the autoconf,automake to create the configure script. I > > then > > > had to edit the configure.in to remove: PKG_CHECK_MODULES [ probably due > > to > > > an outdated MAC autoconf system ] > > > > > > I've finally managed to get pango to compile but am having linking > > > difficulties. the pkg-config didn't run as expected during configure, so > > I > > > hand modified several of the Makefiles. The final linking error I am > > having > > > is: > > > make[4]: Nothing to be done for `all'. > > > /bin/sh ../libtool --mode=link gcc -g -O2 -Wall -L/GTK/lib > > > -L/GTK/lib/glib-2.0 -lcairo -lgobject-2.0 -lglib-2.0 -lintl -liconv -o > > > pango-querymodules querymodules.o libpangoft2-1.0.la libpango-1.0.la > > > gcc -g -O2 -Wall -o .libs/pango-querymodules querymodules.o -L/GTK/lib > > > -L/GTK/lib/glib-2.0 > > > ./.libs/libpangoft2-1.0.0.1.14.dylib > > /Users/kyndig/Desktop/gtk/pangoAug18/pango/.libs/libpango- > > > 1.0.0.1.14.dylib ./.libs/libpango-1.0.0.1.14.dylib -lm > > > /GTK/lib/libcairo.2.9.1.dylib /GTK/lib/libfontconfig.dylib > > > /GTK/lib/libfreetype.dylib /GTK/lib/libexpat.1.5.0.dylib -lpng12 -lz > > > /GTK/lib/libgobject-2.0.dylib > > > /GTK/lib/libglib-2.0.dylib/GTK/lib/libintl.dylib > > > /usr/lib/libiconv.dylib -lc /GTK/lib/libiconv.dylib > > > /usr/bin/ld: Undefined symbols: > > > _g_module_close > > > _g_module_error > > > _g_module_open > > > _g_module_symbol > > > collect2: ld returned 1 exit status > > > make[4]: *** [pango-querymodules] Error 1 > > > make[3]: *** [all-recursive] Error 1 > > > make[2]: *** [all] Error 2 > > > make[1]: *** [all-recursive] Error 1 > > > make: *** [all] Error 2 > > > ================ > > > Does anyone know what lib I am missing to handle those symbols? > > > > > > Thank you, > > > Calvin > > > > > > PS: If anyone has succesfully ported their GTK project to the native > > > pango/cairo/gtk MAC OS X, I'd be highly interested in any pointers - > > docs - > > > howtos - or software usage examples > > > > _______________________________________________ > > > gtk-list mailing list > > > gtk-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > > > Try my tool (see signature), though I never had a chance to run it > > on MacOS. > > > > On the other had, I did nothing to make it Linux or Solaris-specific, > > so maybe it will also work on MacOS. > > > > My tool builds released (not CVS) versions. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam protection around > > http://mail.yahoo.com > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Well, if you ever have some time aqnd disk space, I'd appreciate if you tried my tool anyway, just try it as /build.pl 1>build.log 2>&1 & (assuming you have sh/bash оor similar). The tool builds and installs everything locally, i.e. when invoked the above way it'll build everything under /build/ and install everything under /install/. I simply do not haeve access to Mac to try it. Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bounces@nabble.com Sat Aug 19 10:27:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 558693B00BC for ; Sat, 19 Aug 2006 10:27:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01600-05 for ; Sat, 19 Aug 2006 10:27:51 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 4DF1E3B0091 for ; Sat, 19 Aug 2006 10:27:51 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GEQLk-0001Kd-2s for gtk-list@gnome.org; Sat, 19 Aug 2006 05:54:52 -0700 Message-ID: <5884262.post@talk.nabble.com> Date: Sat, 19 Aug 2006 05:54:52 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: how we get pop-up on treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.034 tagged_above=-999 required=2 tests=[AWL=-1.009, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -0.034 X-Spam-Level: X-Mailman-Approved-At: Sun, 20 Aug 2006 08:22:26 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2006 14:27:52 -0000 i have notebook on window in that i have treeview on 1st page. i wnat to get the popup in treeview when we right click in treeview. iam getting this but i have small problem that is iam getting the pop up when i right click on labels of the note book. thanku for reading. sree -- View this message in context: http://www.nabble.com/how-we-get-pop-up-on-treeview-tf2132119.html#a5884262 Sent from the Gtk+ - General forum at Nabble.com. From kyndig@gmail.com Sun Aug 20 13:32:31 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E60023B0071 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17829-09 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id 0658A3B0003 for ; Sun, 20 Aug 2006 13:32:30 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so1792944wxd for ; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Received: by 10.70.118.4 with SMTP id q4mr8206151wxc; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Sun, 20 Aug 2006 10:32:29 -0700 (PDT) Message-ID: Date: Sun, 20 Aug 2006 13:32:29 -0400 From: "Calvin Ellis" To: "mpsuzuki@hiroshima-u.ac.jp" Subject: Re: [gtk-list] pango on MAC OS X In-Reply-To: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_29953_31493096.1156095149506" References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.973 tagged_above=-999 required=2 tests=[AWL=-0.705, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -0.973 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2006 17:32:31 -0000 ------=_Part_29953_31493096.1156095149506 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline That is exactly correct. I was able to get it working, but only with the full gtk env. I tried packaging the software up, and got the same problem. There are no fonts, only square boxes like what your image shows. How did you fix it? Calvin On 8/20/06, mpsuzuki@hiroshima-u.ac.jp wrote: > > Hi, > > On Fri, 18 Aug 2006 15:53:06 -0400 > "Calvin Ellis" wrote: > >I'm trying to figure out why my software on MAC OS X only displays > squares > >instead of fonts. > > You see something like attached "gtk-demo-atsui.gif", > although you want to see "gtk-demo-fontconfig.gif"? > > Regards, > mpsuzuki > > > ------=_Part_29953_31493096.1156095149506 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline That is exactly correct. I was able to get it working, but only with the full gtk env. I tried packaging the software up, and got the same problem. There are no fonts, only square boxes like what your image shows.

How did you fix it?

Calvin

On 8/20/06, mpsuzuki@hiroshima-u.ac.jp <mpsuzuki@hiroshima-u.ac.jp > wrote:
Hi,

On Fri, 18 Aug 2006 15:53:06 -0400
"Calvin Ellis" < kyndig@gmail.com> wrote:
>I'm trying to figure out why my software on MAC OS X only displays squares
>instead of fonts.

You see something like attached "gtk-demo-atsui.gif ",
although you want to see "gtk-demo-fontconfig.gif"?

Regards,
mpsuzuki



------=_Part_29953_31493096.1156095149506-- From mpsuzuki@hiroshima-u.ac.jp Sun Aug 20 21:21:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C99783B03C9 for ; Sun, 20 Aug 2006 21:21:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05288-08 for ; Sun, 20 Aug 2006 21:21:21 -0400 (EDT) Received: from localhost.localnet (unknown [133.41.16.211]) by menubar.gnome.org (Postfix) with SMTP id 6FF713B009E for ; Sun, 20 Aug 2006 21:21:20 -0400 (EDT) Received: (qmail 19480 invoked by alias); 21 Aug 2006 01:20:41 -0000 Received: (qmail 19468 invoked by uid 7791); 21 Aug 2006 01:20:37 -0000 Received: from unknown (HELO centri) (127.0.0.1) by 0 with SMTP; 21 Aug 2006 01:20:37 -0000 Date: Mon, 21 Aug 2006 10:20:37 +0900 From: mpsuzuki@hiroshima-u.ac.jp To: "Calvin Ellis" Subject: Re: [gtk-list] pango on MAC OS X Message-Id: <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> In-Reply-To: References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.193 tagged_above=-999 required=2 tests=[AWL=-1.062, BAYES_00=-2.599, NO_REAL_NAME=0.961, RCVD_IN_WHOIS_BOGONS=2.43, TW_GT=0.077] X-Spam-Score: -0.193 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 01:21:26 -0000 Hi, On Sun, 20 Aug 2006 13:32:29 -0400 "Calvin Ellis" wrote: >That is exactly correct. I was able to get it working, but only with the >full gtk env. I tried packaging the software up, and got the same problem. >There are no fonts, only square boxes like what your image shows. I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is taken under following conditions: 1. cairo is configured as ATSUI as font/text backend 2. pango is configured to use cairo as font backend 3. pango module configuration file at ${pango_install_prefix}/etc/pango/pango.modules does not exist, or exists but lacks a line to call Pango-ATSUI modules like this: /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \ BasicScriptEngineATSUI \ PangoEngineShape \ PangoRenderATSUI \ armenian:* bopomofo:* cherokee:* coptic:* ... Please execute "pango-querymodules" and check if its output includes pango-basic-atsui.so. If it includes, and your existing pango.modules does not include, please update your pango.modules as: pango-querymodules > ${pango_install_prefix}/etc/pango/pango.modules However, I'm not sure about: pango.modules itself should be included in the software package, or the install executes pango-querymodules during installation procedure. Regards, mpsuzuki P.S. Yet I could not make other pango modules working under ATSUI configuration: I cannot render Arabic, Indic, and CJK scripts at all. From hvreddy1110@gmail.com Mon Aug 21 09:19:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 920003B048A for ; Mon, 21 Aug 2006 09:19:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05072-10 for ; Mon, 21 Aug 2006 09:19:32 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by menubar.gnome.org (Postfix) with ESMTP id 7CAC23B0072 for ; Mon, 21 Aug 2006 09:19:31 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so5658980pye for ; Mon, 21 Aug 2006 06:19:31 -0700 (PDT) Received: by 10.35.22.17 with SMTP id z17mr13271351pyi; Mon, 21 Aug 2006 06:19:31 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Mon, 21 Aug 2006 06:19:30 -0700 (PDT) Message-ID: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> Date: Mon, 21 Aug 2006 18:49:30 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: Xfree86 for IMX31/ARM11 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_64863_3480006.1156166370958" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.229 tagged_above=-999 required=2 tests=[AWL=-1.040, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.229 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 13:19:32 -0000 ------=_Part_64863_3480006.1156166370958 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, Does any body crosscompiled XFree86(Xserver) for ARM processor. If so kindly send the procedure . My host system is i386 linux (SUSE/FC4) Target system is arm (IMX31 freescale processor with ARM11 Core) Thanks in advance. Regards, Harsha ------=_Part_64863_3480006.1156166370958 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All,
Does any body crosscompiled XFree86(Xserver) for ARM processor.
If so kindly send the procedure .
My host system is i386 linux (SUSE/FC4)
Target system is arm (IMX31 freescale processor with ARM11 Core)

Thanks in advance.

Regards,
Harsha ------=_Part_64863_3480006.1156166370958-- From torriem@chem.byu.edu Mon Aug 21 11:02:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 24AB23B0315 for ; Mon, 21 Aug 2006 11:02:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09810-10 for ; Mon, 21 Aug 2006 11:02:32 -0400 (EDT) Received: from mail.chem.byu.edu (mailchem.byu.edu [128.187.3.5]) by menubar.gnome.org (Postfix) with ESMTP id 8EA8A3B030D for ; Mon, 21 Aug 2006 11:02:31 -0400 (EDT) Received: from isengard.chem.byu.edu (isengard.chem.byu.edu [192.168.105.100]) (authenticated bits=0) by mail.chem.byu.edu (8.13.1/8.13.1) with ESMTP id k7LF2TY3002141; Mon, 21 Aug 2006 09:02:29 -0600 Subject: Re: Xfree86 for IMX31/ARM11 From: Michael L Torrie To: harshavardhanreddy mandeepala In-Reply-To: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> References: <1dd596080608210619h1955ccabq2f7d68bb78551c6d@mail.gmail.com> Content-Type: text/plain Date: Mon, 21 Aug 2006 09:02:28 -0600 Message-Id: <1156172549.10833.9.camel@isengard> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (mail.chem.byu.edu [192.168.200.12]); Mon, 21 Aug 2006 09:02:29 -0600 (MDT) X-Scanned-By: MIMEDefang 2.57 on 192.168.200.12 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.497 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599, TW_GT=0.077] X-Spam-Score: -2.497 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 15:02:35 -0000 On Mon, 2006-08-21 at 18:49 +0530, harshavardhanreddy mandeepala wrote: > Hi All, > Does any body crosscompiled XFree86(Xserver) for ARM processor. > If so kindly send the procedure . > My host system is i386 linux (SUSE/FC4) > Target system is arm (IMX31 freescale processor with ARM11 Core) Likely XFree86 is a poor choice for an embedded system. The better choice is the kdrive X server which is very small and works very well for small, arm-based devices. http://kdrive.freedesktop.org/wiki/Software_2fXserver Besides being small, this X serve uses standard autoconf configuration scripts so the source code can easily be built in a cross-compiling environment. The procedure is exactly the same as cross-compiling any application, so you shouldn't have any problems. Unfortunately, because of XFree86's antiquated build system, cross- compiling that beast will be very difficult. If you're determined to use a non-embedded X11 system, you'll likely want to use X.org's X server instead (XFree86 is considered deprecated by most folks) which is modularized and builds using standard autoconf tools, so cross-compiling is relatively easy. Michael > > Thanks in advance. > > Regards, > Harsha > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list From mekstran@scl.ameslab.gov Mon Aug 21 15:20:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A338D3B015F for ; Mon, 21 Aug 2006 15:20:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22718-10 for ; Mon, 21 Aug 2006 15:20:01 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id DC1F23B0549 for ; Mon, 21 Aug 2006 15:20:00 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Mon, 21 Aug 2006 14:19:59 -0500 id 0000C049.44EA075F.000059BF In-Reply-To: <001201c6bfec$397b3240$2f01a8c0@myhome.westell.com> References: <000701c6bfc3$1b487860$2f01a8c0@myhome.westell.com> <71A99DBF-DD4B-4368-8562-58A24A7CC08D@scl.ameslab.gov> <000501c6bfd9$23b4d5a0$2f01a8c0@myhome.westell.com> <001201c6bfec$397b3240$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Ekstrand Subject: Re: variables Date: Mon, 21 Aug 2006 14:19:29 -0500 To: Bill Cunningham X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.493 tagged_above=-999 required=2 tests=[AWL=0.106, BAYES_00=-2.599] X-Spam-Score: -2.493 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 19:20:02 -0000 Sorry for my late reply, I've been out of the office since Tuesday. On Aug 14, 2006, at 4:54 PM, Bill Cunningham wrote: > checking for GLIB - version >= 2.5.7... no > *** Could not run GLIB test program, checking why... > *** The test program compiled, but did not run. This usually means > *** that the run-time linker is not finding GLIB or finding the wrong > *** version of GLIB. If it is not finding GLIB, you'll need to set > your > *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf > to point > *** to the installed location Also, make sure you have run > ldconfig if that > *** is required on your system > *** > *** If you have an old version installed, it is best to remove it, > although > *** you may also be able to get things to work by modifying > LD_LIBRARY_PATH > checking for pkg-config... (cached) /usr/local/bin/pkg-config > checking for GLIB - version >= 2.0.0... no > *** Could not run GLIB test program, checking why... > *** The test program compiled, but did not run. This usually means > *** that the run-time linker is not finding GLIB or finding the wrong > *** version of GLIB. If it is not finding GLIB, you'll need to set > your > *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf > to point > *** to the installed location Also, make sure you have run > ldconfig if that > *** is required on your system > *** > *** If you have an old version installed, it is best to remove it, > although > *** you may also be able to get things to work by modifying > LD_LIBRARY_PATH This output does confirm that it's a shared library location issue. If you haven't gotten this fixed already, set LD_LIBRARY_PATH or edit /etc/ld.so.conf, to include the location of the glib shared library. - Michael From kyndig@gmail.com Mon Aug 21 15:48:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BA89B3B0466 for ; Mon, 21 Aug 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24118-05 for ; Mon, 21 Aug 2006 15:48:18 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by menubar.gnome.org (Postfix) with ESMTP id 85AF33B0550 for ; Mon, 21 Aug 2006 15:48:17 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so2250342wxd for ; Mon, 21 Aug 2006 12:48:17 -0700 (PDT) Received: by 10.70.117.1 with SMTP id p1mr10175390wxc; Mon, 21 Aug 2006 12:48:17 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Mon, 21 Aug 2006 12:48:15 -0700 (PDT) Message-ID: Date: Mon, 21 Aug 2006 15:48:15 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: [gtk-list] pango on MAC OS X In-Reply-To: <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_48599_20177264.1156189695655" References: <20060820185548.24e421b9.mpsuzuki@hiroshima-u.ac.jp> <20060821102037.7e2562e3.mpsuzuki@hiroshima-u.ac.jp> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.796 tagged_above=-999 required=2 tests=[AWL=0.152, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.796 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 19:48:22 -0000 ------=_Part_48599_20177264.1156189695655 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Thank you very much mpsuzuki! That was the perfect hint that put me on the right track to fixing the native port issue. The problem was my pangorc file. I went with the example from Gimp.app - and write a series of scrips to handle a full gtk-mac os x bundled lib with my software [ I like click-n-go ]. But there was one small line missing from my pangorc file: ModulesPath= in pangorc. I just added that and it's working wonderfully now ( without X11 and without any server-wide gtk installed! ) Thank you once more =) I'll distro this software with native gtk to see what kind of feedback I get. Calvin On 8/20/06, mpsuzuki@hiroshima-u.ac.jp wrote: > > Hi, > > On Sun, 20 Aug 2006 13:32:29 -0400 > "Calvin Ellis" wrote: > >That is exactly correct. I was able to get it working, but only with the > >full gtk env. I tried packaging the software up, and got the same > problem. > >There are no fonts, only square boxes like what your image shows. > > I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is > taken under following conditions: > > 1. cairo is configured as ATSUI as font/text backend > > 2. pango is configured to use cairo as font backend > > 3. pango module configuration file at > > ${pango_install_prefix}/etc/pango/pango.modules > > does not exist, or exists but lacks a line to call > Pango-ATSUI modules like this: > > /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \ > BasicScriptEngineATSUI \ > PangoEngineShape \ > PangoRenderATSUI \ > armenian:* bopomofo:* cherokee:* coptic:* ... > > Please execute "pango-querymodules" and check if its output > includes pango-basic-atsui.so. If it includes, and your > existing pango.modules does not include, please update > your pango.modules as: > > pango-querymodules > > ${pango_install_prefix}/etc/pango/pango.modules > > However, I'm not sure about: pango.modules itself should be > included in the software package, or the install executes > pango-querymodules during installation procedure. > > > Regards, > mpsuzuki > > P.S. > Yet I could not make other pango modules working under ATSUI > configuration: I cannot render Arabic, Indic, and CJK scripts > at all. > ------=_Part_48599_20177264.1156189695655 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Thank you very much mpsuzuki! That was the perfect hint that put me on the right track to fixing the native port issue.

The problem was my pangorc file. I went with the example from Gimp.app - and write a series of scrips to handle a full gtk-mac os x bundled lib with my software [ I like click-n-go ]. But there was one small line missing from my pangorc file:

ModulesPath=

in pangorc. I just added that and it's working wonderfully now ( without X11 and without any server-wide gtk installed! )

Thank you once more =) I'll distro this software with native gtk to see what kind of feedback I get.

Calvin

On 8/20/06, mpsuzuki@hiroshima-u.ac.jp <mpsuzuki@hiroshima-u.ac.jp > wrote:
Hi,

On Sun, 20 Aug 2006 13:32:29 -0400
"Calvin Ellis" < kyndig@gmail.com> wrote:
>That is exactly correct. I was able to get it working, but only with the
>full gtk env. I tried packaging the software up, and got the same problem.
>There are no fonts, only square boxes like what your image shows.

I see. My screenshot gtk-demo-atsui.gif ("square boxes" case) is
taken under following conditions:

1. cairo is configured as ATSUI as font/text backend

2. pango is configured to use cairo as font backend

3. pango module configuration file at

        ${pango_install_prefix}/etc/pango/pango.modules

   does not exist, or exists but lacks a line to call
   Pango-ATSUI modules like this:

        /kiyomizu/gtk210/lib/pango/1.5.0/modules/pango-basic-atsui.so \
        BasicScriptEngineATSUI \
        PangoEngineShape \
        PangoRenderATSUI \
        armenian:* bopomofo:* cherokee:* coptic:* ...

Please execute "pango-querymodules" and check if its output
includes pango-basic-atsui.so. If it includes, and your
existing pango.modules does not include, please update
your pango.modules as:

        pango-querymodules > ${pango_install_prefix}/etc/pango/pango.modules

However, I'm not sure about: pango.modules itself should be
included in the software package, or the install executes
pango-querymodules during installation procedure.


Regards,
mpsuzuki

P.S.
Yet I could not make other pango modules working under ATSUI
configuration: I cannot render Arabic, Indic, and CJK scripts
at all.

------=_Part_48599_20177264.1156189695655-- From francisco.moraes@gmail.com Tue Aug 22 08:36:47 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 570AC3B0061 for ; Tue, 22 Aug 2006 08:36:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32623-04 for ; Tue, 22 Aug 2006 08:36:46 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by menubar.gnome.org (Postfix) with ESMTP id 53AB93B002A for ; Tue, 22 Aug 2006 08:36:46 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so6344254pye for ; Tue, 22 Aug 2006 05:36:45 -0700 (PDT) Received: by 10.35.113.12 with SMTP id q12mr15434203pym; Tue, 22 Aug 2006 05:36:45 -0700 (PDT) Received: by 10.35.103.16 with HTTP; Tue, 22 Aug 2006 05:36:40 -0700 (PDT) Message-ID: <13834f7e0608220536q785d96c2n244a695d65317b60@mail.gmail.com> Date: Tue, 22 Aug 2006 08:36:40 -0400 From: "Francisco Moraes" To: paul@linuxaudiosystems.com, gtk-list@gnome.org Subject: Re: GtkPrint PangoLayout extents In-Reply-To: <1155822094.28145.30.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_107255_29778870.1156250200995" References: <13834f7e0608170627h300d3145n4690770b0b10fe2@mail.gmail.com> <1155822094.28145.30.camel@localhost.localdomain> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.631 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -0.631 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2006 12:36:47 -0000 ------=_Part_107255_29778870.1156250200995 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline > > > Is this correct or is there a better way to figure out the text extents > when > > using Pango? > > try using the ink extents variant. That's exactly what I have been using but my experience shows that it seems to be about twice as big in width than I expected: gtk_print_context_create_pango_layout (pc); pango_layout_set_font_description (layout, current_font); pango_layout_set_text (layout, text, -1); pango_layout_context_changed (layout); pango_layout_get_extents (layout, &ink, &log); g_object_unref (layout); return (gdouble)ink.width / PANGO_SCALE; This code above returns widths about twice as expected. Dividing by 2 produces better results that closely resemble what I expected. ------=_Part_107255_29778870.1156250200995 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
> Is this correct or is there a better way to figure out the text extents when
> using Pango?

try using the ink extents variant.

That's exactly what I have been using but my experience shows that it seems to be about twice as big in width than I expected:


gtk_print_context_create_pango_layout (pc);

pango_layout_set_font_description (layout, current_font);
pango_layout_set_text (layout, text, -1);

pango_layout_context_changed (layout);

pango_layout_get_extents (layout, &ink, &log);

g_object_unref (layout);

return (gdouble)ink.width / PANGO_SCALE;

This code above returns widths about twice as expected. Dividing by 2 produces better results that closely resemble what I expected.
------=_Part_107255_29778870.1156250200995-- From lancelot@honeymak.myftp.org Tue Aug 22 11:09:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6D71A3B002A for ; Tue, 22 Aug 2006 11:09:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07921-05 for ; Tue, 22 Aug 2006 11:09:08 -0400 (EDT) Received: from smtp02.net-yan.com (smtp02.hgcbroadband.com [210.0.255.157]) by menubar.gnome.org (Postfix) with ESMTP id D2BE53B009C for ; Tue, 22 Aug 2006 11:09:06 -0400 (EDT) Received: (qmail 51415 invoked from network); 22 Aug 2006 15:09:05 -0000 Received: from unknown (HELO honeymak.myftp.org) (h0n3ym4k@hgcbroadband.com@[203.223.208.251]) (envelope-sender ) by smtp02.net-yan.com (qmail-ldap-1.03) with SMTP for ; 22 Aug 2006 15:09:05 -0000 Received: (qmail 17571 invoked from network); 22 Aug 2006 23:09:04 +0800 Received: from 10.0.0.121 by honeysvr (envelope-from , uid 201) with qmail-scanner-1.25st (clamdscan: 0.88.4/1705. spamassassin: 3.1.3. perlscan: 1.25st. Clear:RC:1(10.0.0.121):. Processed in 0.523968 secs); 22 Aug 2006 15:09:04 -0000 X-Qmail-Scanner-Mail-From: lancelot@honeymak.myftp.org via honeysvr X-Qmail-Scanner: 1.25st (Clear:RC:1(10.0.0.121):. Processed in 0.523968 secs Process 17563) Received: from unknown (HELO ?10.0.0.121?) (10.0.0.121) by 203.223.208.251 with SMTP; 22 Aug 2006 23:09:02 +0800 Message-ID: <44EB1E0E.40103@honeymak.myftp.org> Date: Tue, 22 Aug 2006 23:09:02 +0800 From: Lancelot Mak User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: re: rotate widget / textbox Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.31 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_XT=0.077] X-Spam-Score: -2.31 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2006 15:09:10 -0000 hi, folks i m looking for direction to rotate some text or gtk widget 90 degrees.......which is vertical and the text box and the text inside both go vertical as well i was trying to read API doc about GTK container and textview and some.......but no avail just read docs and know guys are making it an image and then rotate the image but i want the widget rotated rather becoz i want to make it input-able.....not just display-able any directions or guides? thanks a lot experts lancelot From besfahbo@redhat.com Tue Aug 22 23:34:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E17D63B0018; Tue, 22 Aug 2006 23:34:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05867-07; Tue, 22 Aug 2006 23:34:56 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5FABB3B000C; Tue, 22 Aug 2006 23:34:56 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7N3Yu4S021986; Tue, 22 Aug 2006 23:34:56 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7N3Yt30017622; Tue, 22 Aug 2006 23:34:55 -0400 Received: from vpn50-18.rdu.redhat.com (vpn50-18.rdu.redhat.com [172.16.50.18]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k7N3YsCT018863; Tue, 22 Aug 2006 23:34:54 -0400 Subject: Pango-1.14.2 released From: Behdad Esfahbod To: gnome-announce-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-K+ElUpc0nJWxL4Hb65xt" Organization: Red Hat, Inc. Date: Tue, 22 Aug 2006 23:34:53 -0400 Message-Id: <1156304093.12755.10.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 (2.6.3-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 03:34:58 -0000 --=-K+ElUpc0nJWxL4Hb65xt Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.14.2 is now available for download at: http://download.gnome.org/sources/pango/1.14/ or ftp://ftp.gtk.org/pub/pango/1.14 67b68a6b42dce1eb26e2e9abc31192c5 pango-1.14.2.tar.bz2 0981cf2951b18567e875dbc52f85153f pango-1.14.2.tar.gz\ This is a stable release and is source and binary compatible with 1.14.0. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Bugs should be reported to http://bugzilla.gnome.org. Pango 1.14 depends on version 2.10.0 or newer of the GLib library and version 1.2.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.14.1 and 1.14.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Find shaper/font for Private Use and space characters. Part of Bug 145275 =E2=80=93 Font selection for space characters Overview of changes between 1.14.0 and 1.14.1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Increased fontset cache size from 16 to 64. This should make firefox+pango A LOT faster. * Bugs fixed in this release: Bug 352114 =E2=80=93 pango-1.14: generated docs still contain old e= xample code Part of Bug 348825 =E2=80=93 pango should optimize away calls to Fc= FontSort as much as possible Bug 351585 =E2=80=93 API documentation issues with 2.15 release 22 August 2006 Behdad Esfahbod --=-K+ElUpc0nJWxL4Hb65xt Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBE68zcn+4E5dNTERURAtgsAJ9XMEvBHpgVJJDUjTFmUtmWCirfawCfUW5j RpoKm4NdYk3TgkYQHlEzXbs= =nMpK -----END PGP SIGNATURE----- --=-K+ElUpc0nJWxL4Hb65xt-- From jayarajuc@mic.co.in Wed Aug 23 07:41:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB8563B007C for ; Wed, 23 Aug 2006 07:41:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27118-08 for ; Wed, 23 Aug 2006 07:41:02 -0400 (EDT) Received: from ecm.mic.co.in (mail.mic.co.in [220.227.243.139]) by menubar.gnome.org (Postfix) with ESMTP id 9F2733B000C for ; Wed, 23 Aug 2006 07:41:01 -0400 (EDT) Received: from mail.mic.co.in (unknown [192.168.1.8]) by ecm.mic.co.in (Postfix) with ESMTP id 95AFA774C2 for ; Wed, 23 Aug 2006 17:15:29 +0530 (IST) Received: from NMSServer (unknown [192.168.1.227]) by mail.mic.co.in (Postfix) with ESMTP id ADF394804A for ; Wed, 23 Aug 2006 17:08:10 +0530 (IST) Message-ID: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> From: "jayarajuc" To: Subject: how to include gtk header file in gtk. Date: Wed, 23 Aug 2006 16:42:48 +0530 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.3790.1830 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1830 X-MailServ-MailFilter-MailScanner-Information: Please contact the ISP for more information X-MailServ-MailFilter-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-Information: Please contact us for more information X-NetcoreSpam2-MailScanner: Found to be clean X-NetcoreSpam2-MailScanner-SpamCheck: X-MailScanner-From: jayarajuc@mic.co.in X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.077 tagged_above=-999 required=2 tests=[AWL=0.999, BAYES_50=0.001, TW_GT=0.077] X-Spam-Score: 1.077 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 11:41:03 -0000 Hi i am sameer. I am working on a project for banking under linux.(Red Hat Linux 9.0) we are asked to use 1) GTK 2)Mysql I have worked succesfully on mysql,but the problem is with gtk. when writing the program in gtk and trying to compile it is giving error. I am writing the program and the error below. #include int main( int argc,char *argv[] ) { GtkWidget *window; gtk_init (&argc, &argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_widget_show (window); gtk_main (); return 0; } when compilingthe program with the following statement gcc base.c -o base 'pkg-config --cflags --libs gtk+-2.0' i am getting an error unable to include directory 'gtk/gtk.h' . i will be grateful for the solution . thanking you. sameer. ------------------------------------------------------------------------ Confidentiality Notice The information contained in this Electronic Message and any ATTACHMENTs to this message are intended for the EXCLUSIVE USE of the ADDRESSEE(s) and may contain CONFIDENTIAL or PRIVILEGED information. If you are not the intended recipient, please notify the SENDER at MIC or itsupport@mic.co.in immediately and DESTROY all copies of this message and any attachmeents. ------------------------------------------------------------------------ From pjdavis@engineering.uiowa.edu Wed Aug 23 08:04:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D7173B006E for ; Wed, 23 Aug 2006 08:04:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28866-02 for ; Wed, 23 Aug 2006 08:03:59 -0400 (EDT) Received: from smtp.engineering.uiowa.edu (smtp.engineering.uiowa.edu [128.255.18.24]) by menubar.gnome.org (Postfix) with ESMTP id 78D7E3B008A for ; Wed, 23 Aug 2006 08:03:58 -0400 (EDT) Received: from [128.255.23.89] (gooey.ecn.uiowa.edu [128.255.23.89]) (authenticated user=pjdavis bits=0) by server11.icaen.uiowa.edu (8.13.2/smtp-serv-1.7) with ESMTP id k7NC3rDh011001; (envelope-from ) Wed, 23 Aug 2006 07:03:53 -0500 (CDT) Message-ID: <44EC46D6.6090003@engineering.uiowa.edu> Date: Wed, 23 Aug 2006 07:15:18 -0500 From: Paul Davis User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: jayarajuc Subject: Re: how to include gtk header file in gtk. References: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> In-Reply-To: <005f01c6c6a9$4eb05730$e301a8c0@NMSServer> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamav.icaen.uiowa.edu X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.492 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.492 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 12:04:00 -0000 jayarajuc wrote: > when compilingthe program with the following statement > gcc base.c -o base 'pkg-config --cflags --libs gtk+-2.0' > > i am getting an error > Your single quotes should be back ticks. ie: $ gcc test.c -o test `pkg-config --cflags --libs gtk+-2.0` The backtick (`) character is the same key as the tilda key. (Assuming you're sitting in front of an english keyboard. Which I kind of doubt seeing that your email address looks like its from India.) Anyhow, hope that helps. Oh, and as a second thought, if the error your getting is this: test.cc:1:33: error: non_existant_header.h: No such file or directory Something is whack with your gtk installation. Unless of course you also get this error message: Package non_existant_package was not found in the pkg-config search path. Perhaps you should add the directory containing `non_existant_package.pc' to the PKG_CONFIG_PATH environment variable No package 'non_existant_package' found In which case, you probably just don't have gtk installed at all. Which means you should probably install the library before you try and use it in development. (Note: Having the binary libraries installed isn't enough. You need the development headers and the such. On ubuntu, something like: $ sudo apt-get install libgtk+-2.0-dev Should get everything you need installed. ) Cheers, Paul From bounces@nabble.com Wed Aug 23 01:57:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F363B3B00B8 for ; Wed, 23 Aug 2006 01:57:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11277-07 for ; Wed, 23 Aug 2006 01:57:53 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0180C3B0071 for ; Wed, 23 Aug 2006 01:57:53 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GFlkO-000101-Fz for gtk-list@gnome.org; Tue, 22 Aug 2006 22:57:52 -0700 Message-ID: <5938668.post@talk.nabble.com> Date: Tue, 22 Aug 2006 22:57:52 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding Gtkwindows MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.018 tagged_above=-999 required=2 tests=[AWL=-1.034, BAYES_40=-0.185, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_TK=0.077] X-Spam-Score: 0.018 X-Spam-Level: X-Mailman-Approved-At: Wed, 23 Aug 2006 08:39:35 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 05:57:55 -0000 how we can disable close button in windows title bar. thank u,in advance sree -- View this message in context: http://www.nabble.com/regarding-Gtkwindows-tf2150568.html#a5938668 Sent from the Gtk+ - General forum at Nabble.com. From paul@linuxaudiosystems.com Wed Aug 23 11:32:38 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2B0163B008A for ; Wed, 23 Aug 2006 11:32:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07564-08 for ; Wed, 23 Aug 2006 11:32:37 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id EB0D73B0084 for ; Wed, 23 Aug 2006 11:32:36 -0400 (EDT) Received: from dhin ([141.151.59.23]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4G00BFZJ60QDV0@vms044.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 10:32:25 -0500 (CDT) Date: Wed, 23 Aug 2006 11:32:17 -0400 From: Paul Davis Subject: Re: regarding Gtkwindows In-reply-to: <5938668.post@talk.nabble.com> To: cnu_sree Message-id: <1156347137.2174.15.camel@localhost.localdomain> Organization: Linux Audio Systems MIME-version: 1.0 X-Mailer: Evolution 2.0.4 (2.0.4-7) Content-type: text/plain Content-transfer-encoding: 7bit References: <5938668.post@talk.nabble.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599, TW_TK=0.077] X-Spam-Score: -2.507 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: paul@linuxaudiosystems.com List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 15:32:38 -0000 On Tue, 2006-08-22 at 22:57 -0700, cnu_sree wrote: > how we can disable close button in windows title bar. you can't. that is the responsibility of the window manager. your app can, however, ask the WM not to show a close button: some_gtk_window.signal_realize().connect (bind (sigc::ptr_fun (set_decoration), &some_gtk_window, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH))); void set_decoration (Gtk::Window* win, Gdk::WMDecoration decor) { win->get_window()->set_decorations (decor); } note that you cannot call set_decorations() on an unrealized GtkWindow because get_window() will fail. whether or not the WM will honor your request is another story entirely. From jkoshi@yahoo.com Wed Aug 23 19:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 64C873B0074 for ; Wed, 23 Aug 2006 19:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27638-02 for ; Wed, 23 Aug 2006 19:44:03 -0400 (EDT) Received: from web50706.mail.yahoo.com (web50706.mail.yahoo.com [206.190.38.104]) by menubar.gnome.org (Postfix) with SMTP id 73E723B0017 for ; Wed, 23 Aug 2006 19:44:03 -0400 (EDT) Received: (qmail 21922 invoked by uid 60001); 23 Aug 2006 23:44:02 -0000 Message-ID: <20060823234402.21920.qmail@web50706.mail.yahoo.com> Received: from [24.5.217.205] by web50706.mail.yahoo.com via HTTP; Wed, 23 Aug 2006 16:44:02 PDT Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) From: John Koshi Subject: Question on gtk library dependencies To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.079 tagged_above=-999 required=2 tests=[AWL=-1.245, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 2.079 X-Spam-Level: ** X-Spam-Flag: YES X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2006 23:44:04 -0000 Hello, Sorry about the long-winded explanation below, but it gives a clear picture about a concern I have. I was building a simple gtk application for ipaq h6300 under Familiar 0.8.4 , and had to do the following: 1) Install gtk+-dev_2.6.7-r1_arm.ipk 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk 3) Install pango-dev_1.8.1-r2_arm.ipk 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk I had to fix some of the sym links, provide the linker with the library path, and then the build worked and tested OK. I later tried to install the "Roadmap" application, from http://sourceforge.net/projects/roadmap/ (the package is roadmap_1.0.12_arm.ipk). For it's dependencies, I had to install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. The remaining dependency for Roadmap to install correctly is libgtk2.0-0. Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 is already present. Will there be a conflict if I now get the package libgtk2.0-0 from Familiar? My concern is that libgtk2.0-0 and it's several dependencies (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all appear to be earlier versions than what I now have installed on my ipaq, and I may end with a mess if I do install it. Thanks in advance for your help. regards, John From torresmat@gmail.com Wed Aug 23 21:09:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D3B203B006E for ; Wed, 23 Aug 2006 21:09:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30546-03 for ; Wed, 23 Aug 2006 21:09:55 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by menubar.gnome.org (Postfix) with ESMTP id A70623B0074 for ; Wed, 23 Aug 2006 21:09:54 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so406354wxd for ; Wed, 23 Aug 2006 18:09:54 -0700 (PDT) Received: by 10.70.21.8 with SMTP id 8mr1557653wxu; Wed, 23 Aug 2006 18:09:54 -0700 (PDT) Received: from ?192.168.0.2? ( [201.255.75.81]) by mx.gmail.com with ESMTP id i17sm1029925wxd.2006.08.23.18.09.52; Wed, 23 Aug 2006 18:09:53 -0700 (PDT) Message-ID: <44ECFC5D.2060001@gmail.com> Date: Wed, 23 Aug 2006 22:09:49 -0300 From: Matias Torres User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Cross Compiling GTK+ (almost, i hope) Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.061 tagged_above=-999 required=2 tests=[AWL=-0.972, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_10_20=1.351, HTML_MESSAGE=0.001, HTML_TITLE_EMPTY=0.214, MIME_HTML_ONLY=0.001, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001, TW_BJ=0.077, TW_BP=0.077, TW_GT=0.077, TW_KG=0.077] X-Spam-Score: 0.061 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:09:56 -0000 /*
 * Its stronggly recommended to read this mail under some really happy music.
*/

Hi! I'm building an application and I've been trying for days but with no results that may draw a smile in my face.
What I have done so far in favor of the "damn-lost-in-cross-compiling project" is:

- I started reading the docs for cross compiling application that uses gtk provided by gtk.org "Building GTK apps for MS Windows on Linux".

- There where a few problems compiling binutils-whatever, but it finally compile (the problem was "undefined reference to yyparser". The solution? i move to a computer with mandrake 10, install bison and bison-devel (the other one has ubuntu, but could find the devel package) .
After that i was happy, i swear that i could see the light at the end of the.. tunnel (sorry, i'm kind of bored at this point) but no, gcc-3.4.2 manage to not compile. The error was that it couldn't find the lib stdio.h (#include <stidio.h>) which.. i don't know what it means yet.

-So.. I download the ubuntu deb packages for mingw32, mingw32-gcc and mingw32-binutils from the repositories and install them. After that i created something like a cross directory in /opt/cross-tools and under the mingw32 directory i unpack every single win32-zip-file i found in ftp://ftp.gtk.org/pub/gtk/v2.8/win32. These zip files are:

atk-1.10.3.zip
atk-dev-1.10.3.zip
cairo-1.2.4.zip
cairo-dev-1.2.4.zip
glib-2.8.6.zip                  (Should it be 2.10?)
glib-dev-2.8.6.zip
gtk+-dev-2.8.20.zip
pango-1.10.3.zip
pango-dev-1.10.3.zip
gtk+-2.8.20.zip

and its dependencies...

fontconfig-2.2.2-20040412.zip
fontconfig-dev-2.2.2-20040412.zip
freetype-2.1.10.zip
gettext-0.14.5.tar.gz
gettext-0.14.5.zip
gettext-dev-0.14.5.zip
libiconv-1.9.1.bin.woe32.zip
libiconv-1.9.1.tar.gz
libpng-1.2.8-bin.zip
pkg-config-0.20.zip
zlib123-dll.zip

Then i modified the prefix line in all pkgconfig files under /opt/cross-tools/mingw32/lib/pkgconfig from prefix=c:/devel/target to prefix=/opt/cross-tools/mingw32.

I used and modified a little script to set the environment variables available in the docs mentioned above:

PREFIX=/opt/cross-tools
TARGET=mingw32
export CC="i586-mingw32msvc-gcc -mms-bitfields"
export CXX="i586-mingw32msvc-g++ -mms-bitfields"
export CFLAGS="-O2 -march=i586 -mms-bitfields"
export CXXFLAGS="-O2 -march=i586 -mms-bitfields"
export PKG_CONFIG_PATH=$PREFIX/$TARGET/lib/pkgconfig
export PATH=$PREFIX/$TARGET/bin:/bin:/usr/bin
export LD_LIBRARY_PATH=$PREFIX/$TARGET/lib
export LDFLAGS=-L$PREFIX/$TARGET/lib
export OBJDUMP=$PREFIX/$TARGET/bin/mingw32-objdump
export HOST_CC=/usr/bin/gcc

Now.. I was ready to compile a simple helloworld application.

So.. i exec this:
i586-mingw32msvc-gcc -o helloworld `pkg-config --libs --cflags gtk+-2.0` helloworld.c
Its answer was:
    
/tmp/ccb35C7l.o:helloworld.c:(.text+0x3f): referencia a `_gtk_init_abi_check' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x4f): referencia a `_gtk_label_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x5f): referencia a `_gtk_frame_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x76): referencia a `_gtk_container_get_type' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x82): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x8b): referencia a `_gtk_container_add' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x98): referencia a `_gtk_window_new' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xaf): referencia a `_gtk_container_get_type' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xbb): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xc4): referencia a `_gtk_container_add' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xdc): referencia a `_gtk_widget_set_size_request' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xea): referencia a `_gtk_widget_show_all' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0xfb): referencia a `_gtk_main_quit' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x10d): referencia a `_g_type_check_instance_cast' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x116): referencia a `_g_signal_connect_data' sin definir
/tmp/ccb35C7l.o:helloworld.c:(.text+0x11e): referencia a `_gtk_main' sin definir


So i exec the following just to ... well....i don't know it may have work!
i586-mingw32msvc-gcc -o helloworld `pkg-config --static --libs --cflags gtk+-2.0` helloworld.c,
And kindly answer this:
/usr/lib/gcc/i586-mingw32msvc/3.4.4/../../../../i586-mingw32msvc/bin/ld: no se puede encontrar -lpng12
collect2: ld returned 1 exit status









From billcu1@verizon.net Wed Aug 23 21:29:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6EE113B0081 for ; Wed, 23 Aug 2006 21:29:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31072-04 for ; Wed, 23 Aug 2006 21:29:33 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 95E683B006E for ; Wed, 23 Aug 2006 21:29:33 -0400 (EDT) Received: from win98 ([151.205.70.148]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4H00B13AT8QGG3@vms044.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 20:29:33 -0500 (CDT) Date: Wed, 23 Aug 2006 21:27:54 -0400 From: "Bill Cunningham" Subject: What next To: Message-id: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.402 tagged_above=-999 required=2 tests=[AWL=-0.506, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.402 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:29:34 -0000 Ok I have successfully installed atk, glib, pkg-config, X, and would like to ask what next to get to gtk? Pango? Should I install Gargnome next? Bill From tml@iki.fi Wed Aug 23 21:32:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CCC483B0092 for ; Wed, 23 Aug 2006 21:32:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-02 for ; Wed, 23 Aug 2006 21:32:51 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id 0FBCF3B006C for ; Wed, 23 Aug 2006 21:32:51 -0400 (EDT) Received: from pettson.tml.iki.fi (CCCLXX.tun.saunalahti.fi [213.169.25.70]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id A91CF139333 for ; Thu, 24 Aug 2006 04:32:48 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17645.440.615000.658694@gargle.gargle.HOWL> Date: Thu, 24 Aug 2006 04:32:40 +0300 To: gtk-list@gnome.org Subject: Re: Cross Compiling GTK+ (almost, i hope) In-Reply-To: <44ECFC5D.2060001@gmail.com> References: <44ECFC5D.2060001@gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.127, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.337 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 01:32:53 -0000 Matias Torres writes: > i unpack every single win32-zip-file i found in > ftp://ftp.gtk.org/pub/gtk/v2.8/win32. You probably want to be using the newest versions of glib 2.12 and pango 1.14 instead. (And gtk+ 2.10 once the next (source) release of that is done, after which I will produce Win32 binaries.) > i586-mingw32msvc-gcc -o helloworld `pkg-config --libs --cflags gtk+-2.0` helloworld.c You should pass the CFLAGS and LIBS separately. CFLAGS goes before the source files, and LIBS goes *after*. With gcc on Linux it doesn't matter, but the order and position of libraries on the command line *does* matter with gcc on Windows. Also with traditional Unix compilers is is important. I would also spell out the .exe. I.e., what you want is: i586-mingw32msvc-gcc -o helloworld.exe `pkg-config --cflags gtk+-2.0` helloworld.c `pkg-config --libs gtk+-2.0` --tml From michael@elehack.net Wed Aug 23 22:35:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1476E3B008D for ; Wed, 23 Aug 2006 22:35:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01075-09 for ; Wed, 23 Aug 2006 22:35:24 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id 3357A3B006C for ; Wed, 23 Aug 2006 22:35:22 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=[192.168.1.100]) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GG53w-00079j-Sb; Wed, 23 Aug 2006 21:35:21 -0500 Subject: Re: What next From: Michael Ekstrand To: Bill Cunningham In-Reply-To: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> References: <000501c6c71c$86c05080$2f01a8c0@myhome.westell.com> Content-Type: text/plain Date: Wed, 23 Aug 2006 21:35:18 -0500 Message-Id: <1156386919.841.0.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.466 tagged_above=-999 required=2 tests=[AWL=0.133, BAYES_00=-2.599] X-Spam-Score: -2.466 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 02:35:26 -0000 On Wed, 2006-08-23 at 21:27 -0400, Bill Cunningham wrote: > Ok I have successfully installed atk, glib, pkg-config, X, and would > like to ask what next to get to gtk? Pango? Should I install Gargnome next? Pango. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From sergstesh@yahoo.com Wed Aug 23 23:30:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D46853B0017 for ; Wed, 23 Aug 2006 23:30:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03153-03 for ; Wed, 23 Aug 2006 23:30:40 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 256543B000A for ; Wed, 23 Aug 2006 23:30:40 -0400 (EDT) Received: (qmail 45705 invoked by uid 60001); 24 Aug 2006 03:30:39 -0000 Message-ID: <20060824033039.45703.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.157.121] by web35203.mail.mud.yahoo.com via HTTP; Wed, 23 Aug 2006 20:30:39 PDT Date: Wed, 23 Aug 2006 20:30:39 -0700 (PDT) From: Sergei Steshenko Subject: Re: What next To: Michael Ekstrand , Bill Cunningham In-Reply-To: <1156386919.841.0.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.544 tagged_above=-999 required=2 tests=[AWL=-1.377, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.544 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:30:43 -0000 --- Michael Ekstrand wrote: > On Wed, 2006-08-23 at 21:27 -0400, Bill Cunningham wrote: > > Ok I have successfully installed atk, glib, pkg-config, X, and would > > like to ask what next to get to gtk? Pango? Should I install Gargnome next? > > Pango. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Bill, if you do not want to use my tool, you can still read the log file: http://appsfromscratch.berlios.de/build.first_run.log.txt . In the log file you can see in which order the libraries are built. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Wed Aug 23 23:36:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C05EF3B011C for ; Wed, 23 Aug 2006 23:36:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03481-02 for ; Wed, 23 Aug 2006 23:36:28 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id BDCC63B019B for ; Wed, 23 Aug 2006 23:36:27 -0400 (EDT) Received: from win98 ([72.64.18.14]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4H00H5QGOCJK12@vms046.mailsrvcs.net> for gtk-list@gnome.org; Wed, 23 Aug 2006 22:36:13 -0500 (CDT) Date: Wed, 23 Aug 2006 23:34:34 -0400 From: "Bill Cunningham" Subject: Re: What next To: "Sergei Steshenko" Message-id: <000a01c6c72e$385ed580$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060824033039.45703.qmail@web35203.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.492 tagged_above=-999 required=2 tests=[AWL=-0.230, BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.492 X-Spam-Level: * Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:36:31 -0000 > > Bill, if you do not want to use my tool, you can still read the log file: > > http://appsfromscratch.berlios.de/build.first_run.log.txt > . > > In the log file you can see in which order the libraries are built. > > --Sergei. > > Applications From Scratch: http://appsfromscratch.berlios.de/ > Running your tool from the sh has proven to be a little difficult for me and I have trouble reading the perl. Bill From sergstesh@yahoo.com Wed Aug 23 23:42:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 03F5A3B006C for ; Wed, 23 Aug 2006 23:42:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03726-02 for ; Wed, 23 Aug 2006 23:42:33 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 7A8E43B000D for ; Wed, 23 Aug 2006 23:42:33 -0400 (EDT) Received: (qmail 68292 invoked by uid 60001); 24 Aug 2006 03:42:33 -0000 Message-ID: <20060824034233.68290.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.157.121] by web35213.mail.mud.yahoo.com via HTTP; Wed, 23 Aug 2006 20:42:33 PDT Date: Wed, 23 Aug 2006 20:42:33 -0700 (PDT) From: Sergei Steshenko Subject: Re: What next To: Bill Cunningham In-Reply-To: <000a01c6c72e$385ed580$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.574 tagged_above=-999 required=2 tests=[AWL=-1.330, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.574 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 03:42:35 -0000 --- Bill Cunningham wrote: > > > > > Bill, if you do not want to use my tool, you can still read the log file: > > > > http://appsfromscratch.berlios.de/build.first_run.log.txt > > . > > > > In the log file you can see in which order the libraries are built. > > > > --Sergei. > > > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > > > Running your tool from the sh has proven to be a little difficult for me > and I have trouble reading the perl. > > Bill > > You haven't published a single error message. NEVER. The log file is in English, not in Perl. This is what simple grep shows: " grep make.log build.first_run.log.txt | grep 'log file will be' build.pl :INFO: 'make' for 'zlib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/zlib-1.2.3/make.log' build.pl :INFO: 'make' for 'freetype' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/freetype-2.2.1/make.log' build.pl :INFO: 'make' for 'libpng' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libpng-1.2.12/make.log' build.pl :INFO: 'make' for 'cairo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/cairo-1.2.2/make.log' build.pl :INFO: 'make' for 'Cairo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Cairo-0.92/make.log' build.pl :INFO: 'make' for 'glib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/glib-2.12.2/make.log' build.pl :INFO: 'make' for 'Glib' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Glib-1.120/make.log' build.pl :INFO: 'make' for 'libxml2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libxml2-2.6.26/make.log' build.pl :INFO: 'make' for 'gstreamer' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gstreamer-0.10.8/make.log' build.pl :INFO: 'make' for 'liboil' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/liboil-0.3.9/make.log' build.pl :INFO: 'make' for 'gst-plugins-base' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gst-plugins-base-0.10.7/make.log' build.pl :INFO: 'make' for 'GStreamer' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/GStreamer-0.09/make.log' build.pl :INFO: 'make' for 'atk' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/atk-1.12.1/make.log' build.pl :INFO: 'make' for 'libjpeg' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/jpegsrc.v6b/make.log' build.pl :INFO: 'make' for 'libtiff' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/tiff-3.8.2/make.log' build.pl :INFO: 'make' for 'pango' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/pango-1.14.0/make.log' build.pl :INFO: 'make' for 'gtk+' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gtk+-2.8.20/make.log' build.pl :INFO: 'make' for 'Gtk2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-1.122/make.log' build.pl :INFO: 'make' for 'libart_lgpl' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libart_lgpl-2.3.17/make.log' build.pl :INFO: 'make' for 'libglade' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libglade-2.6.0/make.log' build.pl :INFO: 'make' for 'libgnomecanvas' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomecanvas-2.14.0/make.log' build.pl :INFO: 'make' for 'Gnome2-Canvas' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Canvas-1.002/make.log' build.pl :INFO: 'make' for 'libIDL' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libIDL-0.8.7/make.log' build.pl :INFO: 'make' for 'ORBit2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/ORBit2-2.14.2/make.log' build.pl :INFO: 'make' for 'GConf' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/GConf-2.14.0/make.log' build.pl :INFO: 'make' for 'libbonobo' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libbonobo-2.14.0/make.log' build.pl :INFO: 'make' for 'gnome-vfs' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gnome-vfs-2.14.2/make.log' build.pl :INFO: 'make' for 'Gnome2-VFS' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-VFS-1.060/make.log' build.pl :INFO: 'make' for 'audiofile' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/audiofile-0.2.6/make.log' build.pl :INFO: 'make' for 'esound' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/esound-0.2.36/make.log' build.pl :INFO: 'make' for 'libgnome' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnome-2.14.1/make.log' build.pl :INFO: 'make' for 'libbonoboui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libbonoboui-2.14.0/make.log' build.pl :INFO: 'make' for 'gnome-keyring' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gnome-keyring-0.4.9/make.log' build.pl :INFO: 'make' for 'libgnomeui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeui-2.14.1/make.log' build.pl :INFO: 'make' for 'Gnome2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-1.040/make.log' build.pl :INFO: 'make' for 'libgnomeprint' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeprint-2.12.1/make.log' build.pl :INFO: 'make' for 'libgnomeprintui' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgnomeprintui-2.12.1/make.log' build.pl :INFO: 'make' for 'Gnome2-Print' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Print-0.951/make.log' build.pl :INFO: 'make' for 'diacanvas2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/diacanvas2-0.14.4/make.log' build.pl :INFO: 'make' for 'Gnome2-Dia' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Dia-0.04/make.log' build.pl :INFO: 'make' for 'Gnome2-GConf' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-GConf-1.032/make.log' build.pl :INFO: 'make' for 'vte' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/vte-0.12.2/make.log' build.pl :INFO: 'make' for 'Gnome2-Vte' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Vte-0.06/make.log' build.pl :INFO: 'make' for 'libwnck' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libwnck-2.14.2/make.log' build.pl :INFO: 'make' for 'Gnome2-Wnck' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gnome2-Wnck-0.13/make.log' build.pl :INFO: 'make' for 'Gtk2-GladeXML' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-GladeXML-1.005/make.log' build.pl :INFO: 'make' for 'gail' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/gail-1.8.11/make.log' build.pl :INFO: 'make' for 'libgtkhtml' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/libgtkhtml-2.6.3/make.log' build.pl :INFO: 'make' for 'Gtk2-Html2' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-Html2-0.04/make.log' build.pl :INFO: 'make' for 'Gtk2-TrayIcon' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-TrayIcon-0.04/make.log' build.pl :INFO: 'make' for 'wxGTK' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/wxGTK-2.6.3/make.log' build.pl :INFO: 'make' for 'Wx' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/Wx-0.26/make.log' build.pl :INFO: 'make' for 'at-spi' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/at-spi-1.6.6/make.log' build.pl :INFO: 'make' for 'glade' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/glade-2.12.1/make.log' build.pl :INFO: 'make' for 'wxX11' target is about to be run, log file will be '/mnt/removable4/sergei/build_work/build/wxX11-2.6.3/make.log' " - that's the order in which you have to build libraries. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From kpalagin@phxint.ru Thu Aug 24 10:11:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A5AE13B006E for ; Thu, 24 Aug 2006 10:11:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29510-10 for ; Thu, 24 Aug 2006 10:11:56 -0400 (EDT) Received: from LEO.phxint.ru (leo.phxint.ru [62.5.246.66]) by menubar.gnome.org (Postfix) with ESMTP id 366523B000F for ; Thu, 24 Aug 2006 10:11:56 -0400 (EDT) Received: from leo.phxint.ru ([172.16.0.16]) by LEO.phxint.ru with Microsoft SMTPSVC(6.0.3790.0); Thu, 24 Aug 2006 18:11:55 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-class: urn:content-classes:message Subject: GTK+ 2.10.x - where do I get Win32 installer? X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Thu, 24 Aug 2006 18:11:53 +0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: GTK+ 2.10.x - where do I get Win32 installer? Thread-Index: AcbHh0A9V0ESTh7IS4i5vlC9EVHPYg== From: "Kirill S. Palagin" To: X-OriginalArrivalTime: 24 Aug 2006 14:11:55.0206 (UTC) FILETIME=[4105F660:01C6C787] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=0.669, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -1.931 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 14:11:57 -0000 Hello. I am trying to find Win32 installer for GTK+ 2.10.x, but can not. It is not at ftp://ftp.gtk.org/pub/gtk/v2.10/win32/ or any of the mirrors. Where can I get it? Thanks. WBR, K. Palagin. From jkoshi@yahoo.com Thu Aug 24 12:07:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A2B013B0104 for ; Thu, 24 Aug 2006 12:07:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03326-04 for ; Thu, 24 Aug 2006 12:07:06 -0400 (EDT) Received: from web50708.mail.yahoo.com (web50708.mail.yahoo.com [206.190.38.106]) by menubar.gnome.org (Postfix) with SMTP id 0D2E93B006E for ; Thu, 24 Aug 2006 12:07:06 -0400 (EDT) Received: (qmail 29261 invoked by uid 60001); 24 Aug 2006 16:07:05 -0000 Message-ID: <20060824160705.29259.qmail@web50708.mail.yahoo.com> Received: from [24.5.217.205] by web50708.mail.yahoo.com via HTTP; Thu, 24 Aug 2006 09:07:05 PDT Date: Thu, 24 Aug 2006 09:07:05 -0700 (PDT) From: John Koshi Subject: Fwd: Question on gtk library dependencies To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.494 tagged_above=-999 required=2 tests=[AWL=0.584, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 1.494 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 16:07:08 -0000 Hi, Does anyone have a quick answer for this question? Thanks --- John Koshi wrote: > Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) > From: John Koshi > Subject: Question on gtk library dependencies > To: gtk-list@gnome.org > > > Hello, > > Sorry about the long-winded explanation below, but it > gives a clear picture about a concern I have. > > I was building a simple gtk application for ipaq h6300 > under Familiar 0.8.4 , and had to do the following: > > 1) Install gtk+-dev_2.6.7-r1_arm.ipk > 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk > 3) Install pango-dev_1.8.1-r2_arm.ipk > 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk > > I had to fix some of the sym links, provide the linker > with the library path, and then the build worked and > tested OK. > > I later tried to install the "Roadmap" application, from > http://sourceforge.net/projects/roadmap/ (the package is > roadmap_1.0.12_arm.ipk). For it's dependencies, I had to > install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. > > The remaining dependency for Roadmap to install correctly > is libgtk2.0-0. > > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > is already present. Will there be a conflict if I now get > the package libgtk2.0-0 from Familiar? > > My concern is that libgtk2.0-0 and it's several dependencies > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > appear to be earlier versions than what I now have installed > on my ipaq, and I may end with a mess if I do install it. > > Thanks in advance for your help. > > regards, > John > > From mekstran@scl.ameslab.gov Thu Aug 24 12:38:32 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E0393B006E for ; Thu, 24 Aug 2006 12:38:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04901-01 for ; Thu, 24 Aug 2006 12:38:32 -0400 (EDT) Received: from mail.scl.ameslab.gov (mail.scl.ameslab.gov [147.155.137.19]) by menubar.gnome.org (Postfix) with ESMTP id C2A363B000F for ; Thu, 24 Aug 2006 12:38:31 -0400 (EDT) Received: from [147.155.137.53] (erg.scl.ameslab.gov [::ffff:147.155.137.53]) by mail.scl.ameslab.gov with esmtp; Thu, 24 Aug 2006 11:38:31 -0500 id 0005B8CE.44EDD607.00003358 Resent-Message-Id: <2084C3F8-6586-47C0-9CC8-E78240F106FA@scl.ameslab.gov> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Resent-Date: Thu, 24 Aug 2006 11:38:00 -0500 Message-Id: <423D5B09-AEA9-4522-A2EA-7810DC31C718@scl.ameslab.gov> Content-Transfer-Encoding: 7bit Resent-To: gtk-list@gnome.org From: Michael Ekstrand Subject: Re: Question on gtk library dependencies Resent-From: Michael Ekstrand Date: Thu, 24 Aug 2006 11:35:28 -0500 To: John Koshi X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.417 tagged_above=-999 required=2 tests=[AWL=0.028, BAYES_00=-2.599, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: -2.417 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 16:38:32 -0000 On Aug 23, 2006, at 6:44 PM, John Koshi wrote: > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > is already present. Will there be a conflict if I now get > the package libgtk2.0-0 from Familiar? > > My concern is that libgtk2.0-0 and it's several dependencies > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > appear to be earlier versions than what I now have installed > on my ipaq, and I may end with a mess if I do install it. Thing 1 to try: does Familiar have a way to "inject" a package (tell it that a package is effectively installed, although you haven't actually installed it - different distros call it different things, but it lets you install something manually and tell the package manager that "yeah, I have this..."). Otherwise, it very well might be OK. Might not. Best way to find out is to back up the files and try. - Michael From tml@iki.fi Thu Aug 24 14:21:09 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 477BC3B006C for ; Thu, 24 Aug 2006 14:21:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09637-05 for ; Thu, 24 Aug 2006 14:21:08 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id C01063B006B for ; Thu, 24 Aug 2006 14:21:07 -0400 (EDT) Received: from pettson.tml.iki.fi (MMLIV.tun.saunalahti.fi [213.169.30.254]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id E92261393D8 for ; Thu, 24 Aug 2006 21:21:05 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17645.60949.109000.259710@gargle.gargle.HOWL> Date: Thu, 24 Aug 2006 21:21:09 +0300 To: Subject: Re: GTK+ 2.10.x - where do I get Win32 installer? In-Reply-To: References: X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.338 tagged_above=-999 required=2 tests=[AWL=0.126, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.338 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 18:21:09 -0000 Kirill S. Palagin writes: > I am trying to find Win32 installer for GTK+ 2.10.x, but can not. I haven't made any Win32 binaries of GTK+ 2.10.x yet available at ftp.gtk.org, because there have been Win32-specific problems with the file chooser. Now I hope those Win32-specific problems have mostly been fixed, so when the next version (2.10.3) is released I will also distribute Win32 binaries. Note that there never have been any GTK+ installers on ftp.gtk.org, just plain zipfiles. > Where can I get it? Build it yourself. --tml From kyndig@gmail.com Thu Aug 24 15:17:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82FC83B01C5 for ; Thu, 24 Aug 2006 15:17:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11967-07 for ; Thu, 24 Aug 2006 15:17:03 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by menubar.gnome.org (Postfix) with ESMTP id 752D63B019C for ; Thu, 24 Aug 2006 15:17:03 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i26so624471wxd for ; Thu, 24 Aug 2006 12:17:02 -0700 (PDT) Received: by 10.70.52.2 with SMTP id z2mr3102300wxz; Thu, 24 Aug 2006 12:16:58 -0700 (PDT) Received: by 10.70.122.16 with HTTP; Thu, 24 Aug 2006 12:16:58 -0700 (PDT) Message-ID: Date: Thu, 24 Aug 2006 15:16:58 -0400 From: "Calvin Ellis" To: gtk-list@gnome.org Subject: Re: GTK+ 2.10.x - where do I get Win32 installer? In-Reply-To: <17645.60949.109000.259710@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_109171_8151754.1156447018582" References: <17645.60949.109000.259710@gargle.gargle.HOWL> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.881 tagged_above=-999 required=2 tests=[AWL=0.230, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_50_60=0.134, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_LQ=0.077] X-Spam-Score: -1.881 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 19:17:04 -0000 ------=_Part_109171_8151754.1156447018582 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 8/24/06, Tor Lillqvist wrote: > > Kirill S. Palagin writes: > > I am trying to find Win32 installer for GTK+ 2.10.x, but can not. Try here too: http://gladewin32.sourceforge.net/modules/news/ These are the instructions I use for building a gtk devel environment on windows using MinGW http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4 Calvin ------=_Part_109171_8151754.1156447018582 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

On 8/24/06, Tor Lillqvist <tml@iki.fi> wrote:
Kirill S. Palagin writes:
> I am trying to find Win32 installer for GTK+ 2.10.x, but can not.

Try here too:
http://gladewin32.sourceforge.net/modules/news/

These are the instructions I use for  building a gtk devel environment on windows using MinGW
http://cvs.mudmagic.com/co.php/mudmagic_client/wincompile.txt?r=1.4

Calvin
 

------=_Part_109171_8151754.1156447018582-- From sergstesh@yahoo.com Thu Aug 24 17:38:24 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BF1833B006C for ; Thu, 24 Aug 2006 17:38:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17378-05 for ; Thu, 24 Aug 2006 17:38:22 -0400 (EDT) Received: from web35201.mail.mud.yahoo.com (web35201.mail.mud.yahoo.com [66.163.179.80]) by menubar.gnome.org (Postfix) with SMTP id BD1423B000B for ; Thu, 24 Aug 2006 17:38:21 -0400 (EDT) Received: (qmail 61345 invoked by uid 60001); 24 Aug 2006 21:38:21 -0000 Message-ID: <20060824213821.61343.qmail@web35201.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35201.mail.mud.yahoo.com via HTTP; Thu, 24 Aug 2006 14:38:21 PDT Date: Thu, 24 Aug 2006 14:38:21 -0700 (PDT) From: Sergei Steshenko Subject: Re: Fwd: Question on gtk library dependencies To: John Koshi , gtk-list@gnome.org In-Reply-To: <20060824160705.29259.qmail@web50708.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.374 tagged_above=-999 required=2 tests=[AWL=-1.515, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_BJ=0.077, TW_BP=0.077, TW_GT=0.077, TW_IB=0.077] X-Spam-Score: -0.374 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2006 21:38:24 -0000 --- John Koshi wrote: > > Hi, > > Does anyone have a quick answer for this question? > > Thanks > > > --- John Koshi wrote: > > > Date: Wed, 23 Aug 2006 16:44:02 -0700 (PDT) > > From: John Koshi > > Subject: Question on gtk library dependencies > > To: gtk-list@gnome.org > > > > > > Hello, > > > > Sorry about the long-winded explanation below, but it > > gives a clear picture about a concern I have. > > > > I was building a simple gtk application for ipaq h6300 > > under Familiar 0.8.4 , and had to do the following: > > > > 1) Install gtk+-dev_2.6.7-r1_arm.ipk > > 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk > > 3) Install pango-dev_1.8.1-r2_arm.ipk > > 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk > > > > I had to fix some of the sym links, provide the linker > > with the library path, and then the build worked and > > tested OK. > > > > I later tried to install the "Roadmap" application, from > > http://sourceforge.net/projects/roadmap/ (the package is > > roadmap_1.0.12_arm.ipk). For it's dependencies, I had to > > install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. > > > > The remaining dependency for Roadmap to install correctly > > is libgtk2.0-0. > > > > Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 > > is already present. Will there be a conflict if I now get > > the package libgtk2.0-0 from Familiar? > > > > My concern is that libgtk2.0-0 and it's several dependencies > > (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all > > appear to be earlier versions than what I now have installed > > on my ipaq, and I may end with a mess if I do install it. > > > > Thanks in advance for your help. > > > > regards, > > John > > > > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Have a look into my tool (see signature), though it is not intended for ipaq. The piece of info you need is represented by this part of the data structure describing targets to be built: targets => { libjpeg => do{ my $target_basename = 'jpegsrc.v6b'; $libjpeg_hash_ref = { base_urls => ['ftp://ftp.uu.net/graphics/jpeg'], target_basename => $target_basename, configure_args => '--enable-shared', pre_configure_sub => sub { my %this_sub_args = @_; my $info_marker = $this_sub_args{info_marker}; my $error_marker = $this_sub_args{error_marker}; my $cmdline_args_hash_ref = $this_sub_args{cmdline_args_hash_ref}; my $system_wrapper_sub = $this_sub_args{system_wrapper_sub}; my $wrong_dir = "${$cmdline_args_hash_ref}{build_prefix}/jpeg-6b"; unless(rename($wrong_dir => $this_sub_args{target_build_dir})) { warn "$error_marker could not rename $wrong_dir => $this_sub_args{target_build_dir}\n"; return 1; } 0; # the returned value }, # sub # pre_configure_sub pre_make_sub => sub { my %this_sub_args = @_; my $info_marker = $this_sub_args{info_marker}; my $error_marker = $this_sub_args{error_marker}; my $system_wrapper_sub = $this_sub_args{system_wrapper_sub}; my $target_build_dir = $this_sub_args{target_build_dir}; my $makefile = "$target_build_dir/Makefile"; my $original_makefile = "$makefile.original"; if( &{$system_wrapper_sub} ( $info_marker, "\\cp -p $makefile $original_makefile" ) != 0 ) { warn "$error_marker could not back up Makefile\n"; return 1; } open(my $rfh, $makefile) or do{ warn "$error_marker cannot open '$makefile' file for reading\n"; return 1; }; my @buffer = <$rfh>; close($rfh); ######################### foreach my $line(@buffer) ######################### { $line =~ s|(/install\s+)|$1 -D |; } # foreach my $line(@buffer) open(my $wfh, '>', $makefile) or do{ warn "$error_marker could not open '$makefile' foe writing\n"; return 1; }; print $wfh @buffer; close($wfh); 0; # the returned value } # sub # pre_make_sub } }, # do # libjpeg zlib => do{ $zlib_hash_ref = { base_urls => \@_sf_zlib_mirrors, major_ver => '1', minor_ver => '2', micro_ver => '3', configure_args => '--shared' } }, # do # zlib freetype => do{ $freetype_hash_ref = { base_urls => \@_sf_freetype_mirrors, major_ver => '2', minor_ver => '2', micro_ver => '1', depends_on => { targets => { zlib => $zlib_hash_ref } # targets } # depends_on } }, # do # freetype ... targets => { 'gtk+' => do{ my $major_ver = '2'; my $minor_ver = '8'; #my $minor_ver = '10'; $gtk_plus_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'gtk+', # $target, $major_ver, # $major_ver, $minor_ver, # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '20', #micro_ver => '1', depends_on => { targets => { libjpeg => $libjpeg_hash_ref, libtiff => $libtiff_hash_ref, atk => do{ my $major_ver = '1'; my $minor_ver = '12'; $atk_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'atk', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '1', depends_on => { targets => { glib => do{ my $major_ver = '2'; my $minor_ver = '12'; $glib_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'glib', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '2', }; } # do # glib } # targets } # depends_on } }, # do # atk cairo => do{ $cairo_hash_ref = { base_urls => ["http://cairographics.org/releases"], major_ver => '1', minor_ver => '2', micro_ver => '2', depends_on => { targets => { libpng => $libpng_hash_ref, freetype => $freetype_hash_ref, } # targets } # depends_on } }, # do # cairo pango => do{ my $major_ver = '1'; my $minor_ver = '14'; $pango_hash_ref = { base_urls => &{$_gnome_c_urls_sub} ( 'pango', # $target, $major_ver, # $major_ver, $minor_ver # $minor_ver ), major_ver => $major_ver, minor_ver => $minor_ver, micro_ver => '0', depends_on => { targets => { glib => $glib_hash_ref, cairo => $cairo_hash_ref } } # depends_on } # pango } # do # pango } # targets } # depends_on } # 'gtk+' }, # do # 'gtk+' } # targets The answer I am giving you is for latest gtk+ versions - if you want earlier ones the answer may be different and I do not have it. If you want to build things manually, you have to start from the most right-indented ones. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Thu Aug 24 22:21:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4A7EC3B00EF for ; Thu, 24 Aug 2006 22:21:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27500-07 for ; Thu, 24 Aug 2006 22:21:31 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id 7A1E03B0142 for ; Thu, 24 Aug 2006 22:21:31 -0400 (EDT) Received: from win98 ([72.64.23.126]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4J00HI57VGPN13@vms040.mailsrvcs.net> for gtk-list@gnome.org; Thu, 24 Aug 2006 21:21:16 -0500 (CDT) Date: Thu, 24 Aug 2006 22:19:37 -0400 From: "Bill Cunningham" Subject: pango error To: Message-id: <001301c6c7ec$eaadb620$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.642 tagged_above=-999 required=2 tests=[AWL=-0.266, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.642 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 02:21:33 -0000 Ok I have now compiled and installed expat, freetype and fontconfig. Now when I try to compile pango I get something like make[2]*** cannot find panglox.lo(or .la) one of the two. Bill From sergstesh@yahoo.com Thu Aug 24 22:50:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DE573B0084 for ; Thu, 24 Aug 2006 22:50:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28312-05 for ; Thu, 24 Aug 2006 22:50:12 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 4C9643B000B for ; Thu, 24 Aug 2006 22:50:12 -0400 (EDT) Received: (qmail 49646 invoked by uid 60001); 25 Aug 2006 02:50:11 -0000 Message-ID: <20060825025011.49644.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35208.mail.mud.yahoo.com via HTTP; Thu, 24 Aug 2006 19:50:11 PDT Date: Thu, 24 Aug 2006 19:50:11 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <001301c6c7ec$eaadb620$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.52 tagged_above=-999 required=2 tests=[AWL=-1.353, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.52 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 02:50:13 -0000 --- Bill Cunningham wrote: > Ok I have now compiled and installed expat, freetype and fontconfig. Now > when I try to compile pango I get something like > > make[2]*** cannot find panglox.lo(or .la) one of the two. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And how did 'configure' for pango run ? Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gygy@cc.gatech.edu Fri Aug 25 09:48:08 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F8793B00E2 for ; Fri, 25 Aug 2006 09:48:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25085-07 for ; Fri, 25 Aug 2006 09:48:07 -0400 (EDT) Received: from sark4.cc.gatech.edu (sark4.cc.gatech.edu [130.207.7.19]) by menubar.gnome.org (Postfix) with ESMTP id CE6363B010A for ; Fri, 25 Aug 2006 09:48:06 -0400 (EDT) Received: from gaia.cc.gatech.edu (gaia.cc.gatech.edu [130.207.3.8]) by sark4.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k7PDm5Yo024155 for ; Fri, 25 Aug 2006 09:48:06 -0400 (EDT) Received: from localhost (gygy@localhost) by gaia.cc.gatech.edu (8.13.6/8.12.8) with ESMTP id k7PDm5T2010149 for ; Fri, 25 Aug 2006 09:48:05 -0400 (EDT) Date: Fri, 25 Aug 2006 09:48:05 -0400 (EDT) From: Yan Gu To: gtk-list@gnome.org Subject: atsui backend for cairo Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.355 tagged_above=-999 required=2 tests=[AWL=-0.692, BAYES_20=-0.74, TW_GT=0.077] X-Spam-Score: -1.355 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 13:48:08 -0000 Hi, I found that I need to have atsui backend for cairo for pango for gtk to be installed. Can someone tell me where to download the atsui backend package? thanks Yan -Yan Gu (gygy@cc.gatech.edu) From sergstesh@yahoo.com Fri Aug 25 10:15:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 43F1D3B00B6 for ; Fri, 25 Aug 2006 10:15:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26551-04 for ; Fri, 25 Aug 2006 10:15:39 -0400 (EDT) Received: from web35210.mail.mud.yahoo.com (web35210.mail.mud.yahoo.com [66.163.179.89]) by menubar.gnome.org (Postfix) with SMTP id 68A5B3B013B for ; Fri, 25 Aug 2006 10:15:38 -0400 (EDT) Received: (qmail 8074 invoked by uid 60001); 25 Aug 2006 14:15:38 -0000 Message-ID: <20060825141538.8072.qmail@web35210.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35210.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:15:37 PDT Date: Fri, 25 Aug 2006 07:15:37 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Yan Gu , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.512 tagged_above=-999 required=2 tests=[AWL=-1.345, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.512 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:15:40 -0000 --- Yan Gu wrote: > Hi, > > I found that I need to have atsui backend for cairo for pango for gtk to > be installed. Can someone tell me where to download the atsui backend > package? > > thanks > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Web search shows that it's an Apple ('a' in atsui stands for Apple) package, so why do you expect it to be free ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Fri Aug 25 10:24:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BCCBC3B0085 for ; Fri, 25 Aug 2006 10:24:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26886-07 for ; Fri, 25 Aug 2006 10:24:01 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 997C53B0002 for ; Fri, 25 Aug 2006 10:24:00 -0400 (EDT) Received: (qmail 83711 invoked by uid 60001); 25 Aug 2006 14:24:00 -0000 Message-ID: <20060825142400.83709.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:24:00 PDT Date: Fri, 25 Aug 2006 07:24:00 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Yan Gu , gtk-list@gnome.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.505 tagged_above=-999 required=2 tests=[AWL=-1.338, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.505 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:24:03 -0000 --- Yan Gu wrote: > Hi, > > I found that I need to have atsui backend for cairo for pango for gtk to > be installed. Can someone tell me where to download the atsui backend > package? > > thanks > > Yan > > > -Yan Gu (gygy@cc.gatech.edu) > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > As a second thought, after doing 'grep -ri atsui /mnt/removable4/sergei/build_work' - you miht simply need to specify --enable-atsui=yes on 'configure' command line. http://www.gtk.org/ claims: " 22 Nov 2005 Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders Carlsson. The source code for the ATSUI ". --Sergei. mi Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Fri Aug 25 10:25:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B2EC43B019D for ; Fri, 25 Aug 2006 10:25:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27148-04 for ; Fri, 25 Aug 2006 10:25:56 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id E05223B01B1 for ; Fri, 25 Aug 2006 10:25:55 -0400 (EDT) Received: (qmail 84430 invoked by uid 60001); 25 Aug 2006 14:25:55 -0000 Message-ID: <20060825142555.84428.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Fri, 25 Aug 2006 07:25:55 PDT Date: Fri, 25 Aug 2006 07:25:55 -0700 (PDT) From: Sergei Steshenko Subject: Re: atsui backend for cairo To: Sergei Steshenko , Yan Gu , gtk-list@gnome.org In-Reply-To: <20060825142400.83709.qmail@web35213.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.498 tagged_above=-999 required=2 tests=[AWL=-1.331, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.498 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:25:56 -0000 --- Sergei Steshenko wrote: > > > --- Yan Gu wrote: > > > Hi, > > > > I found that I need to have atsui backend for cairo for pango for gtk to > > be installed. Can someone tell me where to download the atsui backend > > package? > > > > thanks > > > > Yan > > > > > > -Yan Gu (gygy@cc.gatech.edu) > > > > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > As a second thought, after doing 'grep -ri atsui /mnt/removable4/sergei/build_work' > - you miht simply need to specify > > --enable-atsui=yes > > on 'configure' command line. > > http://www.gtk.org/ claims: > > " > 22 Nov 2005 > Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders > Carlsson. The source code for the ATSUI > ". > > --Sergei. > mi > > Applications From Scratch: http://appsfromscratch.berlios.de/ > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Sorry - copy paste error. http://www.gtk.org/ claims: " 22 Nov 2005 Imendio AB has announced the GTK+ on Mac OS X port project, which has been implemented by Anders Carlsson. The source code for the ATSUI Pango backend and the Quartz GDK backend is now available in the upstream GTK+ and Pango CVS trees. ". --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From jkoshi@yahoo.com Fri Aug 25 11:14:00 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EE54C3B016C for ; Fri, 25 Aug 2006 11:13:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29292-07 for ; Fri, 25 Aug 2006 11:13:59 -0400 (EDT) Received: from web50708.mail.yahoo.com (web50708.mail.yahoo.com [206.190.38.106]) by menubar.gnome.org (Postfix) with SMTP id ED9EF3B00AF for ; Fri, 25 Aug 2006 11:13:58 -0400 (EDT) Received: (qmail 89617 invoked by uid 60001); 25 Aug 2006 15:13:57 -0000 Message-ID: <20060825151357.89615.qmail@web50708.mail.yahoo.com> Received: from [24.5.217.205] by web50708.mail.yahoo.com via HTTP; Fri, 25 Aug 2006 08:13:57 PDT Date: Fri, 25 Aug 2006 08:13:57 -0700 (PDT) From: John Koshi Subject: Re: Question on gtk library dependencies To: mekstran@scl.ameslab.gov, sergstesh@yahoo.com MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: Yes, score=2.044 tagged_above=-999 required=2 tests=[AWL=-0.355, BAYES_05=-1.11, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BG=0.077, TW_GT=0.077] X-Spam-Score: 2.044 X-Spam-Level: ** X-Spam-Flag: YES Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 15:14:00 -0000 Hello, Thanks for your feedback on the question below. FYI, I was able to get past the problem (in this case), by doing an "ipkg -nodeps install" of the package. regards, John ================================================================== Hello, Sorry about the long-winded explanation below, but it gives a clear picture about a concern I have. I was building a simple gtk application for ipaq h6300 under Familiar 0.8.4 , and had to do the following: 1) Install gtk+-dev_2.6.7-r1_arm.ipk 2) Install libglib-2.0-dev_2.6.4-r0_arm.ipk 3) Install pango-dev_1.8.1-r2_arm.ipk 4) Install libatk-1.0-dev_1.9.0-r0_arm.ipk I had to fix some of the sym links, provide the linker with the library path, and then the build worked and tested OK. I later tried to install the "Roadmap" application, from http://sourceforge.net/projects/roadmap/ (the package is roadmap_1.0.12_arm.ipk). For it's dependencies, I had to install gpsd_2.20-r2_arm.ipk, and libgps10_2.20-r2_arm.ipk. The remaining dependency for Roadmap to install correctly is libgtk2.0-0. Looking at the libraries, I see libgtk-x11-2.0.so.0.600.10 is already present. Will there be a conflict if I now get the package libgtk2.0-0 from Familiar? My concern is that libgtk2.0-0 and it's several dependencies (ie:libgcc1, libglib2.0-0, liblango1.0-0, libatk0, etc), all appear to be earlier versions than what I now have installed on my ipaq, and I may end with a mess if I do install it. Thanks in advance for your help. regards, John ================================================================== From bounces@nabble.com Sat Aug 26 08:55:44 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 283093B006D for ; Sat, 26 Aug 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16532-09 for ; Sat, 26 Aug 2006 08:55:43 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 0F58C3B0141 for ; Sat, 26 Aug 2006 08:55:43 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GGxhO-0000J9-S6 for gtk-list@gnome.org; Sat, 26 Aug 2006 05:55:42 -0700 Message-ID: <5996953.post@talk.nabble.com> Date: Sat, 26 Aug 2006 04:31:48 -0700 (PDT) From: Tintin72 To: gtk-list@gnome.org Subject: GTK window and DLL ? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.497 tagged_above=-999 required=2 tests=[AWL=1.104, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.497 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 12:55:44 -0000 Hi all, I'd like to associate a GTK window with a dll under Windows XP. What I want to do is that the GTK window retrieves the messages emited from the dll. I wrote (just for testing) a dll wich start a timer and send a message to the host window (my GTK window in this case) each second . I know I have to use the gdk_window_add_filter function, but I don 't know how to translate my GTK window to a Windows handle (HWND) and get an ID in order to receive the messages from the dll. I found a macro in the gdkwin32.h file that would be able to do the job: /* Translate from drawable to Windows handle */ 064 HGDIOBJ gdk_win32_drawable_get_handle (GdkDrawable *drawable); but it doesn't work. Here is some parts of my code: in the main function: HWND hWnd; hWnd = (HWND)gdk_win32_drawable_get_handle(myApp.pWin->window); gdk_window_add_filter(myApp.pWin->window, msgFunc, &myApp); timer(hWnd); //start the timer and my filter function: GdkFilterReturn msgFunc (GdkXEvent *xevent,GdkEvent *event, gpointer userData) { APPLICATION *pApp = (APPLICATION*)userData; MSG *WndMsg = (MSG*) xevent; if(WndMsg->message == DLL_MSG) { addText(pApp->pDrawArea, "DLL Message!", userData); //Display text each time a message is sent } return GDK_FILTER_CONTINUE; } it seems that the GTK window doesn't receive any messages from the dll. Can somebody help me ? Thanks for advance -- View this message in context: http://www.nabble.com/GTK-window-and-DLL---tf2168964.html#a5996953 Sent from the Gtk+ - General forum at Nabble.com. From billcu1@verizon.net Sat Aug 26 17:48:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E6D043B0078 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05149-06 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 243B53B0071 for ; Sat, 26 Aug 2006 17:48:29 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00A7IKK5X505@vms046.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 16:48:06 -0500 (CDT) Date: Sat, 26 Aug 2006 17:46:24 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.756 tagged_above=-999 required=2 tests=[AWL=-0.152, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.756 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:48:30 -0000 I have tried to mail an error log several times and it doesn't make it through moderation. The error I come up with is freetypefc.lo or something ending in fc.lo I have freetype2 installed and it's fine. Cairo pango and fontconfig is giving me a rough time now. Bill From sergstesh@yahoo.com Sat Aug 26 17:56:49 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6BF3F3B00A8 for ; Sat, 26 Aug 2006 17:56:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05696-05 for ; Sat, 26 Aug 2006 17:56:48 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id 5910C3B00A6 for ; Sat, 26 Aug 2006 17:56:48 -0400 (EDT) Received: (qmail 33076 invoked by uid 60001); 26 Aug 2006 21:56:47 -0000 Message-ID: <20060826215647.33074.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35203.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 14:56:47 PDT Date: Sat, 26 Aug 2006 14:56:47 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.49 tagged_above=-999 required=2 tests=[AWL=-1.323, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.49 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:56:49 -0000 --- Bill Cunningham wrote: > I have tried to mail an error log several times and it doesn't make it > through moderation. > > The error I come up with is > freetypefc.lo or something ending in fc.lo I have freetype2 installed and > it's fine. Cairo pango and fontconfig is giving me a rough time now. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Did you try to gzip the log file ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Sat Aug 26 18:05:48 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3DC113B00F2 for ; Sat, 26 Aug 2006 18:05:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05924-08 for ; Sat, 26 Aug 2006 18:05:47 -0400 (EDT) Received: from web35213.mail.mud.yahoo.com (web35213.mail.mud.yahoo.com [66.163.179.92]) by menubar.gnome.org (Postfix) with SMTP id 081D23B007A for ; Sat, 26 Aug 2006 18:05:47 -0400 (EDT) Received: (qmail 57200 invoked by uid 60001); 26 Aug 2006 22:05:46 -0000 Message-ID: <20060826220546.57198.qmail@web35213.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35213.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 15:05:46 PDT Date: Sat, 26 Aug 2006 15:05:46 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000701c6c959$141dafc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.483 tagged_above=-999 required=2 tests=[AWL=-1.316, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.483 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:05:48 -0000 --- Bill Cunningham wrote: > I have tried to mail an error log several times and it doesn't make it > through moderation. > > The error I come up with is > freetypefc.lo or something ending in fc.lo I have freetype2 installed and > it's fine. Cairo pango and fontconfig is giving me a rough time now. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > And you might also have a look at this report: https://bugs.freedesktop.org/show_bug.cgi?id=7862 --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 18:11:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A81873B00D8 for ; Sat, 26 Aug 2006 18:11:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06320-04 for ; Sat, 26 Aug 2006 18:11:33 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id BEEE03B007A for ; Sat, 26 Aug 2006 18:11:32 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00EOFLMC47DD@vms044.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:11:03 -0500 (CDT) Date: Sat, 26 Aug 2006 18:09:18 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Sergei Steshenko" , Message-id: <000e01c6c95c$48e550c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060826215647.33074.qmail@web35203.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.775 tagged_above=-999 required=2 tests=[AWL=-0.133, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.775 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:11:33 -0000 > Did you try to gzip the log file ? > > --Sergei. You know I never thought of that. I hope it compresses good enough. Bill From billcu1@verizon.net Sat Aug 26 18:21:01 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E8D513B0071 for ; Sat, 26 Aug 2006 18:21:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06484-03 for ; Sat, 26 Aug 2006 18:21:00 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id E705C3B007A for ; Sat, 26 Aug 2006 18:20:59 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M000YHM2UXS19@vms048.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:20:55 -0500 (CDT) Date: Sat, 26 Aug 2006 18:19:11 -0400 From: "Bill Cunningham" Subject: error log To: Message-id: <000a01c6c95d$a9844fc0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C93C.21449000" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.79 tagged_above=-999 required=2 tests=[AWL=-0.118, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.79 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:21:01 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C93C.21449000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok I'll try this gzip'd now. THanks Bill ------=_NextPart_000_0007_01C6C93C.21449000 Content-Type: application/x-gzip; name="config.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="config.log.gz" H4sICPvH8EQAA2NvbmZpZy5sb2cA7D1rd9s2sp+rX4FNejZ2Ekl8P9zHHsePxKeJ7WMraXvXvSpN QRI3FKlLUn70dv/7nQEfAkhQkuXsPbutfTZdETMYDgaDmQEwAAfTICXjIKTEj6PMC6KUeNE9mdE0 9SY0JfMkHi18OiLX94AxmwNmkpLbKfx/J1lEURBNsOY4mCwS+ppkMfGCERnR68VkgrBgvASTmfcZ SHpkFqQZ/Ox1OicZufVS4ifUy8qXVMTgLf4U4Z0JjWhSYrw9/Uj2F1mMmETrmW6PkJPoJva9LIgj 5HLmRSMSBhFllTuEfE16/SUb3e5tkE279G7uZd0g8sPFiKbf9Rdp0g+BStgvykTEMLjmceAR4KMg 9a5DCniRrnU6z59DWfFHnj/H5/PQy8ZxMusVzwK8M43TLPJmlHxHGFl87rFfo3gGvdFZMGh3BgiB 5VjlcwLPWk/rqVZX08rCFArfB9Hiriy4gYLnKhksKAhsQjSNqNae4e4pFjk6HBBNUZROh7XpOoj6 RaU5VFpEn6P4Nurw5T8R/FvCcqCXQBcJfwWjFVmG0f1cQSvaiACdckPv+hOapfdpEI1jDgFlwYrq 9AXuZp4/xZ6WIpQ8xGlIb2gop7CIghtQaiqj0DnfH7zbI1y/p1CFL+Wf6zB5jby0pdoK6kVj+Mef VPXC4guTOM7Ys6iLlTYexKD/GU2ztKGPhUZWw2RPNUFViD+l/mccyaDEMHTfXB520Q7AWAO9J2Av Mi8M+VqWYuyRhKaLMFsy3S8QSdcXcFWTe8PtlGZTmpDrRRCOCI1ugiSOZjTKCNio1IuoUNV0lq+5 p6kAc9Ua4xPv9jOPYSv2HgAWYCcYew24ai+pN4CaLeEajRtJQZHJ1zsf9n842hWqGHYrt66qSsiB JaUR2haCdgAtM0266Zz6wTjwyTxO0NilJB6TD/BitOAiUU1ZvjCKBZBb79aJz/eKpmCvFMIp+6+O opmcfESYZtXpH1Sug+BIA8YFfFtjNEAVCyj5tj+iN/1oAQrz/V/NDgJ33h4c7BK9Z/SszkE8v0+C yTQjO1AGZswixwml5DIeZ7ceaPgxMs/cwWtwDX6vM0A3h54O0dIC7RvoLhgNUyxZJD5lvPpAu3Bq o4DJGNzLAHqEYv3Tsw7UTLwou/8GxJoRMCsRq/fh6OLg3f7pYP/NyfuTwc8Eio5PBqdHl5fk+OyC 7JPz/YvBycHH9/sX5PzjxfnZ5VGvI4oBRPr138D4KGKxXUjnpi6WC+qNkFXUCmxaPFv2V6+HHgq7 rY/muDv3wYGBa+hOokWfSbHPqoEsi1eNCDq7vZqnnCegW3ff9eN5hrRBkOCqR2QWj2i4B2qYBnes e8qeyzuI599RpM1yyk7/JOntPfJr99MLAi9FmrNFmpGpd0OJl0wWaBBESqXcVL5YV5x2LRzRsQeq S+JFNl9kefyDXk4ggMMSOYQ/LEar2YMnZFFAM2Tt0y1u/Hk9eJEIldk91ESOyds4+ZwKtWwVu6dJ zZazgFZQbnMA5kgYuEUJQySYxGla8AFgvp6htJkVAOk1gaeLMegOmih6R/1FhtYsFauYhRLElYjX iNvAbm221dD1JV8ioG6MllzF1/+gft77IlvYd4wtX2SmzoulS3lxONsoishx26W+SLEQdQAD3KUe 8ARMVd+IM1N1ZZyZGgw6JuTub+Srr74iv/+eP/4Fg8eKHE3El2pSw2RqTkmMqyu019RVaU3DaFVM 01QkIsIme75P5+Bdu4JCmrZaSaQ7WSkTNKQSZtA+PVwmjrTrTcdaKxNH2jUWP7BqMrFUu+mwS+OI My4mGbJ/enlCDoSKTuE7Cul0z7RVErJcaaMs19pCQpYrbaetaOskZCtSfbM1nTc9EPJHlI7oSMAx BG1oa2/+uAecANNxskfSe4iw7vInck3HGCU/m9FnIm1b4mfI2INBOsJ58iTxZjjh3Ov8Tp4H4wic DBkO/Xm4SPEflAIz0xiiRHA0gEIhwBjzb3CcustKs3vwTGCqyhnpIs3nwBhs8lVdmNhVwgH7IcBw uFVkR3QOL6aRf7+kLgZwuqLZQnCnC0CzrowbTArAl2qbTgp0VdMlJiCMUGPqPhGQWwNrXVP5huez CphmZnRGsvs5FVB1jr9GwCRgGryBwjlqK03T2JSmpTVkih2dTb2MjGKaslAzSxaR72W0iFp4Ajrf /Uy0qTAwAKHuBukkoXMBRXO5Xgcg6R4JcMOskQBxlvpY0yBD2t2hwJKh8dOeYMxcH4jnM3T2Dldn F+NudIm16rrV2vGGUZ//cfQ4w5nQMIZgtiUOADLcFLObCKDGKKiNgWgmoLuuRB7RjHTf8GimEEJN 49ucST+eREFKq6GbgZiuEy8JRHYtmxsKcy9Nh+IgNFRdk5BfREXgCaE+WDGfpmmcCNWscgZyxFtT AcWWeQ5Dq+K7Zs3CBkOQjXGE5w/RpN8FMJKirAfTkNMYIjV/msfmIN9RAILI4uReeIGqbm6T+y8Z D2CW094UJnUv+1CIhhhKcAXpfP/gh/23R8PT/Q9H5NkzCWSwf9EO/HR0cXlydioHXg4uTk7fymFv Pr69ODo/uxhIweTZOI6yvHE8uHodLgPqz/L2gXpI2vi89B7f1sX8vSBMUxHMvjj+DQ1nGavVQD7X M3RV+9eqga46T2rwpdRAbzijPLAkU5j4g22um0lDL6PMTYJMmI9JTYW+TZAJtWRBpmGsDTINQxpk GoarNmekZaNWzEuhomwODsVWuaKCFUWQlHdTbZ0cGabeCBDv0z7GHdDNAqJpPKBLTEs6bE2c3j64 S0zLkhNz13WJieuAkpqO/kCBQFCZPcmjnEGMIFh4kkYpjQR+Pkkjl8aMzsCRPkmD140nQ1qII4iy J8ciGtIgenIrhTQWMCHNRn9OaVgKv5YyCsd+1JuSRepdB2GQCRMTS9toPbLClq1QG5a+xQo11JLG 2Za+boUaUKSBqWW47SIxdYlI5oBNI58KmJa+bhZpWfL3O+3vtzWjpqAFDwKS3rofZtgYp4tL7K9e 8QgOzmHre+I1FI1b9KrDGiPo4NWrVbvihsOWsgGpfVccgH/0XXEQg3Re5RhWIZ3/yF1x4F+q445Z dnpzV/zVqwfsigOlUm6qWCxLXZHvQHIKKpBwSh7FPciGOXMcqTlz3G3MmSNfNnDctebMkc+zXX6J umYNXFW2O45tlm5CGi5azEIk4iZkQyiuIV13cA1nC6G4pmx/FYqNdUJxTWnfuFZrUpWpqArfyJov qzcU0GUuGYrdhzfUVDSZlzZZFtLKhgKKLF/AVFissr4xxfMe2EsyXkQ+G3m/QiDIsrJ2dl/sCWia VW0p/krvguwFy25FiziifuihOQlwuR3z2cCkUoGlKiB6WsSsIJeDw4Phu6P9Q8AAuSwB7/Y/ASc/ Xw4HP58fXQ7fyYGXg/2BFDY4fH/yRg7BxskgH44+nF383F5HysTJ6aCdwcEhgGWQj6cnAJRBDt8f H5wWgNaFXvgfaCj8F3WU7OzCr/+Ff6iQZMfQdr9hW9H5fxOaLZKIKPj0zz/9cG8MRZHKNnMTqCWX zNq5ialI5yam4trr9vOF4NNUHaV1P9/UlFWbgiCylm1BU8MJBpOpEMn7Io7M95qarbZXrWyp+Ygt IVOzH5Ct8WRNn6zp82DcTNihdxkF6/js4Bm5iYMRLgLt7eV2FCzsLoyRBAbMzu43Rexcwb9ZJvg8 ekfOFLI78mEjgA1l7UDUDakR0m3nXz0QdUc2EXkaiE8D8T9vIBp24+SEbfMIpsLNn4T0aEnd8SPq 3oXj7d+bZFvXnU8ewzX8yx5TPdS1rSt7j2LcVR7TVY+oDQJ/RG069x9Tfeyaj+rrR8ls+1cHY397 iT2iLvbV9lw/qskTFHfiRRsSMIUUWyRwnNcntr1qVTqv2L4kza2S7i2x9qozubgSwhbRRZplbKJq 4hDFsEOywiu+5WYd+eoQQp28ztrSWGkVyX9aS76NeyHteuVSq0T4AiWTycHnQrRjCaf+Ok4tQ8pp SyyW/5WF7DAyn9cOfB8MhxWeJLOdRW75H61xwm/l1DTTlZ2Mkq+7mhae4izm9JVoxluIxlL1R4um rbGWbrc11rL4mTxqw8y7C2aLGQlpNMmmOJcXjrOXK/3CwqzN567rmm05AtTgh3pJDeb4cw/PPIvJ yNWBONw1YYdMWGo0T8/Rtc23NAFbttwNxW49D5pbAyFXv7P0925EupS8SPv/3Xv5d/LVL1c7f99/ c3D49uTicvDjL/zvl1e7iID/Xl7tXO0C5nC/+19e97dfyh9K10W0r/tXKrnSrnRypffnL8jV98sX CznbpmNIV18c19gsQ5D9TLMZtKcuFFe2+G66On9u7LMIqht86BiYbgk4/HGDXhhc80piKYI1YgFR IsBxyau2v1nDsLntUxGkNrZfwZoBBwKO0XyBBMvkXtIEa0r9RZi1MxdQtOZ7mkj8VnADarj8kAnY +RiCSYWBDzGoNyGNYyiWqbaeRrBg8i0ht5jjGW6waOMo7iZZFuS/6B0aOtxgFUiYZmPQtVZsDEcf GnvrJXhXx55oT4qtxGcVrWe4nXvjhTDFKjap+2fX/8BlwGswC7ntTIRDZsCbbI3PMq02s2eZTj3D WDzPVtw5Qs5PhBfZJuc1uuM6VLClhZQBJ+8xht7sNhtPXDXkiqjdQ/xvq2GzbFdmHSyn/Rif5Wgr 9YBZFFxKERaBLceQsBijoa6yirVevIJTx5RzarWmU1iO1Amjf0JGpGd0qnakU7bNJTuhYttG656r bVuyPdduCCKaxotwRK4poXfzMPCDLLzPmcDdNIGGrW/umwBbtiZm2255+rdoCueYMBjt/hi+7qZx fikK/F46Ac4haFffX/1VRUfGTlKxdoCvWQaaOYL4XtkOt+0oZss4sh1VyLq5B5aCqnt8YN7zM5oE KdgtXtTgk7nkJojj+uzSGBKOemks4vFDqtgaALIjPx7RoofvIY7IpiluOMVlRCS+zOFP1s1mdBR4 GRUwhNybsueZVZ5jSaVKaJvmcZriASuegKG0Jva4Wn3QAbUsjsONFBZqt5p1gMkOc4MUioOGq8g6 rYcWXc2VHYBeks3dkJys23p0wNXxZDK7ZqkQKQqBR3D1+pSQP94nbCipisKbOfn5PkRyRdE/6IAf 1NdamwNAu9VEgbPa2kSpituuTABU3QfsIwK+dCNTVRUhwaRIN1vrAVWYnCjtLhDBTs3DANU1PhBq uc1GyZ1go4GqrsiMFpSr7VJUdd1ssrnOEUI1U8LnKk8oYVd6YwOUO61uW4XAVWafHq9qqqG3K7hq KuY2xl2FENncxLojovto8w5UbGO1fQcUR+baNzfwQMFtTcdVXXa88GHXMYGxa41EVNfQlNroxJ0t 3A0oTmSznYuUHJ5ciPWMByRAA7opyzLA8i3SDLCaLJzB8nWJBoBjSe2Ua9gr5G449ZzZUmf8/CpB LI4xOyEQOWWTpS0O2UFNuT11zWVmyENEZkqzRaAcp4d1kdUwZGmpqmsp9UsqEvo/C9AewbW5tl4/ Pr76jKXqOu3Zz6rLbn9YkvOjLGzJSAdcrTmfWKGkbktDXWzBwyXuGnKddw19rZK60j1sKDdbgzQA WopENJLMdEC1lTWp6YjTwoPbyoOmKHr9OoKCjxpW+4V2rqvUFUZysA8VYYVZk9FoHId7MA3JSZCV NKChZj3S9KJC/7uIFyezItVcGHSaomrK5qqL6LK+wvItctKgmi6zPVi+LisNcaS3Vilq+5kKvIWv scEUjIY1kTgPmPEiuvRSHkV1t7kYCqpJb+qB8rVXQymaIr0bStFWqY6m1z3zzRxUOBuLWNWB9E39 S/68h6ts3EJZNA4Dn82X2Ek49j6cheGlscts4BcFCy9EHuR3KUH5NpcpKZr8NiVFl510r2HI+0hX W+egAGws6A5H8TyJaqSdhxyW72ezed/3rbPJx/duL66lVOMmyou9Tn+ZSdNlWTN9rnswHXIR5dHX CHgf0wSNOIatvxb8vWi8Zqc38jLvlXKn7G5Q24/DkPoZvCgcFbmxgKzmubM4917UBOU8pRk+ZTf9 e2Q3ie88uThq8Lm6Y4DJwfsvJfh2aXw6hzqD49Up7AA4zOsUQ5PdcxfBPDSK/UW8wE2KJPCi7DUe qPC9lJJvw2AWZEDj+/KwRVpW7uV7s8eY33HnzeYhfU3enXc//kRUNZBWnNAsC2Y0Ho+8+ypJbCRy VPEyLI0jG83A+mV+IVgRzAPnZc1hmi2uYWqKN2wS3IWZwvxovAjDezKmt2gvspj5mtfFbnJ+Bbrv RZU7YufR2AJAxQgqxjUN49uineScWTe+YcDDt16a0gRT2nDJZThkyjDEKXdhE18TUC6fFjS4yiwb Ls0P9YGtxtOCYAqjUbGhnN8Jz9uzUsfzV2BJdYHdkixT3TClIrhispZH8HyR5x3UJH12A54ygIp4 aT24Ig1XKmAseeFSmEx12LgCMbLTOcu0v5WDsTg3wacP/siu4MvFf019Dx/YaSB27nLmZf6UrQwV xyrY6+Mx8RhvuWRZBAFKy7bhpyBSEEe1sc9xfct2PdIsCEPizedhpYf1vs85G1QXh5az8HKZgh03 YrOOwtumhVqBfQlwMOQZBXm3o6zCW+8+ZT4sV7aj0zOwy/D6y3hGOSqYyOL52cJD/cX9kFFBJAU8 eCuzVF7CIihGCNStaDXMjZMZdBLbRQlwLMBrAy/leqZUS7KTD5tylO1iyNSAVVAmIC4VJdcwJrOd l+NdEBg46wJZNJ8yZfhnTQ1l52qKvh6TvwiE152w0RSDXyQVL9NVmvfWgkmii2AkYrnbraRoiqnI ZzNs2fHh8akpv5ZXMdXVKymIIVtggPL2rZcW6TwJp004uGr8JBqpaGZ0Notv6COlU84f3W3mjwUL L/7ock5p9mXEjEt6W4kZOPiDS/kzBp7zp7EulU6aJf40+UI6qG2jgzkHf2wdhDZ+QTHrW4r5TyHn TEjheBrqQjgYzx/rbv7YwhmGsfhtjz+thMzGhhQucaCF6eZoIjbmQXMJxtXnvPorazlcmsQD6lmN XITjwfAtzYbHQZJmw4OpJ4rOstv3PronzW/cVS+Xg2v93n1f/wIeJkN2E0wSYb/r4LAkDz9/a6iN Jf+KBpRvtUlitexuWe66TRKrZSOLfSasTW1au+aU3j31zL9lz7w5PB6eJ/GcJkJWxFPn/D92jt34 mg10zpsgm3nz4WXwG+3dD+dzOhPrGI1DR1v1CtcpdaHahtzn2Ka6jVBtU+6IbNNeuzVuS6+f0RRH bc0Q0RRX+N4Z+2RpSw4Q4EoSKaQCWyEvtyW7wt0uu8Jtya5wN8iucFuyK1xjlbxMTSIvSWIQoFrc 9wvWyKlWsYUxp50xVWmczS2YE7H09u9FqZqQO4okfvrwfniOB/6SA/apXRG9ap8k7ls7kCTWLWQc 11UG3iMVh8quA3qwyqia/LN3Krv6Z5XdUlu+SahqbnvuiWq49VNLo9i/juPP2jSbCfMwlX1+Tb6w r9oqn4hfHlPtFbkFtS+yNj/geiF8c7moJvmWa/2zroPqO894Ix3ucUUj/oPLBaUv+dHlg7PT45O3 w+OT90eX+Vd1l4XlJrRQ+P7k9IcG5sHZhw/7p4eXeeHXdYmRTgdeL/92ckfA3LPZd09LyZdfTV2J tMx86G+G73dDL9oQOU38zRGXnPRGdLyOCd8DRd2c5SDNNkMGjd8csTj930sn1fCQI+P43JDZpRTw ntZNcefrMdMeYmxIsPtbdWC0RHXYFz1L1AI2rSGpGuYp5x/DDPK721imbzl8/q+2K/xtWzfi3/1X GHnF1A5N30vXvQwZ9EGx5cSrbRmW06abN8KxHdu1ZeVZcpq06P++O/JHiZKopMUwBDGpu+PxeDyK 5Ek82ce//nQz96l67YG/o1k35uVon87E7F7IE0Nu9ctjBlbIp661NPSD5/uCgC7fEnPELklNyMND HfFidy9aLZEsUrcIuZ9uD4sCrNPzLsIKpYJWqYdDO72G20pYiC1019c2UgW1Udvl0HBbCQtxla5z elqmY1CVzlp/p6b2XttKrsEVesNSymVMVKUc35DtxQxMpVQ63S8XNeUKuGLJhwVNavrqlpRUMEaa hIE57GbCshs0zNUkyb0sNQTZXr+ML6+4yni8KVCSDA/5y8TKY2eHSj+eBWVhw8+ByzA8fbSAWfdl qHq+VAarxxoWaA04jbdlKF6iNcDq7Smhjt7oZGUh4EjvNoRchNoQ8u17G0J/88KGUx9LsWGSdD6z Qtd2gdWb+3YMv49fj7EKljzSMEntLWVcbYvUm/tFDI3L2skgH7S1JKSkG+Jc3NALtaE3quGoIjRY teWzG0TcpkJNlu4z3lGjDL4f6jqWL4o6mnAfL4X38b27nH7ZmDC6lbuO2tUVaNVdnlAyLGIBdemF 7aB1HgTv82ErEZxNhTdyp/squNVy+fOYVfj1tcsHayuIkTfodc9dhL+ooPmly6GrolYYyBmNekPH GiatswCjibpCKL8GSm1Wn/0sNJrvpctSe/lwnfop3iSSxZSGvMChL9cpnIDSXLkzhTzKoEpGDKTV QBbJdk32mt29mdqVQWtBSPPkc5TblCmJiqOgCLlnE/xGWjx3s+9iKhpeflFDlmuSLJq7zou+d9Ft iVa/7VQpeJ0qr13gaOpTnxAVfMDWPd4DroKzuCoIiwJJe+21XfOwdAHD1lCDHPQNC5fBchwTHfrE Vn/zFXDZ0VoxMxFLTdfgpCHW4TkoiMhji7AdGGQ08kkJ5cIKSnZmIPhOtNzGN9MtZaObeEsWQN3l GHF+Js7/NdQPsXdqhUlj0gS/jCim8znt3BOLZGdNqus/TWbdfPFrs/ltcjQ5mRy9br4krnfp/lXz t++vVUVGqX+R6P4Fif5vo3iWk3yOJm9NLpM/Td5qRk9LzK8r21TYfPNnquKN5I/XWfkl1cnJ36tc o+kDm77YLnauCh5FuDorco6oR4+cJ0ikMVXI6nr/qK77n+p/0wDIAsgEam2AcGQFbAZkB2wI2hKe Fs5iDVVJyRx0N3KPKouYkE2QUUx+yixMNnl+om2MRC+YB9lHbiDPN0QZiUXT0kqkmcjKTEPJLIXY Wx1L2HwGKlzYs5tStSv1Wr2g5fXoLvstvPR7ve/N6nGfaJ3IIw7HxxyDfDqT64DjkzenTsPrt/3h udd6H/a88NIl8RRIdLxe6LvOL/p6PLqiS74a05T847XR7oIKUQmZhpQmlF6NA3ZF/YzU8JOpwsrV 9ZPF1RJNMeDT6z9ZnKdmKI1WPg4vfZwGrUN4vcMZ0lI/aBNXmiP5ozVy2iSE3AC6jvL90jW1u92V spNtcZ00rX2XApBmCgsovedmvctbAK1sZK6wlqLruqqxVzYq/3Qx9MaX4qPrLGar2Gm0/Q6j2/IU ifYjMngoZXxDDEmqdq83DgIysvl2yzFOCBK00Ag+CSZbwO6pXI1Ow29dBroazosWt0PmBlTlDvmx hPJhKWOp5A+8854vqJZQW2IRqMyRrNO/9v1rxeOamiYydVtc7JqGFoJMUeNidxqd01Nm2GkJr90W nWAwDnFN6vKuemMNkwxkOArdf0TDuLY3JvHCadr0Dsvm29+bJ387O/nr2clp02+P5WekMlLuD8k9 6+rOyPf5rNSTbXnmsZzBpa61P/O41GkYy3RagfI1GYxUp+uc4JK250NvFPpCNqg7CMderydIFx4b Cq6/N4+j5u/v3uUEw1FwMfL6Jk2ODFu0MB/X4HjRbhbHaH7xElsWkaxeyedx1DPwxLBkpJHg/B86 q1Nl4S9eSia0GnmZxnfKF0Pm/epXhPch0oGgItud4jo2mZH5XY34jJjUSX4p+t3BVSi8C18jRv6H Lp/0c5138hoH/0R30KFBc3L27uw3p9H3uszqF+To3x8JHuj5mCgjsnHBNzjF7IdvcnyDW+9uqXP7 IVuN8D543Z4cc3l9ZUxWISmhfdWnQcwL9UN0JyFyaBLDYEQ3HfnQgiaA6Zt4T0Y3vUF6izRCukfK zyRl5l6XeET6VaU3U52i6M0C6RLpSqcxMmud7pDRqSZA5TcJ0gPqmOkUVcxWOo10BkVnYDUDi9kB 6T1StGIOjnNwnKNViy1SiLYAvwX4LaCWBfjegs8t2nb7GSnK3UKu28NWZzQEkizBYTlHuoAoS5RY QpQlqlyiKaupTr8gg7asIIvWu9bNCgxWqHkNBmut/zVEWIPReoNU46GENZSwBsPPYLTJUp2BJBsw 2qBJG3TbBk3bxDrVhKhpc9CpLoHGb9DmDdqyRY1b2PVWa3EL1lvIvAWDCFYawZQiiBpBggiiRhAx Ap8IyozAL4IAO1S8g+52KL9D+R3K70Afz5CiYTH4xmj5HcrfoZ496Pbgs4dmkqlO0ZBED4FkoVOw SjQFmpqgqYnGRzrVPKPPOrPTGYiX6Er+QArxE6g3Qf8kj0Ck4JlCqhT6TyEUb8r3eTbVWU0GWVPI mkKgFHKkuizkSzUDyJE+QrADGB7AUA/HA+zlXo/8e2jpPtYpWH5BS75oyi+geEBTHqd3yIDFIwi+ rsRsl2VXmywb5QTJMstq2b+qrqYbeSg+dgd/eZvPCBkkmwlwxt11zNVg5Vw8lzUP55vX6gi0CcEh fROEKVOBaHoJfVp8eOOAVqVnTgP+Pkc5/JxG6NMsLBf9lOf5kFZv0r9DjVLOP0d6/5xGxlfOkcrB Jv2QcguDKznfZ65ItQXIPZBqoa6us7WzBmB1qS6yWVMDynKb7kkt4TQS4pamR1qct1rGTq0I1zs2 E3p9XUNOCJMeq0jXyZaTDN2qr4CKeZzS1kDB/jjE6YKLkTKle/LFN34WK9TXPL+zjgknH5o6FQ83 MHCAO/pydndQxBoQE7JSiIbJPKYK72bqTAJqt2yqsEVhrBZLLtqdhiGqgXUauePcedpz7jSke9/W NMO17+DKaJi8LrVLwsxmQfsl2bM+4cVaBcfrt3z5S/JXVn3AHrPpk43Zek2aHv0wsAbP10TDiuEn JWUh73mw8PP3IpggBE4EwtNNd6ybeDs3Wyo1njVS907eDwyTMUAEB/hPOLaRdCzR+Hj9QH9OI6kx xkRao4ofaBN6FkeEzgzIRC1Saq35qJQFL7ll4KiRpRF5oeK6kU4bHfUAvoDmkcVsjzIqcx/alF5A E1XYkjaPylvSnLYcwqImnEYBLDd4ZWAe06IIHovz7rjvDUXY/acvPonh0O9biC7oTiyfEo+CoT8a f6oh6bBrUrQuvVENwYA2F1Y8If2rbtsCDoaVxiio6AWDCwvKwqYQyKSA4VetyrC+3+8HH3wLWIdQ KcNpoqpA34djvz8sg42wKXWhRX4QPmpdVrRoxnKpi0/yo/Aa/uOgV4GasWqeCHFTFxflh+B5tJQC WL5dwP6LUWvke2Oz06xhe54M+VMXf6g+htATcYmeiEpUE4bmGXA5zhDCMVjCNfwPYXSMVzRVrKff Gv8FI4oK+BqjAAA= ------=_NextPart_000_0007_01C6C93C.21449000-- From sergstesh@yahoo.com Sat Aug 26 18:38:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 697033B0071 for ; Sat, 26 Aug 2006 18:38:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06994-07 for ; Sat, 26 Aug 2006 18:38:06 -0400 (EDT) Received: from web35214.mail.mud.yahoo.com (web35214.mail.mud.yahoo.com [66.163.179.93]) by menubar.gnome.org (Postfix) with SMTP id 4E0A03B0126 for ; Sat, 26 Aug 2006 18:38:06 -0400 (EDT) Received: (qmail 80569 invoked by uid 60001); 26 Aug 2006 22:38:05 -0000 Message-ID: <20060826223805.80567.qmail@web35214.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35214.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 15:38:05 PDT Date: Sat, 26 Aug 2006 15:38:05 -0700 (PDT) From: Sergei Steshenko Subject: Re: error log To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c95d$a9844fc0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.476 tagged_above=-999 required=2 tests=[AWL=-1.309, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.476 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:38:07 -0000 --- Bill Cunningham wrote: > Ok I'll try this gzip'd now. THanks > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > The log file you've attached is the one created by 'configure' itself, and it's not quite human-friendly. Please rerun ./configure 1>configure.log 2>&1 & and attach the configure.log file - it will contain screen output of 'configure'. The command line is given assuming you have 'sh' like shell which, I think, is the case. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 18:55:34 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E5103B0108 for ; Sat, 26 Aug 2006 18:55:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07500-10 for ; Sat, 26 Aug 2006 18:55:33 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 925C63B00C5 for ; Sat, 26 Aug 2006 18:55:33 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00B11NO8ER75@vms046.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 17:55:22 -0500 (CDT) Date: Sat, 26 Aug 2006 18:53:38 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C940.F0E88CE0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.802 tagged_above=-999 required=2 tests=[AWL=-0.106, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.802 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 22:55:34 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C940.F0E88CE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok Sergei I have follwed your directions with the & and background switches. Not knowing this stuff is what keeps me from using your tool more than anything else. Anyway the output doesn't really look any different to me. Bill ------=_NextPart_000_0007_01C6C940.F0E88CE0 Content-Type: application/x-gzip; name="cfg.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="cfg.log.gz" H4sICOjP8EQAA2NmZy5sb2cA1VhNj9s2EL3nVxBFDwkWsosEjZPesptsEDQJgqYFcjNoaiSxpkiV pHbt/PrOULItS6TWSXrpIViH82b4OJwvSlQgtlKXrDCWcXb9+XUmTN1wLzcKmNTOc6UWiwVbts4u N1Iv+zWWiUfioHxfga/Ask0rVc5A30lrdA3aM+mY4xrIwh7cSYO2K/n9lgT0d2qr5ltgDrxjPz/+ 8Or3N08mNg5Ib3BLTnxrLrXHf2Az14CQhRSsMdZLox0zBfuANgupwJEtbUZ0hAhshDhfv2HkEdSy LIeCt8oz0/qm9YxMMc3rcDy+wNUIuQqGFu6N3brkSe6BcQtMWONcr4PiGFnXFoXc0ZlgB6L1dPxg NwUzm79BdJQDziR3bx0tEu+3H/8acE+yRo8xLgQ0eFdZGb9qhJiG7oFuqwOzVx8/v2M33ek0OhIg h3zE3+/RxUhfaqHanMhBzjb7EB2kiRRPGjk0oHPQYn9SPN3qs3PTPxzsSrPMJS60SwS3dx5q5vdN 4Cqfv3ieNSLDO213WanbE74yzn8DvONPrvAV9yw34NCHnnnbasE99AEajkLHcGO/QmmhCX7Bvyx7 cy5F6gc/9+47OkQNDMkiRAny26I7Hg8wTyjvKXpUHg2HAXQQFhaU4fkkUjN7rjy6Nl2fEdQ1y66H jr3vTAtTaungGCMeeW8st7LbpOHOrfGmp5qt7nO4QVdZI8A5Y/uQmniuC2lWAc/RJccjTByAV72k e3aLKinHyPMpsc+RfVJoqWjEhTXUxu5nNVOcsLTOUvY5IhLCFn3v84gwV4XQiwrjjW+w2Pl9EoHu d5ja8VbSg+K15+oqXNfV1aUl7+rqgqKHoJmiFy1FPZGzUjQOMzQ7CTRcGwdauVrF2kIRX96pIoq2 PrbclAkz+M8nJOrZ09g6T1l6+UuCZ1yAlOICaERCUrz8NXWG1NZRBVmI6MbxZSIaNZMyXxIhy/VY Nhuht50OW63OAjWmPwrSIYSs1Xwn67ZmCnTpK4pSNFhznVNZp63Llua4UMWePV09f3FSPwAxehtu sbSe1+DjkGRN3fX/UNfD7LE99wFKchlOsMCyNkpfHgR81ATw9FQBUdL9mhay0N7Cj7OORUyosuJk WCheskQDPyDbhuZH9F6hTWa9l90v2JFTaaxMTJKDtoa5nLcC2Kd3YdbJCvwx2QjXOj5BfCkpbEAm dJmFSU/HeMukFW3TR1OuwijLz3ti1FymkEBlWuzcG8Dhs1FSSK/2nf0cu8TYI/keR2R5JCBwJy48 WOwIUrh+iFu+pymH5gU3UO2LI2rkwuTQ09tjvPnKUUMK3i0tr4MdWdeQS5x/prRDIDS0cjwizSgN Dto0RcRcjUBvjPoOHyGtfgD8do0uNKcaRheybC38hq8DQEx3EiL4iDfUa7qU7FC8iz0Mp59uvnz5 icwfwMlBr2tO/+GgdxaA2MJ+MAD7Vv5NiYXwixMLsd+RWD9+rv9TesxG2u1qFY+02Rf9Y8ERiB6b znTSAg2U/RsHH+4aWb1+90c0NA5nR2L0BYCWTSBrjw9MC/+0aHP0FEqM7AleQns1O64eELPjag96 cLZPO2c45KdRw7E7jcJBonNCRrdqbN1fsPNRgo3M13HJXYOkfBGVrXPTWB0dvUrw0Mr4SxFlKREl TOqNU5u7uOdRhhEYF23p+d2kXkaimj4GetGczBuVOhhWshnRWhkd/5hSWAB6iWVdEh7LtjKCq1CB Rohz9ds/12/Br2+ldX59U/E49R71EXYPg65f364/WUw3G0uIDnctfc2b9Wf5FRb7NdaReoLEYYJe vDPJdUDMJlcPisq+fHi//kTDqr2hLpp4TBqxMWb7tPK1OsRrpP0ulr3/qWe3hxbd/2+AO3x0TAIK LFmdbPkwVmSK6wuAzorLQKfdF1hj5zYOBeQyilh2Hgainy8D3YF12GYWrqxVEujhkj0Hp6UvxJfg mnmUW5D0AkPZV3qKJGD9ejUGdF93+y8KoTkd3l3u0b840AbUvBcAAA== ------=_NextPart_000_0007_01C6C940.F0E88CE0-- From sergstesh@yahoo.com Sat Aug 26 19:15:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 538D33B007A for ; Sat, 26 Aug 2006 19:15:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08423-05 for ; Sat, 26 Aug 2006 19:15:32 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 5DD2A3B00C5 for ; Sat, 26 Aug 2006 19:15:32 -0400 (EDT) Received: (qmail 85005 invoked by uid 60001); 26 Aug 2006 23:15:32 -0000 Message-ID: <20060826231532.85003.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35206.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:15:32 PDT Date: Sat, 26 Aug 2006 16:15:32 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.469 tagged_above=-999 required=2 tests=[AWL=-1.302, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.469 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:15:33 -0000 --- Bill Cunningham wrote: > Ok Sergei I have follwed your directions with the & and background > switches. Not knowing this stuff is what keeps me from using your tool more > than anything else. Anyway the output doesn't really look any different to > me. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > There ONE '&' which says to run in background - the last one. Why do you care ? Do not run in the backround if you do not want to - it doesn't matter. The first '&' is related to redirection of STDERR. Have you ever heard of STDOUT and STDERR redirection ? Do you understand what the '1>configure.log 2>&1' mean in the suggested ./configure 1>configure.log 2>&1 & command line ? Could you please stop slandering my tool - you appear not to understand the command line at all and it appears that your not understanding the command line is not tool-specific. You appear not to understand for both my tool and standard 'configure'. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Sat Aug 26 19:20:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09E723B00C5 for ; Sat, 26 Aug 2006 19:20:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08617-10 for ; Sat, 26 Aug 2006 19:20:39 -0400 (EDT) Received: from web35215.mail.mud.yahoo.com (web35215.mail.mud.yahoo.com [66.163.179.94]) by menubar.gnome.org (Postfix) with SMTP id BE0003B007A for ; Sat, 26 Aug 2006 19:20:38 -0400 (EDT) Received: (qmail 98431 invoked by uid 60001); 26 Aug 2006 23:20:38 -0000 Message-ID: <20060826232038.98429.qmail@web35215.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35215.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:20:38 PDT Date: Sat, 26 Aug 2006 16:20:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c962$79731140$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-226052351-1156634438=:98015" Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.462 tagged_above=-999 required=2 tests=[AWL=-1.295, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.462 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:20:42 -0000 --0-226052351-1156634438=:98015 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Id: Content-Disposition: inline --- Bill Cunningham wrote: > Ok Sergei I have follwed your directions with the & and background > switches. Not knowing this stuff is what keeps me from using your tool more > than anything else. Anyway the output doesn't really look any different to > me. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I do not see any error messages in the attached cfg.log file. I'm attaching it gunzipped. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --0-226052351-1156634438=:98015 Content-Type: text/x-log; name="cfg.log" Content-Description: 1955179066-cfg.log Content-Disposition: inline; filename="cfg.log" checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for egrep... grep -E checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for f90... no checking for xlf90... no checking for pgf90... no checking for epcf90... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for gfortran... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc static flag works... yes checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes appending configuration tag "F77" to libtool checking whether make sets $(MAKE)... (cached) yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for unistd.h... (cached) yes checking for an ANSI C-conforming const... yes checking for pid_t... yes checking for vprintf... yes checking for _doprnt... no checking for geteuid... yes checking for getuid... yes checking for link... yes checking for memmove... yes checking for memset... yes checking for mkstemp... yes checking for strchr... yes checking for strrchr... yes checking for strtol... yes checking for getopt... yes checking for getopt_long... yes checking for freetype-config... /usr/local/bin/freetype-config checking for FT_Get_First_Char... yes checking for FT_Get_Next_Char... yes checking for FT_Get_BDF_Property... yes checking for FT_Bitmap_Size.y_ppem... yes checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking for XML_ParserCreate... yes checking for docbook2html... no configure: creating ./config.status config.status: creating Makefile config.status: creating fontconfig/Makefile config.status: creating fc-lang/Makefile config.status: creating src/Makefile config.status: creating src/fontconfig.def config.status: creating fc-cache/Makefile config.status: creating fc-list/Makefile config.status: creating doc/Makefile config.status: creating doc/version.sgml config.status: creating test/Makefile config.status: creating fontconfig.spec config.status: creating fontconfig.pc config.status: creating fonts.conf config.status: creating fontconfig-zip config.status: creating config.h config.status: executing depfiles commands --0-226052351-1156634438=:98015-- From billcu1@verizon.net Sat Aug 26 19:41:02 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 14F073B013C for ; Sat, 26 Aug 2006 19:41:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09382-03 for ; Sat, 26 Aug 2006 19:41:01 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 3F1493B012D for ; Sat, 26 Aug 2006 19:41:01 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00D88PSC4Q69@vms048.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 18:41:01 -0500 (CDT) Date: Sat, 26 Aug 2006 19:39:17 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c968$da2b7260$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C947.51DAE9C0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.513 tagged_above=-999 required=2 tests=[AWL=-0.395, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.513 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:41:02 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C947.51DAE9C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sergei, Thanks for your help. It's make that's giving some problems. It's probably something simple that I'm overlooking. Here's an attached makefile. Bill ------=_NextPart_000_0007_01C6C947.51DAE9C0 Content-Type: application/x-gzip; name="Makefile.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Makefile.gz" H4sICAna8EQAA01ha2VmaWxlAOw8aXfbSI6fw19Rrei1rcSSYseTdMvP/cJItK2JDq8oJ84czdBk SWJbItk8fCTOD9p/uUAVipfkxO5+O7Nv3qbTrgtAASgAhSqW85QN7Us+85a85flszn0e2Ql32cUt s9MkWMEg2229bv3MZlGwyoHtVUt7mjcZO85Qy4BAFWg5gT/z5mnEWxqgdYPwNvLmi4Tt/vzz/g7+ /Iv4+Ur8fC1+/iR+/rzD9l68eCF+7oqfe+LnSyBzFHHOzGCWXNsRZ0dB6rt24gX+Duv7DrI3XXhx iRNozhApJqQDliz4vXSAwty74jFL/aW38lC2kEcrL45hkCUBSBWCmny3HUTM9eIk8i7ShDMv2QHU ay9ZMBjAMkgTtgpcb+Y5gnK8w+yYLQN/jmWCbPpB4jkcOQwjHvPoirtCV0KGMArmkb3C0Xwel4FE yP8iCDlU7ARmhumWS3bBWRrzWbpERgCWfehPT8ZnU6aPPrIP+mSij6Yfd1AExOc3CfcTKVtCi7+0 rw8U60CDX3E5l7cKlx6AgKoi209uWTBjQ2PSPQGK+tv+oD/9iEIf9acjwzTZ0XjCdMA/1SfTfvds oE/Y6dnkdGwaIByKB39Zve92ipa1cwUm95NY5faL/fbuLtvb6/zlJfxllxxYCplxE7I6YefG9N8C hb1DGHZqO5d25BLQaWndQDc7YvF25KpAmat1B1eUxRzUKBZG2Yro9pIYybmBk65AZ2Ix2QwEtv1b FqZRGMRiDRc84qDFOeoItUU2MONAHhbzynOhF5cMqaFe7YvgiguepCxkDnYYcjvChbaBHxj2wByR EbHcFwEIqqis4wowtJ5c+DWycRqGQZR4/nxNrp18IuTQt1ccV7ukXiRI1obmiDRs94oDwRhIoiWE 6cXSczywFGAjsT0f+2ENMoUjW0AWp8hUnRsei0PuoN/ssOsIrdMH/XlINxMKgk+ZJwxa6FCIHnHh TiRSjHpOpTxx6iX2hbf0pBGX17qypDBFX3AjfVEuXw1c14tr2eLyG5wqRqGrXtIiM3xngB+CM3Tf 6ZMe6/XN7kDvD02mDwbKLfuGKbyVTYxjBJqO2fSkbzJzfDQFEAM9mvVH3cFZrz86Fpj94emgb/SK FMZHa16pj3rKLSFAjthojJSM98ZoyswTpFPm7q3BBn397cCQTgyBwzw1un19gNi9/sToTtl4Ijxw PDKN/zoDQjDKevpQP0YWJJJqfjjRp+YYppuAZObZYIrcH03GQzYYm4LhM1MK19OnOmKfTsbALzD7 4cSYngAeMK3D3+60Px4hAsw7nUBzh42M40H/2Bh1DUQcIzRSmo4h6ozPTMLZYfqkb+K8GAqBwFjQ BDIjQxIVigds5IWEOzUmIP9QF7SPymsBMSyOHNeL2CFraUkQWoWmFl7OYR+xZbu+TfVGexb4idwP EWTpXSgIWa0CeL6zTMHeCChvlgBx8ovUW7rZ9PbKshwX6t3eqT49OazV61/+Zp5YsAImyPq89bW+ jQOWaUB01kFXjRr78UfmuFp/ZE7RIA5ZO42j9oXntz0/TjAENR2Nqla8sMRSSa5UXwNAWHPFXu3v FyFhMY8n+nADcBHK7E76p9NNQMSSdWLoPTAFhFBdyERDS8DRYnDblRijDdPKei0MXw1thEs5sHIB O9rpxCi3x+a01EE4Z6MqVqUH8cpdiyBOgAUvXPIEOrxXP71qhk5z6fnpTXPup5reHYy7OgLXv5gn xmDwlRUWtbnX2mu9bIswB0Gz2YxS2AecZeDYyyYkZZo+7Bmn1pE+AGs9ZE+pPZ2cYRNaU33yGNKJ HWkCA0sTy1jTz6ZjcJCjR7EIiSMOC+R8wR6DvuC2yyNBYKi/Mx6LjjuA1NCHd4A7t68vtW4Xa44D FdDScNxDqi4PIQPgh9D/UuseDfRjlLsJtMZ7GsoNgU5MHt/GOCd411fBQKx1T08lQdY0sKGQte75 OQ48f441gnr+XECdn9839fl5dfKPx8I7P0AXdxaB1jOOxHDvRH9vWMhb/9g6ge5TyWMLCMZabzCY jsdoUe5ymQTBUuuNu0oICkFf27DPF4OH0T0Zq2mwbqGqZG2EU/qyPhW9xxNDiAQ7K8pkjHCPsGAW M7PEUieZ41PNODeMc0njHESzcnX3RZgRdt2m+EYwg/5bATEoQECYZM0l7LaQ9xy9fo0Ej7qW3utZ R7AhmNQGdemwy2R9gkC8gM2d1g9gcAyiB7JnQpajp3O29wpOHZ2Xe529fWb0pphRvlKguB6CerbU RxPDmH48Nb4tSxvPHMltyPc2i5pRuVfaD8sdMG4QeCHqa8pQE0D1s3aim6D4t+Mxmj5kQcJehDqh vSub58MBBH3TsIRAxUgqDIU6vqpArgAKUTyDyQbz4L1hbApjJXTy5vWtI9YGvUzBoJHx27+qqirJ wuvbgkgDKsXtr4FKEaY/GFmIsvQF1WmRGJjf2WSCuQ/qJG9aw/7ozLQgZVEDE+N9HzdMaO9jm/ZP 2CKO0Gl2O/udF9pQ7wtST2UN/jcmFjp67hPVgcwvMMARsQcHOQxwnj8LtKGJVmPp7/X+QPhcPl91 JJsQlNA7G6ITBxe/uekqxB7pmoEGKdOJddQfGGIDsFtwOFhA1kzljMoVlRGVcUKVK4VxS+VnWV7Y qiTUC07lnMqFKgOqeKr0qaJKBUCTX8RUpjSHo0qawlmocqUqhOoQKYdIOCmVV1SSFC5RdImiS1Lx JZXEGid6nOhxUgsnujOiMyPZZr9RSXgz4gtO7qqieoiTOVGYu1RyYmVOGHNiZU5TzkmUha3Ka6qQ LAviReld6WZBBBY0s0cEPKV/j1jwiJB3SaUaJyV4pASPCP5GhC6zUlWIk0sidEkiXdKyXZJol4Eq FSDNdJmqUmGQ8Jck8yXJsqQZl2TXS6XFJZFeEs9LIrAiK12RKa2I1RVxsCJWV8TiiuisSJkrorci Bnya2Cfd+YTvE75P+D7BBw6VJFhAdAOSPCT8kOaJCC4iOhFpJrZVSYLEygVirkoiFSsIEjUmUWM1 vlKlorn6TVV8VSH2YjXJ71QS+zGpN6b1iW9pICGaCXGVkP4TYirxLB7l1URVFRjxmhCvCTGUEB+J wiX+EkWA+EhuibGUCKZEULljSvZypTz/irR0FaiSSF6TJNcK8pogbkiUWzukCpG4JYDPC8vxs+ri MquucoB4nlUV75/lUmtj0/rQH73cy3eErCfbCcRZX2x1hWyQOq23Z5jqwX6AuKpzpA+NYhs3djhQ F3rg0FEFoi1TdhVPnOKUNNFHsFFBFc5qsHNrpgG7sEz6NbEdYvaGZ9B4oYk8Atp4dxRqOV2xR2q2 YzmJpY4w1BL7vaxnRwBqZom6bOe5M3VQdikb+a5JHVW+ZW+ZQzyEz2B3hNy82y2c1Mr96sRW7D0/ vwccBorwlETi8ZLSSexdwvkJsgXLDRJxG4B9v6dBgnAa6JJuE77wG+5YYcRn3s1X1LEmkqiNZ1Ux YtlLz44FEdF0wpSAqSPAwSoSeIkb4ISho9Ep6p5DVeHC5ItiSyTtWoHT4qg2SyxptyrHl3kx2ovK iptk2Hgc3yiaOKdnkolWQTDRrsgl+opilW9pMt7VmmCutj4G+Vue/SL/a1kfDTfB9POLovKqoenB /9h33zi2NaEXoJasMXkFzrKy/Wo3dGmr2AL8yI4820fdBEu3JKnQuBIyW518HbTNFzHoHzs38J8W 32eMOKCJpXc3Mu0EKy23n9IQTxwtsaM5LyyqZp69hWOwWQp1bAZWYENSHUcO1h3bWXDR6YGlwCEZ 9p840eAsOp3oVq9vYij8h8boT06oFTr4eak8FLdwUPY/kR1u4mJDqEaMbqaGd97r9AqDiiLZymcv BHBNXDnKruqVYjaQg6jTXkkKTSvj0xVIQ1vHkeKxTDAtTi/U5SPda1nDfUElvxlttOn+qrXa11aX ZN4wEK+f5xRGCUxTFx/qWolYX6iB7sDQR9kBpqq3krBFMdYUquFyW+b4bNJFSlp21VnQBHJa1mcD FmFiwFnS7L8XW+GxIW4f0NebEXfSKPauOHOvvEIrdGeFFnASxoW2CgEVEql/zwDgY+86AYytG7rR 68roBXVvgN/EQgkdfMi5XEesdEv9dsfDodjAJ7CekDTUt9WqFz/b5r3Zd2Smn01PxuDPMGF3fPoR k5DuAnyZD4I5U5ewhY+KbGR8MFlufYJTaQnzFD/bKEPCCZXJpBf5l+vCN2zp0rAZQxAK2ZojrgeG jb79pBwk8lAPp4+VDafeGM8Z8tRf9gFpmllAA7+R9YYGEJ3cJZ7UtzGRQjPVhyKnEhcrDVZaM01r mWdHR/1zw+zIzwbkSjhN2Z2UDBCQ00xjMmpSYwnah7CV6wr2TO4H2saF7bCnpSWqOH5J4SBCFlQa sHRuGRi/XIBKkYS6NG6wJu7VLJtCUxWcd7OlrV0llSQuTJtB4MRZ4GqV4Vn9DYyhRsFWcIrYWtm3 FxyixDfn6Wy0eBmNYV3AtqdnptUzTo1Rzxh1+was/JN7mWjiUqPzaRuollVxv8az2c8mRnVmoZTC OsglQHAhaIEKzlaaYyOyhG8UGNCH0nDV9tRadCDBtldhc7GrPXnjzcRGzX5gzRnoXLzq8KU5RCvs U7AHykakfZS6+TLmrHPAZp6mqYH1hZDx4TtW8qY866PNJnPgtRUT08s1e5insM2uIpdIbqKwgkmQ OovNsmoafql34EDhNxdu1NGeNKV0CiYXsxLlOt9W04ag+Af8SyvF2kdMGf6ZCWXUfshsWXz/c7Lh zvJw4VRC+Aem1FZwslneyvWme/R8zZ9BfAcf3DQYzRjE+ouY4YEhLlrNGhV1PV9JYexVh9wbM6nC J9jqp16FlQN3KnkZuGB9u/ytV0TI0jaKAaZnmFPMbxU6qgiQMf8/3CrT3DoQr0JCfDVTryPEARwR ZEBRAQiEq9XrYY0ikHt4wERYcQ9ruXPVMMZQJJod1j7hZzegGLI7hq9ompxtxXe/tp617+62PtUI UADVMjGLGgI56i7ibxanXa/Palng+0PoAtsNfEgV8jUraL+o7uwL+B/R42PVIe3p+3J/Dy4XMEvn H2iDJfjOhvPA4y2xeIgrKrFC+f+IPW5U2EabKslVtso/QWSjbZZX5bvm+QjN/nkLvVcNDwAtCEsv Q2GEO0kQ3W7FTB7ARVM8E4ScUUZzEAQSUA4/fBDlNkiZY/v40OcpjMhHoCvx2A8/LX7Cb4tb2au2 eSAe7C2iIJ0v5Cu5LGFGJgLmiGOXeFN3ZS/hLIXP6YjKFd4cXUDi2xHnG267OMhdD18cZoRifPe1 vdsQdivISCx8bhfzBNfhU2mn2toRNKq9+F4L/mxfLzxIZ8RLWMdOY8lbNhm+PrzgLOL5a+dr9A7U S66AxgHytNdgASBH1x4+GQ3tOBa0XB6Dot1MXvk2lmSGQyHepuFtIaiovr12H9BAi0S5Zn4QwQ5d z05mB8xezQ7r9T1a6MSKOfcP/UC05Z3WIdnfGzK/uJ0f5drtTwJSGbY6F5JF0w3NBrOW1goqwmWp 1+VMElAiKSNVkaWWDUBwrLVqxZwb35ES57c8PlCd4uRtkRA1NQls+5nLYGj6JrCCzOLVNmY4xIlM bTYfeEHeAsEGzXJ3B/YBcwJ90HsN5X12+KzB+A3Y1u7BAXt2Ca2Z7S2FINAujPHYdjJ/FJWCbpQC hHb8oKSe+3gsqQR5o6nEVQEILCP6Z4RDlmrlXC2/b6m280yseE2DNwz4HJdHzcrgH7RO0uQboUYh aD7xM7DVtQlBmcpOixcajS12QKtbgKgOZtqP+NXh1nft+ztm2zkoGR/SzCCBFrQrlpetOYFCwVq1 R3pplWUg8r/mkf/JzodzrzlHYs/jkk0/Oiaua7WFTD9UamSgkW/Yzr+dIafCkWZM5SsrjgOyRQ+v NK1LYwJJtrIx7Oow7NK0fg+TXnmRgEu9TTfmWB30zVMsEVJeITYKUudwBewNKFuCY8jtfk/54SfU kLdJOdWk11MOQNmaRy4um1nyKwYyixbWdJddJH5412BbSPoLE5nD3+v1F//EN18H7KuaFf4Yox5C AGfbgjUB28DfU/DBYwF2S/o75PyQLc76PWBHyqNpKGiHlW3jHoWWL6CEhkoXcTjFk5LqlEIxKM3j Q8EE/mbK4afw2v2k9qxtsf6s2RRlU31QbjaveIS/X9Fgv7RdftX2U8in9n75cbcYWQjaCkL8/YrD CpH8Ym0zcBGMFuHRXrEx/rU2B3ZlHwq0LaxcXR0LCFSUCHmgEjCOMsf1OqqvXUK/b2f4lqGXl/I/ 2ujzwLwtIowFObDZkApWblCTdCGWEVBDVdQOgqGs3FEglnGVLZvyLkeGKhG+ZBDrMOff52z/bxJV k+g+xCS6yiS6VZMod3QfYhLHwgrU0sivM4679oYYgwKumyQkfi2mcouuBuYyenowfFxgQIaK4j2o sMXsElREHtgKBA47nsjC/DiEn+Khudh4MTFWH98oTZafTBuqWbClqXGO74ile2RPFhqa+OUg5EN9 ns/r+CtA4o1Wo1nfpudUDfkRMOKr4IoX8PA1wpfsQwuqg8Ya9FABFgsNxC8NNcW7dBdR8Ff2WHPv xQsmPjrje9zAZenza/blK9s62Cq8d0DFCj1FBVpgQfAXlvBv/VPLGL3Hp/LNC3yhgRDZ7Y/41mWh V8jj/qHkqUWszIARtMh8ZR6KoPTWId2rlEYaUVlfDdzuxelhO+/ZcO2nBtutYgOfnhSaYHJ4JhOG J96V0ekiv8Sr0TFjK75rwX9z5WlBuBGrYMf3YBZPZln8QddGFW2KOyKXh+Sbhsn/8gCDuTyMZTwI SDV5Lb77FTbVnNX23V3tkzoGVr8LP4BUWfD2XfXLSYF6dpQoRU6SBExa9rjUk92ktrKr1EzGYgD1 os3sicvCnfbff23/81m9vrND6i6lMSKH+eEwR1Xnm+LY2pULzFhrS4CC3ioGV8utqgRaTJKQ0tZW 9bCX6QY14bZL2qhuPG5pYxGKVCIALrJf0FmRAphRCN42Wcev8F25HhFPpLysqohkfH4XfWOSmDsg USEAPLniDJsnWAcuzVRIE/8lya5bZo1I58xVo9QmmIqmqwfObPHuO3nmKQIrbEWHFIjUzLUinIJp tdrf4K0AWZjlmypvfneDev36dWmDsp9H1ze4Rf3jgDVpHX5YR9vf32f4pvQyZrtV/AdgV3bFhyHh lAKp8HRu/VdxiZYkB7TQfsUkzYkYK2xRWGnOxcdm6sNdS/wmKaSoiwD2wqLu7hjuxRAB1ZbcYIiM 8/6Sg7USO2rNP9+3UYpJxXRN8XzpXzcxfUOhu7XUhwrd7yNHwovFP4EgP6ew9yIvU28txD8o0GJA guO/ewD2Nk9t8e894CcG9a8mlP6ZA/E5YznDT6fiJlT8SxsrecVn++JDA1ACLuTXFZGgYG4idXJv orGuitQnZazpgt2xTK03oFR8rqdMoXldSraUIV6Xcpi1eCF31U0DaImKfpk4OKNjKUP9n1autreN GwZ/v18h3IKlAWrf0GwDJsNFgSBYgKLJkHVDiyRd3Nx5CWCnrs/NEqT57yOpN1LSnV2jAVokdyLF k0iKlB7qI0QOMhKXLGwoLhbQD2cf9Pl5daHP8P/nFayjPiAH1nXjPMzO49s3WCA7qFbzxVM1mQ/q q8EO/FSlDO2j7/Evh0MGwRoMzLIEbgl+N3hj7CT6Gu/JTPx0cHR48PqfAJ/iXrFnv27d+/ruZm0b Up+1rVxx/4btNmPq4/H1H5JG73byusbV+X1JFSaUq3QnG2j47JFxxGUNZhumlmRNIqedoFglX9N6 vswe5Y4lsRzvLXlEw7slFzae+TFlM+GJ0lajwOjJpIEWEiQpR35dfgrqnW25kc7QQiX48KDNObxN OIU0sNPJvnK5U8wfnPqymdQPFLlxd1+6HRRKr65HbTWsxtW/o8XoHv/tZrJWPHrz3iidCBo0F0lf Zlv5LBbXyP9g+Z9dYrE8hCT+1OXRni0dnp6enGqzS6NmzXSlJtNVswyapUs14hri4/tbHAcHUyjj EB5/LPoBbIoM07Z1tw3tlYLv9Eb2s+7DRGOvUerljy+inF6HyWUo0V2fXOzSEQqXX4yMZEaYiU+3 swcCCdAlZy4koBXDD5aRSNlNbeiYT1duw4FPVfNZ/eS3vrpnCm9Vo2XK4z/s5Pk+osnr6523k8Np MPuTuSbE+GRe2GGNsfzmbbjECxc+qo/wSFbmS7VifzAm/CliATfF63VDZgrH03eZdkfxc3gvqyF8 I6ydCI1kJUXAHelcSYQXgo8jIpJ611gjCF75xvsEykL4i67iCl9MgNsfursQILrYAVOy7JUNLjlL b/TpI5HPscvxoDWMLt0mMGa/+BqM8etXp4hG7SPhMLYdU1t8MA6E5aWTSyAiCN5zc6UdYDX8HfZk /TO3LetB9qzwAfQoAS8EQrswUCbhoD/wK7RHwFVNy0Igb+39c6UnBHurm1kD42ENnHKH+QT8TPP5 C5i3uQJtMlMImiX6ZUPGPyzNl+kY8uG+GBVOiKsEIlfx0ULVCs4jBxphY9RdJLLnW/mqi8AqyAOK nUwCe3JdM0/mxcUcXuymg8R3N1pWU9Ez8h9UdKmj0ivz1L0XphXsO2AHpfkRjIFOTXM4w6KIbJd1 4UTJVWyFVqA7Whq44RJrn07BNNvN0nIaba3S5Uk/rxpT1JPOZdIvDhuf4FQyO7sCraRVFrokEU3I OmPPKoNQL4pFPdWykI6emfFbwJrDa+rwiXkT/DX2lgM3x4V28InmGC6vArK17izTK4rhH0cnx+/x LCEFCJoTS3s2hDG+kdCmc04zjC2hOH1GnsDD6LwKiaKDULENwwJsvw0RJlqa4lb2m8OnkWRR1OXO nyxxlPFhDmzsPaqpxNFWbMKiIkmXO4XZzxk/s3S0/3gtXuMceuotk1WekUX1mFx9VEYTO6pAmUtR WVXltCkZxQ0y34/cEqPH4EzEdGFoZIiHNLF/6HQYucaMFfMCWS+B1KmjyPsddBzKeAukk/W4i1aR txAehE5nY9gO9wuKe5atHEtnvW8yjdmgs0iVUxPc56ynFIIVpl+kaRHe9QpJ8RIvYsUtS8gVWvpl LbcyAIGCBG7N6e9URZUXecINJVDfiVv6Od/4Ed9D9G8WeGohHpiUktz3gQ4y4XsvubsKofJ3IsAX Du6I8gf1Fq9GttiwVp3tD3/57fn+8Nf9PYT2/378F11OhmEq6ktzjwk/rWG+FgDrBk4cqh6S6Pah XTVzRXdsq2cYL//50P6tIAoGM21XexQMf8R7qq+apsZ7sYfHJ4fv8GoaXfwPFJRH+sFcAAA= ------=_NextPart_000_0007_01C6C947.51DAE9C0-- From sergstesh@yahoo.com Sat Aug 26 19:46:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 831C43B010E for ; Sat, 26 Aug 2006 19:46:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09405-06 for ; Sat, 26 Aug 2006 19:46:18 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 7B1683B010D for ; Sat, 26 Aug 2006 19:46:18 -0400 (EDT) Received: (qmail 77568 invoked by uid 60001); 26 Aug 2006 23:46:18 -0000 Message-ID: <20060826234618.77566.qmail@web35209.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35209.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 16:46:18 PDT Date: Sat, 26 Aug 2006 16:46:18 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c968$da2b7260$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.455 tagged_above=-999 required=2 tests=[AWL=-1.288, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.455 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:46:19 -0000 --- Bill Cunningham wrote: > Sergei, > > Thanks for your help. It's make that's giving some problems. It's probably > something simple that I'm overlooking. Here's an attached makefile. > > Bill > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Please run make 1>make.log 2>&1 and attach make.log - gzipped if the list rejects it. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Sat Aug 26 19:57:59 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 875183B0071 for ; Sat, 26 Aug 2006 19:57:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10107-01 for ; Sat, 26 Aug 2006 19:57:58 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 7DFE93B00C5 for ; Sat, 26 Aug 2006 19:57:58 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00JRTQKB2FBB@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 18:57:48 -0500 (CDT) Date: Sat, 26 Aug 2006 19:56:04 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C949.A9F2E020" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.612 tagged_above=-999 required=2 tests=[AWL=-0.296, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.612 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 23:57:59 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C949.A9F2E020 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Ok this is it. This is the error I'm getting. ------=_NextPart_000_0007_01C6C949.A9F2E020 Content-Type: application/x-gzip; name="make.log.gz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="make.log.gz" H4sICOve8EQAA21ha2UubG9nAO1ba28aRxT9XH7FiFahjQQEkkapk1iKEjuxlDiuavVLEplld5ad 7GPo7iw2bvrfO8ueu++lwalUbcESvsN9nPuYOTBG2DdczpjhecOQm3EYiRXv+Vr3YfLpiJ0Eioci WDBLaKuS4ZrNxrYMlCkDWyyG09F09HDQe2e4iZMGYSJguT0Fmn4tUEExyEPPpXKSSCXZnDNLBlxn CNlMZxuMcre33FjtlKBStDn0jGD3itOwQU/YbGGabPjqzYvfT65evj8/PXt99YYNz0b0SH+No9Ck Z+M4CseeNA1vLALTiy0+tkPO1XrJp41mpn+GCzZ8r83vLqnmkdTPXunHhX6csv7I4suIKhtdLmWf fex9pyN1YlkImikeKTa02YB05oB9+cK46Ug2GI0Hs0z/NEFQDg+Yv0oimnJUdBeyv4niXsRZ6LdE PWX8Rig22bjaojeei2AcOUwPyhNzJaXHhkNfWvy5JwJ3M2KaACt0wwptsZ7v6j1jIw0Q9TabgpHl 7rl3Ly3NNjfPnZ6OfD5bXluzp+xH02Ijdu8e++FPrf2L6maGMZKhcpgxh7QhfcgQMlJYrChiDXmb yrlBEqFzDrmAdEhKLATJAAuS5IDk8wgyRg6TJFKYDkmfFgg1AWUCwowhV5DowgKiBUQLXXEPEqVx 4HHgcYyFA9cGjo3e7M+QiLNRlx17tCANKlkAYWFBcpSyQMQCpSyQcoFWHIPkNRboxUEtNHeajQMA B5kFAATNX6AEASDhQpIdQxAYggDgZwC5maQFKnEB5KIlF9vmojVXkiRHZHJjkhSB5l307KIXDxk9 nGuPpugB2kPNHgB8nFIfR8lHqT4q8FGqjxJ94PgYpg88HwUESBxgdgHiA8QHiA/gL01INCaBK9H5 EvFL5AnhFwInxGQigyQaiYgCEScJqIg80GqEViOy+yQJ0/9Mi4AWKC+iJH9AovwI442wP9EaBgVM haoU5q9QlBJXPMyXipbkhloValUoSKEORbGoTxEA6lBrFBYDMAYg0THGeVkR81eY0kqSBOQ1Orkm z2t43KCVtbHEAhBrONw6V2aQLR03W/q5Q7TIllT7bbrVP7FnyVsLXsnHeNVXvj4pDjvO3wV2vFXQ JaB8pdDv9LteJ3TI5irR/jZoSn8pPP41l43drxfNylen788vkeTixeWb54N+wY0rc9NH1B9UbjnV y4qhpC/MkddyXYG5fl/J44o3FmjrVxYytN5Ziomqygtvy7WlEFi9txSvHP/p3nxs3JuP/eoN9J83 pt51siP5fPUG2RdnL3UNm98y7T4PkHsziOIplex4bPHVOIj1i8D0+N7kf0vnuX7N03eMNjrDXKdz HlekM7R1OpOhlc7FRFXlVjoXAqt07tzJbd6MeqfpyaWZtlIYDh2k8B0HUTyZ+0Nh0zD1HzxtDE6t dQJnUUX+pso6faFvZW8hSUW3lbt5WOep27gJtT7T84pptvI2tXeQtncZQuEw7hFl7UU7Ye2mj/sQ USKr3fRZ30bbTlS7+jlfotlOUrv5Q77unc760Cs94mQmE2wnp7Z2kZo7NZ8duT2ipGOEEVfttIS9 gZp5ZImeUDdQlCztNC0mq2m307UQ2n3KNm9KQ684vTTZdvrCo4sUvvMwSsd0fyhtzdvfZRNbncqI KNI4UdUpvNG20jcDL2m20pZCOk/ZhqFXekxP52aCrTRNrB2k6G7NZ0dujyjJbSP22t9lyd5AzTyy RE+oGyhKlnaaFpPVtNvpWgjtPmWbN6WhV5xemmw7feHRRQrfeRilY7pHlBZhO521rYHKaUSJxlrV QOFE205fAi9pttMWId2nbH3olR5xOpMJttNUW7tI0Z2az47c/lCSkrfyMnOok7MYW2Ropq/TNDe1 crWcsK7eytpScOep27Y5Td2m5zifbyuTMxfZK/of/fzwaPLgiH1PLfCbJTdVxPqnZ29Pzl+8O+kz GbJn9Oy4HM3OAmbHgamEDNjs1HzN1YW44d5v4pYPjsq+08dPjhgPQxkeMYuH3NaPwEy+K7GUIvna RPLVT12GZpXHFWdJ2PZsp9p0qU2/xjxcV9M9mXxruifTx9+K8Ohba/jlwaN/EUEEK8MT1saLGeEi 9nmgmLTZbHg8OCQ+JD4kPiQ+JD4kPiQ+JD4kPiQ+JO5y4uxb6ffv32cfSn9YfmInCQKb7Pgd+M03 17P/G9zglv6nsII7+UrcFDMHJJhp729uba7luDgAAA== ------=_NextPart_000_0007_01C6C949.A9F2E020-- From sergstesh@yahoo.com Sat Aug 26 20:11:33 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D84BF3B0071 for ; Sat, 26 Aug 2006 20:11:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10557-04 for ; Sat, 26 Aug 2006 20:11:31 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 967543B010E for ; Sat, 26 Aug 2006 20:11:30 -0400 (EDT) Received: (qmail 40590 invoked by uid 60001); 27 Aug 2006 00:11:30 -0000 Message-ID: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.156.47] by web35211.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 17:11:30 PDT Date: Sat, 26 Aug 2006 17:11:30 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.448 tagged_above=-999 required=2 tests=[AWL=-1.281, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.448 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:11:34 -0000 --- Bill Cunningham wrote: > Ok this is it. This is the error I'm getting. > > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > This is your first error message: " 84 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../src -g -O2 -MT fcfreetype.l 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o .libs/fcfreetype.o 85 fcfreetype.c:53:10: #include expects "FILENAME" or ". And it is exactly the same error message which caused me to file already mentioned bug report: https://bugs.freedesktop.org/show_bug.cgi?id=7862 . Did you read the bug report and did you compare my report with your error message ? I have no idea how to fix this. My tool currently uses installed at system level fontconfig. You can isntall precompiled RPM on your system or you can start rolling back versions trying to find the one which compiles. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From g.tagliaretti@gmail.com Sat Aug 26 20:17:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4614A3B012D for ; Sat, 26 Aug 2006 20:17:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10473-09 for ; Sat, 26 Aug 2006 20:17:10 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by menubar.gnome.org (Postfix) with ESMTP id C3C963B0116 for ; Sat, 26 Aug 2006 20:17:09 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so2558982ugf for ; Sat, 26 Aug 2006 17:17:09 -0700 (PDT) Received: by 10.67.103.7 with SMTP id f7mr2855955ugm; Sat, 26 Aug 2006 17:17:09 -0700 (PDT) Received: by 10.67.123.10 with HTTP; Sat, 26 Aug 2006 17:17:08 -0700 (PDT) Message-ID: <35bf41160608261717g40e347te71aec0363699144@mail.gmail.com> Date: Sun, 27 Aug 2006 02:17:08 +0200 From: "Gian Mario Tagliaretti" To: "Bill Cunningham" Subject: Re: fontconfig error In-Reply-To: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000a01c6c96b$323a4100$2f01a8c0@myhome.westell.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.442 tagged_above=-999 required=2 tests=[AWL=-0.042, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.442 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:17:13 -0000 2006/8/27, Bill Cunningham : > Ok this is it. This is the error I'm getting. can you please STOP to open a brand new thread for EVERY message you have to send to this Mailing list? thanks in advance for your cooperation -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ From billcu1@verizon.net Sat Aug 26 20:42:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0714E3B0012 for ; Sat, 26 Aug 2006 20:42:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11669-02 for ; Sat, 26 Aug 2006 20:42:39 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 0291A3B0116 for ; Sat, 26 Aug 2006 20:42:39 -0400 (EDT) Received: from win98 ([141.153.59.197]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M008IUSN0UQK0@vms042.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 19:42:38 -0500 (CDT) Date: Sat, 26 Aug 2006 20:40:55 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Sergei Steshenko" , Message-id: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.371 tagged_above=-999 required=2 tests=[AWL=1.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 0.371 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:42:40 -0000 > This is your first error message: > > " > 84 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local /include > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ src -g -O2 -MT > fcfreetype.l > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o .libs/fcfreetype.o > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > ". > > And it is exactly the same error message which caused me to file > already mentioned bug report: > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > . > > Did you read the bug report and did you compare my report with > your error message ? > > I have no idea how to fix this. > > My tool currently uses installed at system level fontconfig. Ok I might try as a last resort to compile and install fontconfig at the system level too instead of putting it into /usr/local but I doubt very seriously that that would change anything. Bill From sergstesh@yahoo.com Sat Aug 26 20:56:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BBC3D3B0139 for ; Sat, 26 Aug 2006 20:56:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12062-08 for ; Sat, 26 Aug 2006 20:56:35 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id D67733B0129 for ; Sat, 26 Aug 2006 20:56:34 -0400 (EDT) Received: (qmail 56939 invoked by uid 60001); 27 Aug 2006 00:56:34 -0000 Message-ID: <20060827005634.56937.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35211.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 17:56:34 PDT Date: Sat, 26 Aug 2006 17:56:34 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.48 tagged_above=-999 required=2 tests=[AWL=-1.236, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.48 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:56:35 -0000 --- Bill Cunningham wrote: > > > This is your first error message: > > > > " > > 84 > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > /include > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > src -g -O2 -MT > > fcfreetype.l > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > .libs/fcfreetype.o > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > ". > > > > And it is exactly the same error message which caused me to file > > already mentioned bug report: > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > . > > > > Did you read the bug report and did you compare my report with > > your error message ? > > > > I have no idea how to fix this. > > > > My tool currently uses installed at system level fontconfig. > > Ok I might try as a last resort to compile and install fontconfig at the > system level too instead of putting it into /usr/local but I doubt very > seriously that that would change anything. > > Bill > > > It's compilation error, so if you compile it yourself, it doesn't matter what the install destination is. I suggested you to install binary package, --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From leolists@leonardteo.com Sat Aug 26 23:49:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50F413B0195 for ; Sat, 26 Aug 2006 23:49:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17610-01 for ; Sat, 26 Aug 2006 23:49:25 -0400 (EDT) Received: from ash25e.internode.on.net (ash25e.internode.on.net [203.16.214.182]) by menubar.gnome.org (Postfix) with ESMTP id 8BC5D3B0071 for ; Sat, 26 Aug 2006 23:49:24 -0400 (EDT) Received: from [192.168.1.10] (ppp211-139.lns1.adl2.internode.on.net [203.122.211.139]) by ash25e.internode.on.net (8.13.6/8.13.5) with ESMTP id k7R3n8QN047477 for ; Sun, 27 Aug 2006 13:19:23 +0930 (CST) (envelope-from leolists@leonardteo.com) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <0323DC2E-D9AA-4B37-BBD4-D1549A09906E@leonardteo.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: gtk-list@gnome.org From: Leonard Teo Subject: Compiling gtk+-2.10.2 - can't find pangocairo package Date: Sun, 27 Aug 2006 13:19:06 +0930 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 03:49:56 -0000 Hi all, I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat Enterprise Linux ES release 4 (Nahant Update 4). I've installed cairo and pango successfully, but upon trying to ./ configure --prefix=/usr gtk+, I get the following error: --- checking Pango flags... configure: error: *** Pango not found. Pango built with Cairo support is required *** to build GTK+. See http://www.pango.org for Pango information. --- Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ -- [root@server1 ~]# pkg-config --cflags pango -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/ include -- Looking at the configure file, I see that it's trying to look for a package called "pangocairo". The line in the configure file shows: PANGO_PACKAGES="pango pangocairo" When I run pkg-config to search for 'pangocairo', it's not found. I've gone back to the installation of Pango and found that pangocairo.pc is in the build directory. It's all there but for some reason, make install of Pango doesn't copy pangocairo.pc or any of the pangocairo files into the respective installation directories. I've tried to set the PKG_CONFIG_PATH to the build directory of pango, which forces gtk+ to configure but when it comes to build time, it fails. Does anyone know how to build and install 'pangocairo' so that gtk+ can compile without a hitch? Thanks! Leonard From sergstesh@yahoo.com Sat Aug 26 23:58:46 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0A1953B0126 for ; Sat, 26 Aug 2006 23:58:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17973-02 for ; Sat, 26 Aug 2006 23:58:43 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 4AF793B0139 for ; Sat, 26 Aug 2006 23:58:43 -0400 (EDT) Received: (qmail 57304 invoked by uid 60001); 27 Aug 2006 03:58:43 -0000 Message-ID: <20060827035843.57302.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Sat, 26 Aug 2006 20:58:43 PDT Date: Sat, 26 Aug 2006 20:58:43 -0700 (PDT) From: Sergei Steshenko Subject: Re: Compiling gtk+-2.10.2 - can't find pangocairo package To: Leonard Teo , gtk-list@gnome.org In-Reply-To: <0323DC2E-D9AA-4B37-BBD4-D1549A09906E@leonardteo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.435 tagged_above=-999 required=2 tests=[AWL=-1.268, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: -0.435 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 03:58:46 -0000 --- Leonard Teo wrote: > Hi all, > > I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat > Enterprise Linux ES release 4 (Nahant Update 4). > > I've installed cairo and pango successfully, but upon trying to ./ > configure --prefix=/usr gtk+, I get the following error: > > --- > checking Pango flags... configure: error: > *** Pango not found. Pango built with Cairo support is required > *** to build GTK+. See http://www.pango.org for Pango information. > --- > > Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ > > -- > [root@server1 ~]# pkg-config --cflags pango > -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/ > include > -- > > Looking at the configure file, I see that it's trying to look for a > package called "pangocairo". The line in the configure file shows: > PANGO_PACKAGES="pango pangocairo" > > When I run pkg-config to search for 'pangocairo', it's not found. > > I've gone back to the installation of Pango and found that > pangocairo.pc is in the build directory. It's all there but for some > reason, make install of Pango doesn't copy pangocairo.pc or any of > the pangocairo files into the respective installation directories. > > I've tried to set the PKG_CONFIG_PATH to the build directory of > pango, which forces gtk+ to configure but when it comes to build > time, it fails. > > Does anyone know how to build and install 'pangocairo' so that gtk+ > can compile without a hitch? > > Thanks! > > Leonard > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Try my tool - see signature. You'll need to perform trivial editing: http://appsfromscratch.berlios.de/ -> http://appsfromscratch.berlios.de/README -> 3. FOR THE IMPATIENT: CHANGING VERSIONS OF TARGETS TO BE BUILT. I did check myself that gtk+-2.10.1 compiles. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From leolists@leonardteo.com Sun Aug 27 03:35:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E12C3B00E6 for ; Sun, 27 Aug 2006 03:35:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-09 for ; Sun, 27 Aug 2006 03:35:57 -0400 (EDT) Received: from server1.leonardteo.com (ensim1.ausrack.com [216.127.84.46]) by menubar.gnome.org (Postfix) with ESMTP id 2D9B93B00F9 for ; Sun, 27 Aug 2006 03:35:57 -0400 (EDT) Received: (qmail 25133 invoked from network); 26 Aug 2006 20:42:05 -0500 Received: from localhost (127.0.0.1) by localhost with SMTP; 26 Aug 2006 20:42:05 -0500 Received: from ppp211-139.lns1.adl2.internode.on.net (ppp211-139.lns1.adl2.internode.on.net [203.122.211.139]) by webmail.leonardteo.com (Horde MIME library) with HTTP; Sat, 26 Aug 2006 20:42:05 -0500 Message-ID: <20060826204205.2oc3m5yhsg800c44@webmail.leonardteo.com> Date: Sat, 26 Aug 2006 20:42:05 -0500 From: leolists@leonardteo.com To: gtk-list@gnome.org Subject: Compiling gtk+-2.10.2 - can't find pangocairo package MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.503 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -1.503 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 07:35:58 -0000 Hi all, I've been unsuccessfully trying to ./configure gtk+-2.10.2 on Red Hat Enterprise Linux ES release 4 (Nahant Update 4). I've installed cairo and pango successfully, but upon trying to ./configure --prefix=/usr gtk+, I get the following error: --- checking Pango flags... configure: error: *** Pango not found. Pango built with Cairo support is required *** to build GTK+. See http://www.pango.org for Pango information. --- Pango is definitely installed. pango.pc exists in /usr/lib/pkgconfig/ -- [root@server1 ~]# pkg-config --cflags pango -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -- Looking at the configure file, I see that it's trying to look for a package called "pangocairo". The line in the configure file shows: PANGO_PACKAGES="pango pangocairo" When I run pkg-config to search for 'pangocairo', it's not found. I've gone back to the installation of Pango and found that pangocairo.pc is in the build directory. It's all there but for some reason, make install of Pango doesn't copy pangocairo.pc or any of the pangocairo files into the respective installation directories. I've tried to set the PKG_CONFIG_PATH to the build directory of pango, which forces gtk+ to configure but when it comes to build time, it fails. Does anyone know how to build and install 'pangocairo' so that gtk+ can compile without a hitch? Thanks! Leonard From michael@elehack.net Sun Aug 27 14:06:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D3843B0079 for ; Sun, 27 Aug 2006 14:06:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16684-04 for ; Sun, 27 Aug 2006 14:06:10 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id C380A3B00D7 for ; Sun, 27 Aug 2006 14:06:09 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=bezalel.local) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GHP1L-0000Zl-8V; Sun, 27 Aug 2006 13:06:07 -0500 Subject: Re: fontconfig error From: Michael Ekstrand To: Bill Cunningham In-Reply-To: <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> Content-Type: text/plain Date: Sun, 27 Aug 2006 13:06:06 -0500 Message-Id: <1156701966.7990.3.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.401 tagged_above=-999 required=2 tests=[AWL=0.063, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.401 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:06:13 -0000 On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > This is your first error message: > > > > " > > 84 > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > /include > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > src -g -O2 -MT > > fcfreetype.l > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > .libs/fcfreetype.o > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > ". > > > > And it is exactly the same error message which caused me to file > > already mentioned bug report: > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > . > > > > Did you read the bug report and did you compare my report with > > your error message ? > > > > I have no idea how to fix this. It looks like a result of FreeType's housecleaning.. The latest versions of freetype removed the public install of old internal headers, which half the projects on the Internet (it seems) used. They were never supposed to, but they did. Result: many packages are broken. Installing an older freetype (2.1.x I believe) is an intermediate fix; otherwise, there are patches from freetype's website for some packages, and many packages have appropriate fixes already. It's been a while since I looked into this, so I don't remember details, but that should give you a starting point. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From billcu1@verizon.net Sun Aug 27 14:29:13 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6FD563B0149 for ; Sun, 27 Aug 2006 14:29:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18408-08 for ; Sun, 27 Aug 2006 14:29:11 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id DCFDC3B002C for ; Sun, 27 Aug 2006 14:29:10 -0400 (EDT) Received: from win98 ([70.105.150.96]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4O00FSI608NDDE@vms044.mailsrvcs.net> for gtk-list@gnome.org; Sun, 27 Aug 2006 13:28:57 -0500 (CDT) Date: Sun, 27 Aug 2006 14:27:14 -0400 From: "Bill Cunningham" Subject: Re: fontconfig error To: "Michael Ekstrand" Message-id: <000a01c6ca06$6be322a0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060827001130.40588.qmail@web35211.mail.mud.yahoo.com> <000901c6c971$75f02e40$2f01a8c0@myhome.westell.com> <1156701966.7990.3.camel@bezalel.elehack.net> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.722 tagged_above=-999 required=2 tests=[BAYES_40=-0.185, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.722 X-Spam-Level: * Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:29:13 -0000 > It looks like a result of FreeType's housecleaning.. The latest > versions of freetype removed the public install of old internal headers, > which half the projects on the Internet (it seems) used. They were > never supposed to, but they did. Result: many packages are broken. > Installing an older freetype (2.1.x I believe) is an intermediate fix; > otherwise, there are patches from freetype's website for some packages, > and many packages have appropriate fixes already. > > It's been a while since I looked into this, so I don't remember details, > but that should give you a starting point. > > - Michael > I came across a package called fcpackage. This enabled me to get fontconfig installed and cairo. Now it's Pango that's giving me the problems. Bill From sergstesh@yahoo.com Sun Aug 27 15:44:04 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 95EFB3B0079 for ; Sun, 27 Aug 2006 15:44:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21440-06 for ; Sun, 27 Aug 2006 15:44:00 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 914973B002C for ; Sun, 27 Aug 2006 15:44:00 -0400 (EDT) Received: (qmail 5432 invoked by uid 60001); 27 Aug 2006 19:44:00 -0000 Message-ID: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 12:44:00 PDT Date: Sun, 27 Aug 2006 12:44:00 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Michael Ekstrand In-Reply-To: <1156701966.7990.3.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.467 tagged_above=-999 required=2 tests=[AWL=-1.223, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.467 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 19:44:04 -0000 --- Michael Ekstrand wrote: > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > This is your first error message: > > > > > > " > > > 84 > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > /include > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > src -g -O2 -MT > > > fcfreetype.l > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > .libs/fcfreetype.o > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > ". > > > > > > And it is exactly the same error message which caused me to file > > > already mentioned bug report: > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > . > > > > > > Did you read the bug report and did you compare my report with > > > your error message ? > > > > > > I have no idea how to fix this. > > It looks like a result of FreeType's housecleaning.. The latest > versions of freetype removed the public install of old internal headers, > which half the projects on the Internet (it seems) used. They were > never supposed to, but they did. Result: many packages are broken. Do your words in simple English mean that fontconfig folks release packages which can't compile ? That is, they release packages not even trying to compile them ? > Installing an older freetype (2.1.x I believe) is an intermediate fix; > otherwise, there are patches from freetype's website for some packages, > and many packages have appropriate fixes already. Could you please be more specific about the patches ? I.e., could you please provide URLs to the patches ? > > It's been a while since I looked into this, so I don't remember details, > but that should give you a starting point. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From michael@elehack.net Sun Aug 27 16:41:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 31A5B3B0079 for ; Sun, 27 Aug 2006 16:41:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23769-06 for ; Sun, 27 Aug 2006 16:41:05 -0400 (EDT) Received: from weirdo.crazywebhosting.net (weirdo.crazywebhosting.net [70.85.78.4]) by menubar.gnome.org (Postfix) with ESMTP id 552EA3B00BC for ; Sun, 27 Aug 2006 16:41:05 -0400 (EDT) Received: from rentacop.student.iastate.edu ([64.113.93.202] helo=bezalel.local) by weirdo.crazywebhosting.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.52) id 1GHRRH-00068v-PG; Sun, 27 Aug 2006 15:41:04 -0500 Subject: Re: fontconfig error From: Michael Ekstrand To: Sergei Steshenko In-Reply-To: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> References: <20060827194400.5430.qmail@web35208.mail.mud.yahoo.com> Content-Type: text/plain Date: Sun, 27 Aug 2006 15:41:03 -0500 Message-Id: <1156711263.18069.4.camel@bezalel.elehack.net> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - weirdo.crazywebhosting.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - elehack.net X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.403 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.403 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:41:07 -0000 On Sun, 2006-08-27 at 12:44 -0700, Sergei Steshenko wrote: > > --- Michael Ekstrand wrote: > > > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > > This is your first error message: > > > > > > > > " > > > > 84 > > > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > > /include > > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > > src -g -O2 -MT > > > > fcfreetype.l > > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > > .libs/fcfreetype.o > > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > > > ". > > > > > > > > And it is exactly the same error message which caused me to file > > > > already mentioned bug report: > > > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > > . > > > > > > > > Did you read the bug report and did you compare my report with > > > > your error message ? > > > > > > > > I have no idea how to fix this. > > > > It looks like a result of FreeType's housecleaning.. The latest > > versions of freetype removed the public install of old internal headers, > > which half the projects on the Internet (it seems) used. They were > > never supposed to, but they did. Result: many packages are broken. > > Do your words in simple English mean that fontconfig folks release > packages which can't compile ? > > That is, they release packages not even trying to compile them ? No. They release packages which use internal/experimental FreeType headers, which up through 2.1, FreeType had installed. The FreeType folks released these so developers could experiment with new features and concepts, but never intended for the features to be used in released code. With 2.2, they removed these headers, so that only the documented, public API's are exposed. fontconfig used the old headers. It will build fine with freetype 2.1.x, but not 2.2. fontconfig is "broken" in that it uses internal/undocumented API's, but not "broken" in the sense of them failing to test. The problem is fixed in FontConfig 2.3.93 and later. The following page has all the details: http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html > > Installing an older freetype (2.1.x I believe) is an intermediate fix; > > otherwise, there are patches from freetype's website for some packages, > > and many packages have appropriate fixes already. > > Could you please be more specific about the patches ? I.e., could you please > provide URLs to the patches ? URL above has a link to freetype's info and patch page. - Michael -- mouse, n.: a device for pointing at the xterm in which you wish to type -- Fortune file Visit me on the Web: http://www.elehack.net/michael From sergstesh@yahoo.com Sun Aug 27 17:23:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B96383B0149 for ; Sun, 27 Aug 2006 17:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25336-06 for ; Sun, 27 Aug 2006 17:23:39 -0400 (EDT) Received: from web35206.mail.mud.yahoo.com (web35206.mail.mud.yahoo.com [66.163.179.85]) by menubar.gnome.org (Postfix) with SMTP id 2E3533B002C for ; Sun, 27 Aug 2006 17:23:39 -0400 (EDT) Received: (qmail 83585 invoked by uid 60001); 27 Aug 2006 21:23:38 -0000 Message-ID: <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35206.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 14:23:38 PDT Date: Sun, 27 Aug 2006 14:23:38 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: Michael Ekstrand In-Reply-To: <1156711263.18069.4.camel@bezalel.elehack.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.461 tagged_above=-999 required=2 tests=[AWL=-1.217, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447] X-Spam-Score: -0.461 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:23:40 -0000 --- Michael Ekstrand wrote: > On Sun, 2006-08-27 at 12:44 -0700, Sergei Steshenko wrote: > > > > --- Michael Ekstrand wrote: > > > > > On Sat, 2006-08-26 at 20:40 -0400, Bill Cunningham wrote: > > > > > This is your first error message: > > > > > > > > > > " > > > > > 84 > > > > > > > > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include/freetype2 -I/usr/local > > > > /include > > > > > -I/usr/local/include -DFONTCONFIG_PATH=\"/usr/local/etc/fonts\" -I.. -I../ > > > > src -g -O2 -MT > > > > > fcfreetype.l > > > > > 84 o -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -fPIC -DPIC -o > > > > .libs/fcfreetype.o > > > > > 85 fcfreetype.c:53:10: #include expects "FILENAME" or > > > > > > > > > > ". > > > > > > > > > > And it is exactly the same error message which caused me to file > > > > > already mentioned bug report: > > > > > > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=7862 > > > > > . > > > > > > > > > > Did you read the bug report and did you compare my report with > > > > > your error message ? > > > > > > > > > > I have no idea how to fix this. > > > > > > It looks like a result of FreeType's housecleaning.. The latest > > > versions of freetype removed the public install of old internal headers, > > > which half the projects on the Internet (it seems) used. They were > > > never supposed to, but they did. Result: many packages are broken. > > > > Do your words in simple English mean that fontconfig folks release > > packages which can't compile ? > > > > That is, they release packages not even trying to compile them ? > > No. They release packages which use internal/experimental FreeType > headers, which up through 2.1, FreeType had installed. The FreeType > folks released these so developers could experiment with new features > and concepts, but never intended for the features to be used in released > code. With 2.2, they removed these headers, so that only the > documented, public API's are exposed. fontconfig used the old headers. > It will build fine with freetype 2.1.x, but not 2.2. fontconfig is > "broken" in that it uses internal/undocumented API's, but not "broken" > in the sense of them failing to test. The problem is fixed in > FontConfig 2.3.93 and later. > > The following page has all the details: > > http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html > > > > Installing an older freetype (2.1.x I believe) is an intermediate fix; > > > otherwise, there are patches from freetype's website for some packages, > > > and many packages have appropriate fixes already. > > > > Could you please be more specific about the patches ? I.e., could you please > > provide URLs to the patches ? > > URL above has a link to freetype's info and patch page. > > - Michael > > -- > mouse, n.: a device for pointing at the xterm in which you wish to type > -- Fortune file > Visit me on the Web: http://www.elehack.net/michael > > Michael, thanks for your reply. Maybe I miss simething, but it appears that your reply addresses a problem which is different from the one I had. If I understand correctly, the link you gave, i.e. http://freetype.sourceforge.net/freetype2/freetype-2.2.0.html explains root causes and fixes of problems in libraries/applications which depend on fontconfig. The problem I reported, i.e. https://bugs.freedesktop.org/show_bug.cgi?id=7862 , is about fontconfig itself. I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, wont'c compile. Here is how the '#include ...' part of the file looks: " ... 47 #include 48 #include 49 #include 50 #include "fcint.h" 51 #include 52 #include FT_FREETYPE_H 53 #include FT_INTERNAL_OBJECTS_H 54 #include FT_TRUETYPE_TABLES_H 55 #include FT_SFNT_NAMES_H 56 #include FT_TRUETYPE_IDS_H 57 #include FT_TYPE1_TABLES_H 58 #include FT_INTERNAL_STREAM_H 59 #include FT_INTERNAL_SFNT_H 60 #include FT_INTERNAL_TRUETYPE_TYPES_H 61 #if HAVE_FT_GET_X11_FONT_FORMAT 62 #include FT_XFREE86_H 63 #endif 64 65 #if HAVE_FT_GET_BDF_PROPERTY 66 #include FT_BDF_H 67 #include FT_MODULE_H ... ". As one can see, in addition to traditional #include or # include "file" there are lines like these: 52 #include FT_FREETYPE_H 53 #include FT_INTERNAL_OBJECTS_H 54 #include FT_TRUETYPE_TABLES_H 55 #include FT_SFNT_NAMES_H 56 #include FT_TRUETYPE_IDS_H 57 #include FT_TYPE1_TABLES_H 58 #include FT_INTERNAL_STREAM_H 59 #include FT_INTERNAL_SFNT_H 60 #include FT_INTERNAL_TRUETYPE_TYPES_H 61 #if HAVE_FT_GET_X11_FONT_FORMAT 62 #include FT_XFREE86_H 63 #endif . These lines are peculiar in that they have neither '"', nor '<', '>' to enclose the file names, and gcc complains: fcfreetype.c:53:10: error: #include expects "FILENAME" or fcfreetype.c:58:10: error: #include expects "FILENAME" or fcfreetype.c:59:10: error: #include expects "FILENAME" or fcfreetype.c:60:10: error: #include expects "FILENAME" or . As I said, the problematic file is a part of fontcofig source tarball: fontconfig-2.3.2/src/fcfreetype.c - it is not a part of some other library or application that depends on fontconfig. The same is true for fontconfig-2.3.95, and the same problematic '#include ...' statements are present in fontconfig-2.3.95, though I haven't tried to compile it. The point of my https://bugs.freedesktop.org/show_bug.cgi?id=7862 bug report is that first and formost the fontconfig-2.3.2/src/fcfreetype.c file has wrong syntax, the wrongness being lack of '"' or '<', '>' to enclose the included file names. If you think I'm missing something, could you please explain what it is ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 17:51:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E5A453B00CA for ; Sun, 27 Aug 2006 17:51:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26383-07 for ; Sun, 27 Aug 2006 17:51:09 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id B67FD3B00D3 for ; Sun, 27 Aug 2006 17:51:08 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7RLp6Wf028568 for ; Sun, 27 Aug 2006 23:51:07 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id ED6BA23D5B; Sun, 27 Aug 2006 23:51:06 +0200 (CEST) Date: Sun, 27 Aug 2006 23:51:11 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060827215111.GA5721@potato.chello.upc.cz> References: <1156711263.18069.4.camel@bezalel.elehack.net> <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827212338.83583.qmail@web35206.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, UPPERCASE_25_50=0] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:51:11 -0000 On Sun, Aug 27, 2006 at 02:23:38PM -0700, Sergei Steshenko wrote: > > I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, > wont'c compile. > > Here is how the '#include ...' part of the file looks: > > > " > ... > 47 #include > 48 #include > 49 #include > 50 #include "fcint.h" > 51 #include > 52 #include FT_FREETYPE_H > 53 #include FT_INTERNAL_OBJECTS_H > 54 #include FT_TRUETYPE_TABLES_H > 55 #include FT_SFNT_NAMES_H > 56 #include FT_TRUETYPE_IDS_H > 57 #include FT_TYPE1_TABLES_H > 58 #include FT_INTERNAL_STREAM_H > 59 #include FT_INTERNAL_SFNT_H > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > 62 #include FT_XFREE86_H > 63 #endif > 64 > 65 #if HAVE_FT_GET_BDF_PROPERTY > 66 #include FT_BDF_H > 67 #include FT_MODULE_H > ... > ". > > As one can see, in addition to traditional > > #include > > or > > # include "file" > > there are lines like these: > > 52 #include FT_FREETYPE_H > 53 #include FT_INTERNAL_OBJECTS_H > 54 #include FT_TRUETYPE_TABLES_H > 55 #include FT_SFNT_NAMES_H > 56 #include FT_TRUETYPE_IDS_H > 57 #include FT_TYPE1_TABLES_H > 58 #include FT_INTERNAL_STREAM_H > 59 #include FT_INTERNAL_SFNT_H > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > 62 #include FT_XFREE86_H > 63 #endif > . > > These lines are peculiar in that they have neither '"', nor '<', '>' to > enclose the file names ISO C allows 1. #include 2. #include "localheader.h" 3. #include MACRO where MACRO has to -- after all expansions -- give one of the former two cases. The FT_* macros are defined in freetype/config/ftheader.h and freetype/internal/internal.h. Except that the internal headers no longer exist in FreeType 2.2+. Neither are defined the corresponding FT_INTERNAL_* macros. When a FT_* macro is undefined none of the cases 1.-3. occurs, the preprocessor sees literal #include FT_INTERNAL_OBJECTS_H and complains. Thus you get errors on lines correspoding to inclusion of internal headers (through FT_INTERNAL_* macros). Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sun Aug 27 18:13:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 49F4F3B0079 for ; Sun, 27 Aug 2006 18:13:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27595-10 for ; Sun, 27 Aug 2006 18:13:21 -0400 (EDT) Received: from web35203.mail.mud.yahoo.com (web35203.mail.mud.yahoo.com [66.163.179.82]) by menubar.gnome.org (Postfix) with SMTP id F1AF23B00D3 for ; Sun, 27 Aug 2006 18:13:19 -0400 (EDT) Received: (qmail 68978 invoked by uid 60001); 27 Aug 2006 22:13:19 -0000 Message-ID: <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35203.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 15:13:19 PDT Date: Sun, 27 Aug 2006 15:13:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060827215111.GA5721@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:13:22 -0000 --- David Neèas (Yeti) wrote: > On Sun, Aug 27, 2006 at 02:23:38PM -0700, Sergei Steshenko wrote: > > > > I tried to compile fontconfig, and a part of fontconfig, namely fcfreetype.c file, > > wont'c compile. > > > > Here is how the '#include ...' part of the file looks: > > > > > > " > > ... > > 47 #include > > 48 #include > > 49 #include > > 50 #include "fcint.h" > > 51 #include > > 52 #include FT_FREETYPE_H > > 53 #include FT_INTERNAL_OBJECTS_H > > 54 #include FT_TRUETYPE_TABLES_H > > 55 #include FT_SFNT_NAMES_H > > 56 #include FT_TRUETYPE_IDS_H > > 57 #include FT_TYPE1_TABLES_H > > 58 #include FT_INTERNAL_STREAM_H > > 59 #include FT_INTERNAL_SFNT_H > > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > > 62 #include FT_XFREE86_H > > 63 #endif > > 64 > > 65 #if HAVE_FT_GET_BDF_PROPERTY > > 66 #include FT_BDF_H > > 67 #include FT_MODULE_H > > ... > > ". > > > > As one can see, in addition to traditional > > > > #include > > > > or > > > > # include "file" > > > > there are lines like these: > > > > 52 #include FT_FREETYPE_H > > 53 #include FT_INTERNAL_OBJECTS_H > > 54 #include FT_TRUETYPE_TABLES_H > > 55 #include FT_SFNT_NAMES_H > > 56 #include FT_TRUETYPE_IDS_H > > 57 #include FT_TYPE1_TABLES_H > > 58 #include FT_INTERNAL_STREAM_H > > 59 #include FT_INTERNAL_SFNT_H > > 60 #include FT_INTERNAL_TRUETYPE_TYPES_H > > 61 #if HAVE_FT_GET_X11_FONT_FORMAT > > 62 #include FT_XFREE86_H > > 63 #endif > > . > > > > These lines are peculiar in that they have neither '"', nor '<', '>' to > > enclose the file names > > ISO C allows > > 1. #include > 2. #include "localheader.h" > 3. #include MACRO > > where MACRO has to -- after all expansions -- give one of > the former two cases. The FT_* macros are defined in > freetype/config/ftheader.h and freetype/internal/internal.h. > > Except that the internal headers no longer exist in FreeType > 2.2+. Neither are defined the corresponding FT_INTERNAL_* > macros. When a FT_* macro is undefined none of the cases > 1.-3. occurs, the preprocessor sees literal > > #include FT_INTERNAL_OBJECTS_H > > and complains. Thus you get errors on lines correspoding to > inclusion of internal headers (through FT_INTERNAL_* > macros). > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > David, thanks for your clarifications. I understand that macros are first expanded, and thus, if they expand to a legal construct, i.e. "filename" or , then the compiler will accept them. Now here are your statements in a rephrased form - correct me if I'm wrong 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or '<', '>' are meant to be macros; 2) the above macros used to be defined in freetype/config/ftheader.h freetype/internal/internal.h files; 3) the above .h files are not within the source tarball anymore - here is my check of this statement: " [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 -name "*.h" fontconfig-2.3.2/src/fcint.h fontconfig-2.3.2/fontconfig/fontconfig.h fontconfig-2.3.2/fontconfig/fcfreetype.h fontconfig-2.3.2/fontconfig/fcprivate.h fontconfig-2.3.2/fc-case/fccase.h fontconfig-2.3.2/fc-case/fccase.tmpl.h fontconfig-2.3.2/fc-lang/fclang.h fontconfig-2.3.2/fc-lang/fclang.tmpl.h fontconfig-2.3.2/fc-glyphname/fcglyphname.h fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> " - indeed they are not in the tarball. Now, taking your statement: " When a FT_* macro is undefined none of the cases 1.-3. occurs, the preprocessor sees literal #include FT_INTERNAL_OBJECTS_H and complains. Thus you get errors on lines correspoding to inclusion of internal headers (through FT_INTERNAL_* macros). " may I rephrase it this way: fontconfig-2.3.2.tar.gz can NOT be compiled because some header files (namely freetype/config/ftheader.h, freetype/internal/internal.h) are missing in it ? If so, is my earlier statement, that fontconfig released a tarball which can not be compiled, correct ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 18:38:03 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CE5B3B00BC for ; Sun, 27 Aug 2006 18:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28726-04 for ; Sun, 27 Aug 2006 18:37:58 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id D66D73B012B for ; Sun, 27 Aug 2006 18:37:55 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7RMbsG9008492 for ; Mon, 28 Aug 2006 00:37:55 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 2D53023D5D; Mon, 28 Aug 2006 00:37:54 +0200 (CEST) Date: Mon, 28 Aug 2006 00:37:59 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060827223759.GB5721@potato.chello.upc.cz> References: <20060827215111.GA5721@potato.chello.upc.cz> <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827221319.68976.qmail@web35203.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:38:03 -0000 On Sun, Aug 27, 2006 at 03:13:19PM -0700, Sergei Steshenko wrote: > > 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or > '<', '>' are meant to be macros; Correct. > 2) the above macros used to be defined in > > freetype/config/ftheader.h > freetype/internal/internal.h > > files; Correct. However, these are FreeType headers, not fontconfig headers. FreeType 2.2+ installs ftheader.h as usual, but it does not install internal.h any more. > 3) the above .h files are not within the source tarball anymore - here is > my check of this statement: > > " > [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 > -name "*.h" > fontconfig-2.3.2/src/fcint.h > fontconfig-2.3.2/fontconfig/fontconfig.h > fontconfig-2.3.2/fontconfig/fcfreetype.h > fontconfig-2.3.2/fontconfig/fcprivate.h > fontconfig-2.3.2/fc-case/fccase.h > fontconfig-2.3.2/fc-case/fccase.tmpl.h > fontconfig-2.3.2/fc-lang/fclang.h > fontconfig-2.3.2/fc-lang/fclang.tmpl.h > fontconfig-2.3.2/fc-glyphname/fcglyphname.h > fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h > [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> > " > > - indeed they are not in the tarball. Indeed they do not belong to *fontconfig* source tarball. > fontconfig-2.3.2.tar.gz can NOT be compiled because some header files > (namely freetype/config/ftheader.h, freetype/internal/internal.h) are > missing in it No; if you have FreeType installed, you have ftheader.h. But if it's version 2.2+ you do not have internal.h which fontconfig uses too and therefore it does not compile. Have you tried to apply http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch ? Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Sun Aug 27 19:18:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFBC73B00C4 for ; Sun, 27 Aug 2006 19:18:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30383-02 for ; Sun, 27 Aug 2006 19:18:20 -0400 (EDT) Received: from web35211.mail.mud.yahoo.com (web35211.mail.mud.yahoo.com [66.163.179.90]) by menubar.gnome.org (Postfix) with SMTP id 539103B0079 for ; Sun, 27 Aug 2006 19:18:20 -0400 (EDT) Received: (qmail 63030 invoked by uid 60001); 27 Aug 2006 23:18:19 -0000 Message-ID: <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35211.mail.mud.yahoo.com via HTTP; Sun, 27 Aug 2006 16:18:19 PDT Date: Sun, 27 Aug 2006 16:18:19 -0700 (PDT) From: Sergei Steshenko Subject: Re: fontconfig error To: David "Neèas" , gtk-list@gnome.org In-Reply-To: <20060827223759.GB5721@potato.chello.upc.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: David "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:18:21 -0000 --- David Neèas (Yeti) wrote: > On Sun, Aug 27, 2006 at 03:13:19PM -0700, Sergei Steshenko wrote: > > > > 1) items like FT_FREETYPE_H, i.e. items without the encapsulating '"' or > > '<', '>' are meant to be macros; > > Correct. > > > 2) the above macros used to be defined in > > > > freetype/config/ftheader.h > > freetype/internal/internal.h > > > > files; > > Correct. > > However, these are FreeType headers, not fontconfig headers. > FreeType 2.2+ installs ftheader.h as usual, but it does not > install internal.h any more. > > > 3) the above .h files are not within the source tarball anymore - here is > > my check of this statement: > > > > " > > [31] 0:19 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> find fontconfig-2.3.2 > > -name "*.h" > > fontconfig-2.3.2/src/fcint.h > > fontconfig-2.3.2/fontconfig/fontconfig.h > > fontconfig-2.3.2/fontconfig/fcfreetype.h > > fontconfig-2.3.2/fontconfig/fcprivate.h > > fontconfig-2.3.2/fc-case/fccase.h > > fontconfig-2.3.2/fc-case/fccase.tmpl.h > > fontconfig-2.3.2/fc-lang/fclang.h > > fontconfig-2.3.2/fc-lang/fclang.tmpl.h > > fontconfig-2.3.2/fc-glyphname/fcglyphname.h > > fontconfig-2.3.2/fc-glyphname/fcglyphname.tmpl.h > > [32] 1:06 sergei@comp.home.net:/mnt/removable4/sergei/build_work/build> > > " > > > > - indeed they are not in the tarball. > > Indeed they do not belong to *fontconfig* source tarball. > > > fontconfig-2.3.2.tar.gz can NOT be compiled because some header files > > (namely freetype/config/ftheader.h, freetype/internal/internal.h) are > > missing in it > > No; if you have FreeType installed, you have ftheader.h. > But if it's version 2.2+ you do not have internal.h which > fontconfig uses too and therefore it does not compile. > > Have you tried to apply > > http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch > > ? > > Yeti > > > -- > Anonyms eat their boogers. > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > I haven't yet tried http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch . But my point is this: 1) the world is a mess; 2) to deal with the above mess 'configure' (autoconf, automake) were invented; 3) 'configure' is supposed to check all prerequisites - if they are in place, 'configure' should complete successfully (0 exit status); 4) if 'configure' completes successfully, 'make' should just work. In this case ( https://bugs.freedesktop.org/show_bug.cgi?id=7862 ) 'configure' did complete successfully, but 'make' failed. So, that's why I consider this to be a bug. I.e., I'm taking a tarball, I run 'configure', 'configure' does not complain about anything, but 'make' fails. I didn't find anything in the tarball about patches. So, to me it looks like the fontconfig team released a tarball which can't be compiled using the documented by the fontconfig team way, which happens to be standard UNIX ./configure make make install way. Because the source can't be compiled using the documented by the authors' team way, it's a bug - rememebr, 'configure' does not complain and exists with 0 status. ... Regarding the http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch patch - it appears to affect these files: fcfreetype.c fcftglue.c fcftglue.h Makefile.am Makefile.in files. Because of Makefile.am, Makefile.in files - is it correct to assume that the patch should be applied before 'configure' is run ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yeti@physics.muni.cz Sun Aug 27 20:34:57 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3D1413B007F for ; Sun, 27 Aug 2006 20:34:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00819-06 for ; Sun, 27 Aug 2006 20:34:55 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id C2B0C3B0079 for ; Sun, 27 Aug 2006 20:34:54 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7S0Yqpn026767 for ; Mon, 28 Aug 2006 02:34:54 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id EB4D023D5D; Mon, 28 Aug 2006 02:34:52 +0200 (CEST) Date: Mon, 28 Aug 2006 02:34:58 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: fontconfig error Message-ID: <20060828003458.GC5721@potato.chello.upc.cz> References: <20060827223759.GB5721@potato.chello.upc.cz> <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827231819.63028.qmail@web35211.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 00:34:57 -0000 On Sun, Aug 27, 2006 at 04:18:19PM -0700, Sergei Steshenko wrote: > But my point is this: > > 1) the world is a mess; Definitely. > 2) to deal with the above mess 'configure' (autoconf, automake) were invented; > 3) 'configure' is supposed to check all prerequisites - if they are in place, > 'configure' should complete successfully (0 exit status); > 4) if 'configure' completes successfully, 'make' should just work. This of course contradicts with point 1)... configure typically checks only for a minimum required version. It normally suffices because things are backward compatible. But since the world is a mess, newer versions sometimes break dependent programs too. Usually because the dependency and the dependent part do not agree on what compatible means, i.e., what exactly the interfaces are. > In this case ( https://bugs.freedesktop.org/show_bug.cgi?id=7862 ) > 'configure' did complete successfully, but 'make' failed. As explained above, below, and in the FreeType document referred earlier in this thread. > So, that's why I consider this to be a bug. I.e., I'm taking a tarball, I run > 'configure', 'configure' does not complain about anything, but 'make' fails. The bug is the use of internal FreeType headers. The bug has been fixed and recent fontconfig does not use them any more. > I didn't find anything in the tarball about patches. How can the fontconfig 2.3.2 tarball contain anything about patches fixing *future* issues? If they predicted the issues, they would fix the problems right away. Putting information about patches someone will make in the future to fix a problem that does not exist yet into the source tarball would be a bit strange. > So, to me it looks like the fontconfig team released a tarball which > can't be compiled using the documented by the fontconfig team way, No, you got it all wrong. Please read the FreeType document referred earlier in this thread. 1. FreeType used to install internal headers people were not expected to use in public libraries and programs. 2. However people -- among them fontconfig people -- did use the internal headers. 3. At the time the fontconfig tarball was made, it compiled fine with the supported versions of FreeType. 4. FreeType people realized everyone and his dog uses the internal headers they should not use in public, and removed them. 5. Now old fontconfig does not build with new FreeType. Quite obviously, the old fontconfig does not contain any check for too new FreeType, because if its developers expected future FreeType to remove the headers they would not use them in the first place. > Because the source can't be compiled using the documented by the authors' team > way, it's a bug - rememebr, 'configure' does not complain and exists with > 0 status. Even if there was a zillion of bugs, to fix them in an already released version you would need a time machine. Therefore version 2.3.2 will continue to contain the bug. A newer version fixing the problems was already released. A patch for the old version exists too. What else do you want? > Regarding the > > http://freetype.sourceforge.net/freetype2/patches/fontconfig-2.3.2-noftinternals.patch > > patch - it appears to affect these files: > > fcfreetype.c > fcftglue.c > fcftglue.h > Makefile.am > Makefile.in > > files. > > Because of Makefile.am, Makefile.in files - is it correct to assume that the patch > should be applied before 'configure' is run ? Of course. In fact, since it patches Makefile.am, the question should be `is it necessary to re-run automake?' Fortunately it consistently patches Makefile.am and Makefile.in therefore configure is enough. Yeti -- Anonyms eat their boogers. From o@sadglad.com Mon Aug 28 09:13:41 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C06A3B00F1 for ; Mon, 28 Aug 2006 09:13:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03800-04 for ; Mon, 28 Aug 2006 09:13:40 -0400 (EDT) Received: from mtaout5.barak.net.il (mtaout5.barak.net.il [212.150.49.175]) by menubar.gnome.org (Postfix) with ESMTP id 8B5773B00BA for ; Mon, 28 Aug 2006 09:13:39 -0400 (EDT) Received: from oded ([212.143.99.21]) by mtaout5.barak.net.il (Sun Java System Messaging Server 6.2-6.02 (built Apr 25 2006)) with ESMTPA id <0J4P009A3M2PKOG0@mtaout5.barak.net.il> for gtk-list@gnome.org; Mon, 28 Aug 2006 16:13:38 +0300 (IDT) Date: Mon, 28 Aug 2006 16:13:54 +0200 From: oded Subject: problem with modify_fg To: gtk-list@gnome.org Message-id: <002d01c6caac$324869f0$5c01a8c0@oded> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 X-Mailer: Microsoft Outlook Express 6.00.2900.2670 Content-type: text/plain; format=flowed; charset=windows-1255; reply-type=original Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.001 tagged_above=-999 required=2 tests=[BAYES_50=0.001] X-Spam-Score: 0.001 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 13:13:41 -0000 Hello, I am using Gtkmm, and I am new to it and to Gtk. I'v got a Gtk::Label widget, and I'm trying to change it's forground color, but it remain black. Here is the code where I try to change the color of the widget, which has been inilized earlier in the program, and has already been displayed. Gdk::Color color; color.set_rgb(0,0,255); m_label->modify_fg(Gtk::STATE_NORMAL, color); m_label->modify_fg(Gtk::STATE_ACTIVE, color); m_label->modify_fg(Gtk::STATE_INSENSITIVE, color); m_label->modify_fg(Gtk::STATE_PRELIGHT, color); m_label->modify_fg(Gtk::STATE_SELECTED, color); Thanks, Oded. From kereoz@yahoo.fr Mon Aug 28 10:36:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2D2823B000C for ; Mon, 28 Aug 2006 10:36:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08667-05 for ; Mon, 28 Aug 2006 10:36:18 -0400 (EDT) Received: from web25908.mail.ukl.yahoo.com (web25908.mail.ukl.yahoo.com [217.12.10.206]) by menubar.gnome.org (Postfix) with SMTP id 270F93B0018 for ; Mon, 28 Aug 2006 10:36:18 -0400 (EDT) Received: (qmail 21055 invoked by uid 60001); 28 Aug 2006 14:36:17 -0000 Message-ID: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> Received: from [194.2.163.124] by web25908.mail.ukl.yahoo.com via HTTP; Mon, 28 Aug 2006 16:36:17 CEST Date: Mon, 28 Aug 2006 16:36:17 +0200 (CEST) From: Christophe HAUSER Subject: Mouse cursor To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.166 tagged_above=-999 required=2 tests=[AWL=-0.981, BAYES_40=-0.185] X-Spam-Score: -1.166 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:36:22 -0000 Hello, I would like to hide the mouse cursor in my GTK application, but I can't find any related function. Christophe HAUSER http://kereoz.sup.fr p4.vert.ukl.yahoo.com uncompressed/chunked Mon Aug 28 14:13:45 GMT 2006 ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From tvb@gnome.org Mon Aug 28 10:42:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2950F3B006A for ; Mon, 28 Aug 2006 10:42:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09153-05 for ; Mon, 28 Aug 2006 10:42:16 -0400 (EDT) Received: from mail.touchtunes.com (mail.touchtunes.com [207.96.182.162]) by menubar.gnome.org (Postfix) with ESMTP id 0C2783B0018 for ; Mon, 28 Aug 2006 10:42:16 -0400 (EDT) Received: from [192.168.0.138] (unknown [192.168.0.138]) by mail.touchtunes.com (Postfix) with ESMTP id 3BA0715A71; Mon, 28 Aug 2006 10:42:11 -0400 (EDT) Message-ID: <44F30323.2060300@gnome.org> Date: Mon, 28 Aug 2006 10:52:19 -0400 From: Tristan Van Berkom User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christophe HAUSER Subject: Re: Mouse cursor References: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> In-Reply-To: <20060828143617.21053.qmail@web25908.mail.ukl.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:42:17 -0000 Christophe HAUSER wrote: > Hello, > > I would like to hide the mouse cursor in my GTK > application, but I can't find any related function. > You can set the cursor graphic to a transperent png, setting the cursor is GdkWindow specific. http://developer.gnome.org/doc/API/2.0/gdk/gdk-Cursors.html Cheers, -Tristan From kereoz@yahoo.fr Mon Aug 28 10:51:11 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D77A53B0097 for ; Mon, 28 Aug 2006 10:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09432-07 for ; Mon, 28 Aug 2006 10:51:10 -0400 (EDT) Received: from web25915.mail.ukl.yahoo.com (web25915.mail.ukl.yahoo.com [217.146.176.253]) by menubar.gnome.org (Postfix) with SMTP id B1F5D3B00D1 for ; Mon, 28 Aug 2006 10:51:09 -0400 (EDT) Received: (qmail 275 invoked by uid 60001); 28 Aug 2006 14:51:08 -0000 Message-ID: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> Received: from [194.2.163.124] by web25915.mail.ukl.yahoo.com via HTTP; Mon, 28 Aug 2006 16:51:08 CEST Date: Mon, 28 Aug 2006 16:51:08 +0200 (CEST) From: Christophe HAUSER Subject: Focus To: gtk-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.364 tagged_above=-999 required=2 tests=[AWL=0.235, BAYES_00=-2.599] X-Spam-Score: -2.364 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:51:12 -0000 I also would like to set the focus on one widget into the Window. How should I do ? Thanks, Christophe HAUSER http://kereoz.sup.fr p5.vert.ukl.yahoo.com uncompressed/chunked Mon Aug 28 11:13:44 GMT 2006 ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From tvb@gnome.org Mon Aug 28 11:03:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DA97C3B0132 for ; Mon, 28 Aug 2006 11:03:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10335-01 for ; Mon, 28 Aug 2006 11:03:27 -0400 (EDT) Received: from mail.touchtunes.com (mail.touchtunes.com [207.96.182.162]) by menubar.gnome.org (Postfix) with ESMTP id 9A37A3B0018 for ; Mon, 28 Aug 2006 11:03:24 -0400 (EDT) Received: from [192.168.0.138] (unknown [192.168.0.138]) by mail.touchtunes.com (Postfix) with ESMTP id 50C1B15A30; Mon, 28 Aug 2006 11:03:20 -0400 (EDT) Message-ID: <44F30818.8000801@gnome.org> Date: Mon, 28 Aug 2006 11:13:28 -0400 From: Tristan Van Berkom User-Agent: Mozilla Thunderbird 0.8 (X11/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Christophe HAUSER Subject: Re: Focus References: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> In-Reply-To: <20060828145108.273.qmail@web25915.mail.ukl.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:03:28 -0000 Christophe HAUSER wrote: > I also would like to set the focus on one widget into > the Window. > How should I do ? You should go here: http://developer.gnome.org/doc/API/2.0/gtk/ix01.html search for the keyword "focus" - tab down till you find the right one - so that others dont have to do it for you :) Cheers, -Tristan From billcu1@verizon.net Fri Aug 25 07:30:06 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 534CE3B0098 for ; Fri, 25 Aug 2006 07:30:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17601-07 for ; Fri, 25 Aug 2006 07:30:01 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id CD1B13B008D for ; Fri, 25 Aug 2006 07:29:59 -0400 (EDT) Received: from win98 ([141.153.25.143]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4J001RFX9P5OP3@vms046.mailsrvcs.net> for gtk-list@gnome.org; Fri, 25 Aug 2006 06:29:50 -0500 (CDT) Date: Fri, 25 Aug 2006 07:28:09 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000501c6c839$8c31c1c0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.723 tagged_above=-999 required=2 tests=[AWL=1.184, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_BJ=0.077, TW_PG=0.077, TW_XL=0.077] X-Spam-Score: 0.723 X-Spam-Level: X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:08 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 11:30:06 -0000 I hope this log helps explain error to others. It involves some library file. ---------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.59. Invocation command line was $ ./configure --with-expat-includes=/usr/local/include --with-expat-lib=/usr/l ocal/lib ## --------- ## ## Platform. ## ## --------- ## hostname = localhost.localdomain uname -m = i686 uname -r = 2.2.16-22 uname -s = Linux uname -v = #1 Tue Aug 22 16:49:06 EDT 2000 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = i686 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1549: checking for a BSD-compatible install configure:1604: result: /usr/bin/install -c configure:1615: checking whether build environment is sane configure:1658: result: yes configure:1691: checking for gawk configure:1707: found /bin/gawk configure:1717: result: gawk configure:1727: checking whether make sets $(MAKE) configure:1747: result: yes configure:1911: checking whether to enable maintainer-specific portions of Makefiles configure:1920: result: no configure:1999: checking for gcc configure:2015: found /usr/bin/gcc configure:2025: result: gcc configure:2269: checking for C compiler version configure:2272: gcc --version &5 gcc (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2275: $? = 0 configure:2277: gcc -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=/opt/usr Thread model: posix gcc version 3.4.6 configure:2280: $? = 0 configure:2282: gcc -V &5 gcc: `-V' option must have argument configure:2285: $? = 1 configure:2308: checking for C compiler default output file name configure:2311: gcc conftest.c >&5 configure:2314: $? = 0 configure:2360: result: a.out configure:2365: checking whether the C compiler works configure:2371: ./a.out configure:2374: $? = 0 configure:2391: result: yes configure:2398: checking whether we are cross compiling configure:2400: result: no configure:2403: checking for suffix of executables configure:2405: gcc -o conftest conftest.c >&5 configure:2408: $? = 0 configure:2433: result: configure:2439: checking for suffix of object files configure:2460: gcc -c conftest.c >&5 configure:2463: $? = 0 configure:2485: result: o configure:2489: checking whether we are using the GNU C compiler configure:2513: gcc -c conftest.c >&5 configure:2519: $? = 0 configure:2522: test -z || test ! -s conftest.err configure:2525: $? = 0 configure:2528: test -s conftest.o configure:2531: $? = 0 configure:2544: result: yes configure:2550: checking whether gcc accepts -g configure:2571: gcc -c -g conftest.c >&5 configure:2577: $? = 0 configure:2580: test -z || test ! -s conftest.err configure:2583: $? = 0 configure:2586: test -s conftest.o configure:2589: $? = 0 configure:2600: result: yes configure:2617: checking for gcc option to accept ANSI C configure:2687: gcc -c -g -O2 conftest.c >&5 configure:2693: $? = 0 configure:2696: test -z || test ! -s conftest.err configure:2699: $? = 0 configure:2702: test -s conftest.o configure:2705: $? = 0 configure:2723: result: none needed configure:2741: gcc -c -g -O2 conftest.c >&5 conftest.c:2: error: syntax error before "me" configure:2747: $? = 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:2888: checking for style of include used by make configure:2916: result: GNU configure:2944: checking dependency style of gcc configure:3027: result: gcc3 configure:3057: checking for a BSD-compatible install configure:3112: result: /usr/bin/install -c configure:3123: checking whether ln -s works configure:3127: result: yes configure:3214: checking build system type configure:3232: result: i686-pc-linux-gnu configure:3240: checking host system type configure:3254: result: i686-pc-linux-gnu configure:3262: checking for a sed that does not truncate output configure:3316: result: /bin/sed configure:3319: checking for egrep configure:3329: result: grep -E configure:3345: checking for ld used by gcc configure:3412: result: /usr/bin/ld configure:3421: checking if the linker (/usr/bin/ld) is GNU ld configure:3436: result: yes configure:3441: checking for /usr/bin/ld option to reload object files configure:3448: result: -r configure:3457: checking for BSD-compatible nm configure:3499: result: /usr/bin/nm -B configure:3503: checking how to recognise dependent libraries configure:3677: result: pass_all configure:4132: checking how to run the C preprocessor configure:4167: gcc -E conftest.c configure:4173: $? = 0 configure:4205: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4211: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4250: result: gcc -E configure:4274: gcc -E conftest.c configure:4280: $? = 0 configure:4312: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4318: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4362: checking for ANSI C header files configure:4387: gcc -c -g -O2 conftest.c >&5 configure:4393: $? = 0 configure:4396: test -z || test ! -s conftest.err configure:4399: $? = 0 configure:4402: test -s conftest.o configure:4405: $? = 0 configure:4491: gcc -o conftest -g -O2 conftest.c >&5 configure:4494: $? = 0 configure:4496: ./conftest configure:4499: $? = 0 configure:4514: result: yes configure:4538: checking for sys/types.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for sys/stat.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for stdlib.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for string.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for memory.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for strings.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for inttypes.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for stdint.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4538: checking for unistd.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? = 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? = 0 configure:4569: test -s conftest.o configure:4572: $? = 0 configure:4583: result: yes configure:4609: checking dlfcn.h usability configure:4621: gcc -c -g -O2 conftest.c >&5 configure:4627: $? = 0 configure:4630: test -z || test ! -s conftest.err configure:4633: $? = 0 configure:4636: test -s conftest.o configure:4639: $? = 0 configure:4649: result: yes configure:4653: checking dlfcn.h presence configure:4663: gcc -E conftest.c configure:4669: $? = 0 configure:4689: result: yes configure:4724: checking for dlfcn.h configure:4731: result: yes configure:4796: checking for g++ configure:4812: found /usr/bin/g++ configure:4822: result: g++ configure:4838: checking for C++ compiler version configure:4841: g++ --version &5 g++ (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4844: $? = 0 configure:4846: g++ -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=/opt/usr Thread model: posix gcc version 3.4.6 configure:4849: $? = 0 configure:4851: g++ -V &5 g++: `-V' option must have argument configure:4854: $? = 1 configure:4857: checking whether we are using the GNU C++ compiler configure:4881: g++ -c conftest.cc >&5 configure:4887: $? = 0 configure:4890: test -z || test ! -s conftest.err configure:4893: $? = 0 configure:4896: test -s conftest.o configure:4899: $? = 0 configure:4912: result: yes configure:4918: checking whether g++ accepts -g configure:4939: g++ -c -g conftest.cc >&5 configure:4945: $? = 0 configure:4948: test -z || test ! -s conftest.err configure:4951: $? = 0 configure:4954: test -s conftest.o configure:4957: $? = 0 configure:4968: result: yes configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? = 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? = 0 configure:5025: test -s conftest.o configure:5028: $? = 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 conftest.cc: In function `int main()': conftest.cc:26: error: `exit' was not declared in this scope configure:5060: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | | int | main () | { | exit (42); | ; | return 0; | } configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? = 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? = 0 configure:5025: test -s conftest.o configure:5028: $? = 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 configure:5060: $? = 0 configure:5063: test -z || test ! -s conftest.err configure:5066: $? = 0 configure:5069: test -s conftest.o configure:5072: $? = 0 configure:5097: checking dependency style of g++ configure:5180: result: gcc3 configure:5202: checking how to run the C++ preprocessor configure:5233: g++ -E conftest.cc configure:5239: $? = 0 configure:5271: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5277: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5316: result: g++ -E configure:5340: g++ -E conftest.cc configure:5346: $? = 0 configure:5378: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5384: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5479: checking for g77 configure:5508: result: no configure:5479: checking for f77 configure:5508: result: no configure:5479: checking for xlf configure:5508: result: no configure:5479: checking for frt configure:5508: result: no configure:5479: checking for pgf77 configure:5508: result: no configure:5479: checking for fort77 configure:5508: result: no configure:5479: checking for fl32 configure:5508: result: no configure:5479: checking for af77 configure:5508: result: no configure:5479: checking for f90 configure:5508: result: no configure:5479: checking for xlf90 configure:5508: result: no configure:5479: checking for pgf90 configure:5508: result: no configure:5479: checking for epcf90 configure:5508: result: no configure:5479: checking for f95 configure:5508: result: no configure:5479: checking for fort configure:5508: result: no configure:5479: checking for xlf95 configure:5508: result: no configure:5479: checking for ifc configure:5508: result: no configure:5479: checking for efc configure:5508: result: no configure:5479: checking for pgf95 configure:5508: result: no configure:5479: checking for lf95 configure:5508: result: no configure:5479: checking for gfortran configure:5508: result: no configure:5523: checking for Fortran 77 compiler version configure:5523: --version &5 ./configure: --version: command not found configure:5526: $? = 127 configure:5528: -v &5 ./configure: -v: command not found configure:5531: $? = 127 configure:5533: -V &5 ./configure: -V: command not found configure:5536: $? = 127 configure:5544: checking whether we are using the GNU Fortran 77 compiler configure:5558: -c conftest.F >&5 ./configure: -c: command not found configure:5564: $? = 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif | | end configure:5589: result: no configure:5595: checking whether accepts -g configure:5607: -c -g conftest.f >&5 ./configure: -c: command not found configure:5613: $? = 127 configure: failed program was: | program main | | end configure:5637: result: no configure:5667: checking the maximum length of command line arguments configure:5732: result: 32768 configure:5743: checking command to parse /usr/bin/nm -B output from gcc object configure:5832: gcc -c -g -O2 conftest.c >&5 configure:5835: $? = 0 configure:5839: /usr/bin/nm -B conftest.o \| sed -n -e s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\ )$/\1 \2\3 \3/p' \> conftest.nm configure:5842: $? = 0 configure:5894: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5897: $? = 0 configure:5935: result: ok configure:5939: checking for objdir configure:5954: result: .libs configure:6044: checking for ar configure:6060: found /usr/bin/ar configure:6071: result: ar configure:6124: checking for ranlib configure:6140: found /usr/bin/ranlib configure:6151: result: ranlib configure:6204: checking for strip configure:6220: found /usr/bin/strip configure:6231: result: strip configure:6493: checking if gcc static flag works configure:6516: result: yes configure:6534: checking if gcc supports -fno-rtti -fno-exceptions configure:6555: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:6559: $? = 0 configure:6567: result: no configure:6582: checking for gcc option to produce PIC configure:6759: result: -fPIC configure:6767: checking if gcc PIC flag -fPIC works configure:6788: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 configure:6792: $? = 0 configure:6800: result: yes configure:6824: checking if gcc supports -c -o file.o configure:6848: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:6852: $? = 0 configure:6869: result: yes configure:6895: checking whether the gcc linker (/usr/bin/ld) supports shared libraries configure:7742: result: yes configure:7768: checking whether -lc should be explicitly linked in configure:7773: gcc -c -g -O2 conftest.c >&5 configure:7776: $? = 0 configure:7790: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:7793: $? = 0 configure:7805: result: no configure:7813: checking dynamic linker characteristics configure:8353: result: GNU/Linux ld.so configure:8357: checking how to hardcode library paths into programs configure:8382: result: immediate configure:8396: checking whether stripping libraries is possible configure:8401: result: yes configure:9224: checking if libtool supports shared libraries configure:9226: result: yes configure:9229: checking whether to build shared libraries configure:9287: result: yes configure:9290: checking whether to build static libraries configure:9294: result: yes configure:9386: creating libtool configure:9933: checking for ld used by g++ configure:10000: result: /usr/bin/ld configure:10009: checking if the linker (/usr/bin/ld) is GNU ld configure:10024: result: yes configure:10075: checking whether the g++ linker (/usr/bin/ld) supports shared libraries configure:10901: result: yes configure:10919: g++ -c -g -O2 conftest.cc >&5 configure:10922: $? = 0 configure:11018: checking for g++ option to produce PIC configure:11270: result: -fPIC configure:11278: checking if g++ PIC flag -fPIC works configure:11299: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5 configure:11303: $? = 0 configure:11311: result: yes configure:11335: checking if g++ supports -c -o file.o configure:11359: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5 configure:11363: $? = 0 configure:11380: result: yes configure:11406: checking whether the g++ linker (/usr/bin/ld) supports shar ed libraries configure:11434: result: yes configure:11505: checking dynamic linker characteristics configure:12045: result: GNU/Linux ld.so configure:12049: checking how to hardcode library paths into programs configure:12074: result: immediate configure:12088: checking whether stripping libraries is possible configure:12093: result: yes configure:19312: checking whether make sets $(MAKE) configure:19332: result: yes configure:19420: checking for dirent.h that defines DIR configure:19444: gcc -c -g -O2 conftest.c >&5 configure:19450: $? = 0 configure:19453: test -z || test ! -s conftest.err configure:19456: $? = 0 configure:19459: test -s conftest.o configure:19462: $? = 0 configure:19473: result: yes configure:19486: checking for library containing opendir configure:19516: gcc -o conftest -g -O2 conftest.c >&5 configure:19522: $? = 0 configure:19525: test -z || test ! -s conftest.err configure:19528: $? = 0 configure:19531: test -s conftest configure:19534: $? = 0 configure:19603: result: none required configure:19737: checking for ANSI C header files configure:19889: result: yes configure:19916: checking fcntl.h usability configure:19928: gcc -c -g -O2 conftest.c >&5 configure:19934: $? = 0 configure:19937: test -z || test ! -s conftest.err configure:19940: $? = 0 configure:19943: test -s conftest.o configure:19946: $? = 0 configure:19956: result: yes configure:19960: checking fcntl.h presence configure:19970: gcc -E conftest.c configure:19976: $? = 0 configure:19996: result: yes configure:20031: checking for fcntl.h configure:20038: result: yes configure:19907: checking for stdlib.h configure:19912: result: yes configure:19907: checking for string.h configure:19912: result: yes configure:19907: checking for unistd.h configure:19912: result: yes configure:20053: checking for an ANSI C-conforming const configure:20120: gcc -c -g -O2 conftest.c >&5 configure:20126: $? = 0 configure:20129: test -z || test ! -s conftest.err configure:20132: $? = 0 configure:20135: test -s conftest.o configure:20138: $? = 0 configure:20149: result: yes configure:20159: checking for pid_t configure:20183: gcc -c -g -O2 conftest.c >&5 configure:20189: $? = 0 configure:20192: test -z || test ! -s conftest.err configure:20195: $? = 0 configure:20198: test -s conftest.o configure:20201: $? = 0 configure:20212: result: yes configure:20230: checking for vprintf configure:20287: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:55: warning: conflicting types for built-in function 'vprintf' configure:20293: $? = 0 configure:20296: test -z || test ! -s conftest.err configure:20299: $? = 0 configure:20302: test -s conftest configure:20305: $? = 0 configure:20317: result: yes configure:20324: checking for _doprnt configure:20381: gcc -o conftest -g -O2 conftest.c >&5 /tmp/ccwoMPei.o: In function `main': /fontconfig-2.2.3/conftest.c:72: undefined reference to `_doprnt' /tmp/ccwoMPei.o:(.data+0x0): undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:20387: $? = 1 configure: failed program was: | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _doprnt | | /* Override any gcc2 internal prototype to avoid an error. */ | #ifdef __cplusplus | extern "C" | { | #endif | /* We use char because int might match the return type of a gcc2 | builtin and then its argument prototype would still apply. */ | char _doprnt (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined (__stub__doprnt) || defined (__stub____doprnt) | choke me | #else | char (*f) () = _doprnt; | #endif | #ifdef __cplusplus | } | #endif | | int | main () | { | return f != _doprnt; | ; | return 0; | } configure:20411: result: no configure:20439: checking for geteuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for link configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for memmove configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:59: warning: conflicting types for built-in function 'memmove' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for memset configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:60: warning: conflicting types for built-in function 'memset' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for mkstemp configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:62: warning: conflicting types for built-in function 'strchr' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strrchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:63: warning: conflicting types for built-in function 'strrchr' configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for strtol configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getopt configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20439: checking for getopt_long configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? = 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? = 0 configure:20511: test -s conftest configure:20514: $? = 0 configure:20526: result: yes configure:20553: checking for freetype-config configure:20571: found /usr/local/bin/freetype-config configure:20584: result: /usr/local/bin/freetype-config configure:20620: checking for FT_Get_First_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20620: checking for FT_Get_Next_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20620: checking for FT_Get_BDF_Property configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? = 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? = 0 configure:20692: test -s conftest configure:20695: $? = 0 configure:20707: result: yes configure:20717: checking for FT_Bitmap_Size.y_ppem configure:20742: gcc -c -g -O2 -I/usr/local/include/freetype2 -I/usr/local/include conftest.c >&5 configure:20748: $? = 0 configure:20751: test -z || test ! -s conftest.err configure:20754: $? = 0 configure:20757: test -s conftest.o configure:20760: $? = 0 configure:20818: result: yes configure:20908: checking expat.h usability configure:20920: gcc -c -g -O2 -I/usr/local/include conftest.c >&5 configure:20926: $? = 0 configure:20929: test -z || test ! -s conftest.err configure:20932: $? = 0 configure:20935: test -s conftest.o configure:20938: $? = 0 configure:20948: result: yes configure:20952: checking expat.h presence configure:20962: gcc -E -I/usr/local/include conftest.c configure:20968: $? = 0 configure:20988: result: yes configure:21023: checking for expat.h configure:21030: result: yes configure:21205: checking for XML_ParserCreate configure:21262: gcc -o conftest -g -O2 -I/usr/local/include conftest.c -L/usr/local/lib -lexpat >&5 configure:21268: $? = 0 configure:21271: test -z || test ! -s conftest.err configure:21274: $? = 0 configure:21277: test -s conftest configure:21280: $? = 0 configure:21292: result: yes configure:21492: checking for docbook2html configure:21519: result: no configure:21716: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on localhost.localdomain config.status:799: creating Makefile config.status:799: creating fontconfig/Makefile config.status:799: creating fc-lang/Makefile config.status:799: creating src/Makefile config.status:799: creating src/fontconfig.def config.status:799: creating fc-cache/Makefile config.status:799: creating fc-list/Makefile config.status:799: creating doc/Makefile config.status:799: creating doc/version.sgml config.status:799: creating test/Makefile config.status:799: creating fontconfig.spec config.status:799: creating fontconfig.pc config.status:799: creating fonts.conf config.status:799: creating fontconfig-zip config.status:865: creating config.h config.status:1225: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_build_alias=i686-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_F77_set= ac_cv_env_F77_value= ac_cv_env_FFLAGS_set= ac_cv_env_FFLAGS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_exeext= ac_cv_f77_compiler_gnu=no ac_cv_func_FT_Get_BDF_Property=yes ac_cv_func_FT_Get_First_Char=yes ac_cv_func_FT_Get_Next_Char=yes ac_cv_func_XML_ParserCreate=yes ac_cv_func__doprnt=no ac_cv_func_geteuid=yes ac_cv_func_getopt=yes ac_cv_func_getopt_long=yes ac_cv_func_getuid=yes ac_cv_func_link=yes ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_mkstemp=yes ac_cv_func_strchr=yes ac_cv_func_strrchr=yes ac_cv_func_strtol=yes ac_cv_func_vprintf=yes ac_cv_header_dirent_dirent_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_expat_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=i686-pc-linux-gnu ac_cv_host_alias=i686-pc-linux-gnu ac_cv_member_FT_Bitmap_Size_y_ppem=yes ac_cv_objext=o ac_cv_path_ft_config=/usr/local/bin/freetype-config ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_HASDOCBOOK=no ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc= ac_cv_prog_cxx_g=yes ac_cv_prog_egrep='grep -E' ac_cv_prog_f77_g=no ac_cv_prog_make_make_set=yes ac_cv_search_opendir='none required' ac_cv_type_pid_t=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_SED=/bin/sed lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sys_global_symbol_pipe='sed -n -e \''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9 ]*\)$/\1 \2\3 \3/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' lt_cv_sys_max_cmd_len=32768 lt_lt_cv_prog_compiler_c_o='"yes"' lt_lt_cv_prog_compiler_c_o_CXX='"yes"' lt_lt_cv_sys_global_symbol_pipe='"sed -n -e \''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za -z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /fontconfig-2.2.3/missing --run aclocal-1.7' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /fontconfig-2.2.3/missing --run tar' AR='ar' AS='as' AUTOCONF='${SHELL} /fontconfig-2.2.3/missing --run autoconf' AUTOHEADER='${SHELL} /fontconfig-2.2.3/missing --run autoheader' AUTOMAKE='${SHELL} /fontconfig-2.2.3/missing --run automake-1.7' AWK='gawk' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CONFDIR='${sysconfdir}/fonts' CPP='gcc -E' CPPFLAGS='' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='dlltool' DOCDIR='${datadir}/doc/fontconfig' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='grep -E' ENABLE_DOCS_FALSE='' ENABLE_DOCS_TRUE='#' EXEEXT='' EXPAT_CFLAGS='-I/usr/local/include' EXPAT_LIBS='-L/usr/local/lib -lexpat' F77='' FC_ADD_FONTS='' FC_DEFAULT_FONTS='/usr/share/fonts' FC_FONTDATE='Fri Aug 25 07:21:39 EDT 2006' FC_FONTPATH='' FFLAGS='' FREETYPE_CFLAGS='-I/usr/local/include/freetype2 -I/usr/local/include' FREETYPE_LIBS='-L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -l z' HASDOCBOOK='no' HAVE_EXPAT='1' HAVE_XMLPARSE_H='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LN_S='ln -s' LTLIBOBJS='' LT_CURRENT='1' LT_CURRENT_MINUS_AGE='1' LT_REVISION='4' LT_VERSION_INFO='1:4:0' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /fontconfig-2.2.3/missing --run makeinfo' MS_LIB_AVAILABLE_FALSE='' MS_LIB_AVAILABLE_TRUE='#' OBJDUMP='objdump' OBJEXT='o' ORTH_FILES='aa.orth ab.orth af.orth am.orth ar.orth ast.orth ava.orth ay.orth az.orth ba.orth bam.orth be.orth bg.orth bh.orth bho.orth bi.orth bin.orth bn.orth bo.orth br.orth bs.orth bua.orth ca.orth ce.orth ch.orth chm.orth chr.orth co.orth cs.orth cu.orth cv.orth cy.orth da.orth de.orth dz.orth el.orth en.orth eo.orth es.orth et.orth eu.orth fa.orth fi.orth fj.orth fo.orth fr.orth ful.orth fur.orth fy.orth ga.orth gd.orth gez.orth gl.orth gn.orth gu.orth gv.orth ha.orth haw.orth he.orth hi.orth ho.orth hr.orth hu.orth hy.orth ia.orth ibo.orth id.orth ie.orth ik.orth io.orth is.orth it.orth iu.orth ja.orth ka.orth kaa.orth ki.orth kk.orth kl.orth km.orth kn.orth ko.orth kok.orth ks.orth ku.orth kum.orth kv.orth kw.orth ky.orth la.orth lb.orth lez.orth lo.orth lt.orth lv.orth mg.orth mh.orth mi.orth mk.orth ml.orth mn.orth mo.orth mr.orth mt.orth my.orth nb.orth ne.orth nl.orth nn.orth no.orth ny.orth oc.orth om.orth or.orth os.orth pl.orth pt.orth rm.orth ro.orth ru.orth sa.orth sah.orth sco.orth se.orth sel.orth sh.orth si.orth sk.orth sl.orth sm.orth sma.orth smj.orth smn.orth sms.orth so.orth sq.orth sr.orth sv.orth sw.orth syr.orth ta.orth te.orth tg.orth th.orth ti_er.orth ti_et.orth tig.orth tk.orth tl.orth tn.orth to.orth tr.orth ts.orth tt.orth tw.orth tyv.orth ug.orth uk.orth ur.orth uz.orth ven.orth vi.orth vo.orth vot.orth wa.orth wen.orth wo.orth xh.orth yap.orth yi.orth yo.orth zh_cn.orth zh_hk.orth zh_mo.orth zh_sg.orth zh_tw.orth zu.orth' OS_WIN32_FALSE='' OS_WIN32_TRUE='#' PACKAGE='fontconfig' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' RANLIB='ranlib' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='2.2.3' ac_ct_AR='ar' ac_ct_AS='' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_DLLTOOL='' ac_ct_F77='' ac_ct_OBJDUMP='' ac_ct_RANLIB='ranlib' ac_ct_STRIP='strip' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__leading_dot='.' am__quote='' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' confdir='${sysconfdir}/fonts' datadir='${prefix}/share' exec_prefix='${prefix}' ft_config='/usr/local/bin/freetype-config' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' includedir='${prefix}/include' infodir='${prefix}/info' install_sh='/fontconfig-2.2.3/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localstatedir='${prefix}/var' mandir='${prefix}/man' ms_librarian='' oldincludedir='/usr/include' prefix='/usr/local' program_transform_name='s,x,x,' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define CONFDIR "${sysconfdir}/fonts" #define FC_ADD_FONTS "yes" #define FC_DEFAULT_FONTS "/usr/share/fonts" #define HAVE_DIRENT_H 1 #define HAVE_DLFCN_H 1 #define HAVE_EXPAT 1 #define HAVE_FCNTL_H 1 #define HAVE_FT_BITMAP_SIZE_Y_PPEM 1 #define HAVE_FT_GET_BDF_PROPERTY 1 #define HAVE_FT_GET_FIRST_CHAR 1 #define HAVE_FT_GET_NEXT_CHAR 1 #define HAVE_GETEUID 1 #define HAVE_GETOPT 1 #define HAVE_GETOPT_LONG 1 #define HAVE_GETUID 1 #define HAVE_INTTYPES_H 1 #define HAVE_LINK 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMORY_H 1 #define HAVE_MEMSET 1 #define HAVE_MKSTEMP 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRCHR 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_STRING_H 1 #define HAVE_STRRCHR 1 #define HAVE_STRTOL 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UNISTD_H 1 #define HAVE_VPRINTF 1 #define HAVE_XML_PARSERCREATE 1 #define PACKAGE "fontconfig" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define STDC_HEADERS 1 #define STDC_HEADERS 1 #define VERSION "2.2.3" #endif #ifdef __cplusplus extern "C" void std::exit (int) throw (); using std::exit; configure: exit 0 From bounces@nabble.com Sat Aug 26 07:36:22 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 39EDA3B00A1 for ; Sat, 26 Aug 2006 07:36:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12918-03 for ; Sat, 26 Aug 2006 07:36:11 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 4F7213B024F for ; Sat, 26 Aug 2006 07:31:49 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GGwOC-00077F-Iu for gtk-list@gnome.org; Sat, 26 Aug 2006 04:31:48 -0700 Message-ID: <5996953.post@talk.nabble.com> Date: Sat, 26 Aug 2006 04:31:48 -0700 (PDT) From: Tintin72 To: gtk-list@gnome.org Subject: GTK window and DLL ? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:08 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 11:36:22 -0000 Hi all, I'd like to associate a GTK window with a dll under Windows XP. What I want to do is that the GTK window retrieves the messages emited from the dll. I wrote (just for testing) a dll wich start a timer and send a message to the host window (my GTK window in this case) each second . I know I have to use the gdk_window_add_filter function, but I don 't know how to translate my GTK window to a Windows handle (HWND) and get an ID in order to receive the messages from the dll. I found a macro in the gdkwin32.h file that would be able to do the job: /* Translate from drawable to Windows handle */ 064 HGDIOBJ gdk_win32_drawable_get_handle (GdkDrawable *drawable); but it doesn't work. Here is some parts of my code: in the main function: HWND hWnd; hWnd = (HWND)gdk_win32_drawable_get_handle(myApp.pWin->window); gdk_window_add_filter(myApp.pWin->window, msgFunc, &myApp); timer(hWnd); //start the timer and my filter function: GdkFilterReturn msgFunc (GdkXEvent *xevent,GdkEvent *event, gpointer userData) { APPLICATION *pApp = (APPLICATION*)userData; MSG *WndMsg = (MSG*) xevent; if(WndMsg->message == DLL_MSG) { addText(pApp->pDrawArea, "DLL Message!", userData); //Display text each time a message is sent } return GDK_FILTER_CONTINUE; } it seems that the GTK window doesn't receive any messages from the dll. Can somebody help me ? Thanks for advance -- View this message in context: http://www.nabble.com/GTK-window-and-DLL---tf2168964.html#a5996953 Sent from the Gtk+ - General forum at Nabble.com. From billcu1@verizon.net Sat Aug 26 17:36:07 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0C63B0078 for ; Sat, 26 Aug 2006 17:36:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04662-09 for ; Sat, 26 Aug 2006 17:36:06 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id F39393B0071 for ; Sat, 26 Aug 2006 17:36:05 -0400 (EDT) Received: from win98 ([72.64.19.153]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M00F2GK03BUV2@vms040.mailsrvcs.net> for gtk-list@gnome.org; Sat, 26 Aug 2006 16:36:05 -0500 (CDT) Date: Sat, 26 Aug 2006 17:34:22 -0400 From: "Bill Cunningham" Subject: fontconfig error To: Message-id: <000a01c6c957$65f79560$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook Express 5.50.4133.2400 Content-type: multipart/mixed; boundary="----=_NextPart_000_0007_01C6C935.DE3E1CA0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.731 tagged_above=-999 required=2 tests=[AWL=-0.177, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.731 X-Spam-Level: * X-Mailman-Approved-At: Mon, 28 Aug 2006 11:18:09 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2006 21:36:07 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C6C935.DE3E1CA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit hope this att answers some questions ------=_NextPart_000_0007_01C6C935.DE3E1CA0 Content-Type: application/octet-stream; name="Config.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.59. Invocation command line was $ ./configure --disable-win32 = --with-expat-includes=3D/usr/local/include = --with-expat-lib=3D/usr/local/lib ## --------- ## ## Platform. ## ## --------- ## hostname =3D localhost.localdomain uname -m =3D i686 uname -r =3D 2.2.16-22 uname -s =3D Linux uname -v =3D #1 Tue Aug 22 16:49:06 EDT 2000 /usr/bin/uname -p =3D unknown /bin/uname -X =3D unknown /bin/arch =3D i686 /usr/bin/arch -k =3D unknown /usr/convex/getsysinfo =3D unknown hostinfo =3D unknown /bin/machine =3D unknown /usr/bin/oslevel =3D unknown /bin/universe =3D unknown PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1549: checking for a BSD-compatible install configure:1604: result: /usr/bin/install -c configure:1615: checking whether build environment is sane configure:1658: result: yes configure:1691: checking for gawk configure:1707: found /bin/gawk configure:1717: result: gawk configure:1727: checking whether make sets $(MAKE) configure:1747: result: yes configure:1911: checking whether to enable maintainer-specific portions = of Makefiles configure:1920: result: no configure:1999: checking for gcc configure:2015: found /usr/bin/gcc configure:2025: result: gcc configure:2269: checking for C compiler version configure:2272: gcc --version &5 gcc (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is = NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR = PURPOSE. configure:2275: $? =3D 0 configure:2277: gcc -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=3D/opt/usr Thread model: posix gcc version 3.4.6 configure:2280: $? =3D 0 configure:2282: gcc -V &5 gcc: `-V' option must have argument configure:2285: $? =3D 1 configure:2308: checking for C compiler default output file name configure:2311: gcc conftest.c >&5 configure:2314: $? =3D 0 configure:2360: result: a.out configure:2365: checking whether the C compiler works configure:2371: ./a.out configure:2374: $? =3D 0 configure:2391: result: yes configure:2398: checking whether we are cross compiling configure:2400: result: no configure:2403: checking for suffix of executables configure:2405: gcc -o conftest conftest.c >&5 configure:2408: $? =3D 0 configure:2433: result:=20 configure:2439: checking for suffix of object files configure:2460: gcc -c conftest.c >&5 configure:2463: $? =3D 0 configure:2485: result: o configure:2489: checking whether we are using the GNU C compiler configure:2513: gcc -c conftest.c >&5 configure:2519: $? =3D 0 configure:2522: test -z || test ! -s conftest.err configure:2525: $? =3D 0 configure:2528: test -s conftest.o configure:2531: $? =3D 0 configure:2544: result: yes configure:2550: checking whether gcc accepts -g configure:2571: gcc -c -g conftest.c >&5 configure:2577: $? =3D 0 configure:2580: test -z || test ! -s conftest.err configure:2583: $? =3D 0 configure:2586: test -s conftest.o configure:2589: $? =3D 0 configure:2600: result: yes configure:2617: checking for gcc option to accept ANSI C configure:2687: gcc -c -g -O2 conftest.c >&5 configure:2693: $? =3D 0 configure:2696: test -z || test ! -s conftest.err configure:2699: $? =3D 0 configure:2702: test -s conftest.o configure:2705: $? =3D 0 configure:2723: result: none needed configure:2741: gcc -c -g -O2 conftest.c >&5 conftest.c:2: error: syntax error before "me" configure:2747: $? =3D 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:2888: checking for style of include used by make configure:2916: result: GNU configure:2944: checking dependency style of gcc configure:3027: result: gcc3 configure:3057: checking for a BSD-compatible install configure:3112: result: /usr/bin/install -c configure:3123: checking whether ln -s works configure:3127: result: yes configure:3214: checking build system type configure:3232: result: i686-pc-linux-gnu configure:3240: checking host system type configure:3254: result: i686-pc-linux-gnu configure:3262: checking for a sed that does not truncate output configure:3316: result: /bin/sed configure:3319: checking for egrep configure:3329: result: grep -E configure:3345: checking for ld used by gcc configure:3412: result: /usr/bin/ld configure:3421: checking if the linker (/usr/bin/ld) is GNU ld configure:3436: result: yes configure:3441: checking for /usr/bin/ld option to reload object files configure:3448: result: -r configure:3457: checking for BSD-compatible nm configure:3499: result: /usr/bin/nm -B configure:3503: checking how to recognise dependent libraries configure:3677: result: pass_all configure:4132: checking how to run the C preprocessor configure:4167: gcc -E conftest.c configure:4173: $? =3D 0 configure:4205: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4211: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4250: result: gcc -E configure:4274: gcc -E conftest.c configure:4280: $? =3D 0 configure:4312: gcc -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:4318: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | /* end confdefs.h. */ | #include configure:4362: checking for ANSI C header files configure:4387: gcc -c -g -O2 conftest.c >&5 configure:4393: $? =3D 0 configure:4396: test -z || test ! -s conftest.err configure:4399: $? =3D 0 configure:4402: test -s conftest.o configure:4405: $? =3D 0 configure:4491: gcc -o conftest -g -O2 conftest.c >&5 configure:4494: $? =3D 0 configure:4496: ./conftest configure:4499: $? =3D 0 configure:4514: result: yes configure:4538: checking for sys/types.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for sys/stat.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for stdlib.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for string.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for memory.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for strings.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for inttypes.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for stdint.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4538: checking for unistd.h configure:4554: gcc -c -g -O2 conftest.c >&5 configure:4560: $? =3D 0 configure:4563: test -z || test ! -s conftest.err configure:4566: $? =3D 0 configure:4569: test -s conftest.o configure:4572: $? =3D 0 configure:4583: result: yes configure:4609: checking dlfcn.h usability configure:4621: gcc -c -g -O2 conftest.c >&5 configure:4627: $? =3D 0 configure:4630: test -z || test ! -s conftest.err configure:4633: $? =3D 0 configure:4636: test -s conftest.o configure:4639: $? =3D 0 configure:4649: result: yes configure:4653: checking dlfcn.h presence configure:4663: gcc -E conftest.c configure:4669: $? =3D 0 configure:4689: result: yes configure:4724: checking for dlfcn.h configure:4731: result: yes configure:4796: checking for g++ configure:4812: found /usr/bin/g++ configure:4822: result: g++ configure:4838: checking for C++ compiler version configure:4841: g++ --version &5 g++ (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is = NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR = PURPOSE. configure:4844: $? =3D 0 configure:4846: g++ -v &5 Reading specs from /usr/bin/../lib/gcc/i686-pc-linux-gnu/3.4.6/specs Configured with: ./configure --prefix=3D/opt/usr Thread model: posix gcc version 3.4.6 configure:4849: $? =3D 0 configure:4851: g++ -V &5 g++: `-V' option must have argument configure:4854: $? =3D 1 configure:4857: checking whether we are using the GNU C++ compiler configure:4881: g++ -c conftest.cc >&5 configure:4887: $? =3D 0 configure:4890: test -z || test ! -s conftest.err configure:4893: $? =3D 0 configure:4896: test -s conftest.o configure:4899: $? =3D 0 configure:4912: result: yes configure:4918: checking whether g++ accepts -g configure:4939: g++ -c -g conftest.cc >&5 configure:4945: $? =3D 0 configure:4948: test -z || test ! -s conftest.err configure:4951: $? =3D 0 configure:4954: test -s conftest.o configure:4957: $? =3D 0 configure:4968: result: yes configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? =3D 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? =3D 0 configure:5025: test -s conftest.o configure:5028: $? =3D 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 conftest.cc: In function `int main()': conftest.cc:26: error: `exit' was not declared in this scope configure:5060: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ |=20 | int | main () | { | exit (42); | ; | return 0; | } configure:5010: g++ -c -g -O2 conftest.cc >&5 configure:5016: $? =3D 0 configure:5019: test -z || test ! -s conftest.err configure:5022: $? =3D 0 configure:5025: test -s conftest.o configure:5028: $? =3D 0 configure:5054: g++ -c -g -O2 conftest.cc >&5 configure:5060: $? =3D 0 configure:5063: test -z || test ! -s conftest.err configure:5066: $? =3D 0 configure:5069: test -s conftest.o configure:5072: $? =3D 0 configure:5097: checking dependency style of g++ configure:5180: result: gcc3 configure:5202: checking how to run the C++ preprocessor configure:5233: g++ -E conftest.cc configure:5239: $? =3D 0 configure:5271: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5277: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5316: result: g++ -E configure:5340: g++ -E conftest.cc configure:5346: $? =3D 0 configure:5378: g++ -E conftest.cc conftest.cc:25:28: ac_nonexistent.h: No such file or directory configure:5384: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | /* end confdefs.h. */ | #include configure:5479: checking for g77 configure:5508: result: no configure:5479: checking for f77 configure:5508: result: no configure:5479: checking for xlf configure:5508: result: no configure:5479: checking for frt configure:5508: result: no configure:5479: checking for pgf77 configure:5508: result: no configure:5479: checking for fort77 configure:5508: result: no configure:5479: checking for fl32 configure:5508: result: no configure:5479: checking for af77 configure:5508: result: no configure:5479: checking for f90 configure:5508: result: no configure:5479: checking for xlf90 configure:5508: result: no configure:5479: checking for pgf90 configure:5508: result: no configure:5479: checking for epcf90 configure:5508: result: no configure:5479: checking for f95 configure:5508: result: no configure:5479: checking for fort configure:5508: result: no configure:5479: checking for xlf95 configure:5508: result: no configure:5479: checking for ifc configure:5508: result: no configure:5479: checking for efc configure:5508: result: no configure:5479: checking for pgf95 configure:5508: result: no configure:5479: checking for lf95 configure:5508: result: no configure:5479: checking for gfortran configure:5508: result: no configure:5523: checking for Fortran 77 compiler version configure:5523: --version &5 ./configure: --version: command not found configure:5526: $? =3D 127 configure:5528: -v &5 ./configure: -v: command not found configure:5531: $? =3D 127 configure:5533: -V &5 ./configure: -V: command not found configure:5536: $? =3D 127 configure:5544: checking whether we are using the GNU Fortran 77 = compiler configure:5558: -c conftest.F >&5 ./configure: -c: command not found configure:5564: $? =3D 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif |=20 | end configure:5589: result: no configure:5595: checking whether accepts -g configure:5607: -c -g conftest.f >&5 ./configure: -c: command not found configure:5613: $? =3D 127 configure: failed program was: | program main |=20 | end configure:5637: result: no configure:5667: checking the maximum length of command line arguments configure:5732: result: 32768 configure:5743: checking command to parse /usr/bin/nm -B output from gcc = object configure:5832: gcc -c -g -O2 conftest.c >&5 configure:5835: $? =3D 0 configure:5839: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ = ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ = ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm configure:5842: $? =3D 0 configure:5894: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5897: $? =3D 0 configure:5935: result: ok configure:5939: checking for objdir configure:5954: result: .libs configure:6044: checking for ar configure:6060: found /usr/bin/ar configure:6071: result: ar configure:6124: checking for ranlib configure:6140: found /usr/bin/ranlib configure:6151: result: ranlib configure:6204: checking for strip configure:6220: found /usr/bin/strip configure:6231: result: strip configure:6493: checking if gcc static flag works configure:6516: result: yes configure:6534: checking if gcc supports -fno-rtti -fno-exceptions configure:6555: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ = but not for C configure:6559: $? =3D 0 configure:6567: result: no configure:6582: checking for gcc option to produce PIC configure:6759: result: -fPIC configure:6767: checking if gcc PIC flag -fPIC works configure:6788: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 configure:6792: $? =3D 0 configure:6800: result: yes configure:6824: checking if gcc supports -c -o file.o configure:6848: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:6852: $? =3D 0 configure:6869: result: yes configure:6895: checking whether the gcc linker (/usr/bin/ld) supports = shared libraries configure:7742: result: yes configure:7768: checking whether -lc should be explicitly linked in configure:7773: gcc -c -g -O2 conftest.c >&5 configure:7776: $? =3D 0 configure:7790: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o = conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:7793: $? =3D 0 configure:7805: result: no configure:7813: checking dynamic linker characteristics configure:8353: result: GNU/Linux ld.so configure:8357: checking how to hardcode library paths into programs configure:8382: result: immediate configure:8396: checking whether stripping libraries is possible configure:8401: result: yes configure:9224: checking if libtool supports shared libraries configure:9226: result: yes configure:9229: checking whether to build shared libraries configure:9287: result: yes configure:9290: checking whether to build static libraries configure:9294: result: yes configure:9386: creating libtool configure:9933: checking for ld used by g++ configure:10000: result: /usr/bin/ld configure:10009: checking if the linker (/usr/bin/ld) is GNU ld configure:10024: result: yes configure:10075: checking whether the g++ linker (/usr/bin/ld) supports = shared libraries configure:10901: result: yes configure:10919: g++ -c -g -O2 conftest.cc >&5 configure:10922: $? =3D 0 configure:11018: checking for g++ option to produce PIC configure:11270: result: -fPIC configure:11278: checking if g++ PIC flag -fPIC works configure:11299: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5 configure:11303: $? =3D 0 configure:11311: result: yes configure:11335: checking if g++ supports -c -o file.o configure:11359: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5 configure:11363: $? =3D 0 configure:11380: result: yes configure:11406: checking whether the g++ linker (/usr/bin/ld) supports = shared libraries configure:11434: result: yes configure:11505: checking dynamic linker characteristics configure:12045: result: GNU/Linux ld.so configure:12049: checking how to hardcode library paths into programs configure:12074: result: immediate configure:12088: checking whether stripping libraries is possible configure:12093: result: yes configure:19312: checking whether make sets $(MAKE) configure:19332: result: yes configure:19420: checking for dirent.h that defines DIR configure:19444: gcc -c -g -O2 conftest.c >&5 configure:19450: $? =3D 0 configure:19453: test -z || test ! -s conftest.err configure:19456: $? =3D 0 configure:19459: test -s conftest.o configure:19462: $? =3D 0 configure:19473: result: yes configure:19486: checking for library containing opendir configure:19516: gcc -o conftest -g -O2 conftest.c >&5 configure:19522: $? =3D 0 configure:19525: test -z || test ! -s conftest.err configure:19528: $? =3D 0 configure:19531: test -s conftest configure:19534: $? =3D 0 configure:19603: result: none required configure:19737: checking for ANSI C header files configure:19889: result: yes configure:19916: checking fcntl.h usability configure:19928: gcc -c -g -O2 conftest.c >&5 configure:19934: $? =3D 0 configure:19937: test -z || test ! -s conftest.err configure:19940: $? =3D 0 configure:19943: test -s conftest.o configure:19946: $? =3D 0 configure:19956: result: yes configure:19960: checking fcntl.h presence configure:19970: gcc -E conftest.c configure:19976: $? =3D 0 configure:19996: result: yes configure:20031: checking for fcntl.h configure:20038: result: yes configure:19907: checking for stdlib.h configure:19912: result: yes configure:19907: checking for string.h configure:19912: result: yes configure:19907: checking for unistd.h configure:19912: result: yes configure:20053: checking for an ANSI C-conforming const configure:20120: gcc -c -g -O2 conftest.c >&5 configure:20126: $? =3D 0 configure:20129: test -z || test ! -s conftest.err configure:20132: $? =3D 0 configure:20135: test -s conftest.o configure:20138: $? =3D 0 configure:20149: result: yes configure:20159: checking for pid_t configure:20183: gcc -c -g -O2 conftest.c >&5 configure:20189: $? =3D 0 configure:20192: test -z || test ! -s conftest.err configure:20195: $? =3D 0 configure:20198: test -s conftest.o configure:20201: $? =3D 0 configure:20212: result: yes configure:20230: checking for vprintf configure:20287: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:55: warning: conflicting types for built-in function = 'vprintf' configure:20293: $? =3D 0 configure:20296: test -z || test ! -s conftest.err configure:20299: $? =3D 0 configure:20302: test -s conftest configure:20305: $? =3D 0 configure:20317: result: yes configure:20324: checking for _doprnt configure:20381: gcc -o conftest -g -O2 conftest.c >&5 /tmp/ccM04MxO.o: In function `main': /fontconfig-2.2.3/conftest.c:72: undefined reference to `_doprnt' /tmp/ccM04MxO.o:(.data+0x0): undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:20387: $? =3D 1 configure: failed program was: | /* confdefs.h. */ |=20 | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "fontconfig" | #define VERSION "2.2.3" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #ifdef __cplusplus | extern "C" void std::exit (int) throw (); using std::exit; | #endif | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares = _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt |=20 | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ |=20 | #ifdef __STDC__ | # include | #else | # include | #endif |=20 | #undef _doprnt |=20 | /* Override any gcc2 internal prototype to avoid an error. */ | #ifdef __cplusplus | extern "C" | { | #endif | /* We use char because int might match the return type of a gcc2 | builtin and then its argument prototype would still apply. */ | char _doprnt (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined (__stub__doprnt) || defined (__stub____doprnt) | choke me | #else | char (*f) () =3D _doprnt; | #endif | #ifdef __cplusplus | } | #endif |=20 | int | main () | { | return f !=3D _doprnt; | ; | return 0; | } configure:20411: result: no configure:20439: checking for geteuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getuid configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for link configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for memmove configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:59: warning: conflicting types for built-in function = 'memmove' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for memset configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:60: warning: conflicting types for built-in function 'memset' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for mkstemp configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:62: warning: conflicting types for built-in function 'strchr' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strrchr configure:20496: gcc -o conftest -g -O2 conftest.c >&5 conftest.c:63: warning: conflicting types for built-in function = 'strrchr' configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for strtol configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getopt configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20439: checking for getopt_long configure:20496: gcc -o conftest -g -O2 conftest.c >&5 configure:20502: $? =3D 0 configure:20505: test -z || test ! -s conftest.err configure:20508: $? =3D 0 configure:20511: test -s conftest configure:20514: $? =3D 0 configure:20526: result: yes configure:20553: checking for freetype-config configure:20571: found /usr/local/bin/freetype-config configure:20584: result: /usr/local/bin/freetype-config configure:20620: checking for FT_Get_First_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20620: checking for FT_Get_Next_Char configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20620: checking for FT_Get_BDF_Property configure:20677: gcc -o conftest -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz >&5 configure:20683: $? =3D 0 configure:20686: test -z || test ! -s conftest.err configure:20689: $? =3D 0 configure:20692: test -s conftest configure:20695: $? =3D 0 configure:20707: result: yes configure:20717: checking for FT_Bitmap_Size.y_ppem configure:20742: gcc -c -g -O2 -I/usr/local/include/freetype2 = -I/usr/local/include conftest.c >&5 configure:20748: $? =3D 0 configure:20751: test -z || test ! -s conftest.err configure:20754: $? =3D 0 configure:20757: test -s conftest.o configure:20760: $? =3D 0 configure:20818: result: yes configure:20908: checking expat.h usability configure:20920: gcc -c -g -O2 -I/usr/local/include conftest.c >&5 configure:20926: $? =3D 0 configure:20929: test -z || test ! -s conftest.err configure:20932: $? =3D 0 configure:20935: test -s conftest.o configure:20938: $? =3D 0 configure:20948: result: yes configure:20952: checking expat.h presence configure:20962: gcc -E -I/usr/local/include conftest.c configure:20968: $? =3D 0 configure:20988: result: yes configure:21023: checking for expat.h configure:21030: result: yes configure:21205: checking for XML_ParserCreate configure:21262: gcc -o conftest -g -O2 -I/usr/local/include = conftest.c -L/usr/local/lib -lexpat >&5 configure:21268: $? =3D 0 configure:21271: test -z || test ! -s conftest.err configure:21274: $? =3D 0 configure:21277: test -s conftest configure:21280: $? =3D 0 configure:21292: result: yes configure:21492: checking for docbook2html configure:21519: result: no configure:21716: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES =3D=20 CONFIG_HEADERS =3D=20 CONFIG_LINKS =3D=20 CONFIG_COMMANDS =3D=20 $ ./config.status=20 on localhost.localdomain config.status:799: creating Makefile config.status:799: creating fontconfig/Makefile config.status:799: creating fc-lang/Makefile config.status:799: creating src/Makefile config.status:799: creating src/fontconfig.def config.status:799: creating fc-cache/Makefile config.status:799: creating fc-list/Makefile config.status:799: creating doc/Makefile config.status:799: creating doc/version.sgml config.status:799: creating test/Makefile config.status:799: creating fontconfig.spec config.status:799: creating fontconfig.pc config.status:799: creating fonts.conf config.status:799: creating fontconfig-zip config.status:865: creating config.h config.status:1225: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=3Di686-pc-linux-gnu ac_cv_build_alias=3Di686-pc-linux-gnu ac_cv_c_compiler_gnu=3Dyes ac_cv_c_const=3Dyes ac_cv_cxx_compiler_gnu=3Dyes ac_cv_env_CC_set=3D ac_cv_env_CC_value=3D ac_cv_env_CFLAGS_set=3D ac_cv_env_CFLAGS_value=3D ac_cv_env_CPPFLAGS_set=3D ac_cv_env_CPPFLAGS_value=3D ac_cv_env_CPP_set=3D ac_cv_env_CPP_value=3D ac_cv_env_CXXCPP_set=3D ac_cv_env_CXXCPP_value=3D ac_cv_env_CXXFLAGS_set=3D ac_cv_env_CXXFLAGS_value=3D ac_cv_env_CXX_set=3D ac_cv_env_CXX_value=3D ac_cv_env_F77_set=3D ac_cv_env_F77_value=3D ac_cv_env_FFLAGS_set=3D ac_cv_env_FFLAGS_value=3D ac_cv_env_LDFLAGS_set=3D ac_cv_env_LDFLAGS_value=3D ac_cv_env_build_alias_set=3D ac_cv_env_build_alias_value=3D ac_cv_env_host_alias_set=3D ac_cv_env_host_alias_value=3D ac_cv_env_target_alias_set=3D ac_cv_env_target_alias_value=3D ac_cv_exeext=3D ac_cv_f77_compiler_gnu=3Dno ac_cv_func_FT_Get_BDF_Property=3Dyes ac_cv_func_FT_Get_First_Char=3Dyes ac_cv_func_FT_Get_Next_Char=3Dyes ac_cv_func_XML_ParserCreate=3Dyes ac_cv_func__doprnt=3Dno ac_cv_func_geteuid=3Dyes ac_cv_func_getopt=3Dyes ac_cv_func_getopt_long=3Dyes ac_cv_func_getuid=3Dyes ac_cv_func_link=3Dyes ac_cv_func_memmove=3Dyes ac_cv_func_memset=3Dyes ac_cv_func_mkstemp=3Dyes ac_cv_func_strchr=3Dyes ac_cv_func_strrchr=3Dyes ac_cv_func_strtol=3Dyes ac_cv_func_vprintf=3Dyes ac_cv_header_dirent_dirent_h=3Dyes ac_cv_header_dlfcn_h=3Dyes ac_cv_header_expat_h=3Dyes ac_cv_header_fcntl_h=3Dyes ac_cv_header_inttypes_h=3Dyes ac_cv_header_memory_h=3Dyes ac_cv_header_stdc=3Dyes ac_cv_header_stdint_h=3Dyes ac_cv_header_stdlib_h=3Dyes ac_cv_header_string_h=3Dyes ac_cv_header_strings_h=3Dyes ac_cv_header_sys_stat_h=3Dyes ac_cv_header_sys_types_h=3Dyes ac_cv_header_unistd_h=3Dyes ac_cv_host=3Di686-pc-linux-gnu ac_cv_host_alias=3Di686-pc-linux-gnu ac_cv_member_FT_Bitmap_Size_y_ppem=3Dyes ac_cv_objext=3Do ac_cv_path_ft_config=3D/usr/local/bin/freetype-config ac_cv_path_install=3D'/usr/bin/install -c' ac_cv_prog_AWK=3Dgawk ac_cv_prog_CPP=3D'gcc -E' ac_cv_prog_CXXCPP=3D'g++ -E' ac_cv_prog_HASDOCBOOK=3Dno ac_cv_prog_ac_ct_AR=3Dar ac_cv_prog_ac_ct_CC=3Dgcc ac_cv_prog_ac_ct_CXX=3Dg++ ac_cv_prog_ac_ct_RANLIB=3Dranlib ac_cv_prog_ac_ct_STRIP=3Dstrip ac_cv_prog_cc_g=3Dyes ac_cv_prog_cc_stdc=3D ac_cv_prog_cxx_g=3Dyes ac_cv_prog_egrep=3D'grep -E' ac_cv_prog_f77_g=3Dno ac_cv_prog_make_make_set=3Dyes ac_cv_search_opendir=3D'none required' ac_cv_type_pid_t=3Dyes am_cv_CC_dependencies_compiler_type=3Dgcc3 am_cv_CXX_dependencies_compiler_type=3Dgcc3 lt_cv_deplibs_check_method=3Dpass_all lt_cv_file_magic_cmd=3D'$MAGIC_CMD' lt_cv_file_magic_test_file=3D lt_cv_ld_reload_flag=3D-r lt_cv_objdir=3D.libs lt_cv_path_LD=3D/usr/bin/ld lt_cv_path_LDCXX=3D/usr/bin/ld lt_cv_path_NM=3D'/usr/bin/nm -B' lt_cv_path_SED=3D/bin/sed lt_cv_prog_compiler_c_o=3Dyes lt_cv_prog_compiler_c_o_CXX=3Dyes lt_cv_prog_compiler_rtti_exceptions=3Dno lt_cv_prog_gnu_ld=3Dyes lt_cv_prog_gnu_ldcxx=3Dyes lt_cv_sys_global_symbol_pipe=3D'sed -n -e '\''s/^.*[ = ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ = ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\''' lt_cv_sys_global_symbol_to_c_name_address=3D'sed -n -e '\''s/^: \([^ = ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ = ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl=3D'sed -n -e '\''s/^. .* \(.*\)$/extern = int \1;/p'\''' lt_cv_sys_max_cmd_len=3D32768 lt_lt_cv_prog_compiler_c_o=3D'"yes"' lt_lt_cv_prog_compiler_c_o_CXX=3D'"yes"' lt_lt_cv_sys_global_symbol_pipe=3D'"sed -n -e '\''s/^.*[ = ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ = ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address=3D'"sed -n -e '\''s/^: = \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] = \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl=3D'"sed -n -e '\''s/^. .* = \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL=3D'${SHELL} /fontconfig-2.2.3/missing --run aclocal-1.7' AMDEPBACKSLASH=3D'\' AMDEP_FALSE=3D'#' AMDEP_TRUE=3D'' AMTAR=3D'${SHELL} /fontconfig-2.2.3/missing --run tar' AR=3D'ar' AS=3D'as' AUTOCONF=3D'${SHELL} /fontconfig-2.2.3/missing --run autoconf' AUTOHEADER=3D'${SHELL} /fontconfig-2.2.3/missing --run autoheader' AUTOMAKE=3D'${SHELL} /fontconfig-2.2.3/missing --run automake-1.7' AWK=3D'gawk' CC=3D'gcc' CCDEPMODE=3D'depmode=3Dgcc3' CFLAGS=3D'-g -O2' CONFDIR=3D'${sysconfdir}/fonts' CPP=3D'gcc -E' CPPFLAGS=3D'' CXX=3D'g++' CXXCPP=3D'g++ -E' CXXDEPMODE=3D'depmode=3Dgcc3' CXXFLAGS=3D'-g -O2' CYGPATH_W=3D'echo' DEFS=3D'-DHAVE_CONFIG_H' DEPDIR=3D'.deps' DLLTOOL=3D'dlltool' DOCDIR=3D'${datadir}/doc/fontconfig' ECHO=3D'echo' ECHO_C=3D'' ECHO_N=3D'-n' ECHO_T=3D'' EGREP=3D'grep -E' ENABLE_DOCS_FALSE=3D'' ENABLE_DOCS_TRUE=3D'#' EXEEXT=3D'' EXPAT_CFLAGS=3D'-I/usr/local/include' EXPAT_LIBS=3D'-L/usr/local/lib -lexpat' F77=3D'' FC_ADD_FONTS=3D'' FC_DEFAULT_FONTS=3D'/usr/share/fonts' FC_FONTDATE=3D'Sat Aug 26 17:23:30 EDT 2006' FC_FONTPATH=3D'' FFLAGS=3D'' FREETYPE_CFLAGS=3D'-I/usr/local/include/freetype2 -I/usr/local/include' FREETYPE_LIBS=3D'-L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib = -lfreetype -lz' HASDOCBOOK=3D'no' HAVE_EXPAT=3D'1' HAVE_XMLPARSE_H=3D'' INSTALL_DATA=3D'${INSTALL} -m 644' INSTALL_PROGRAM=3D'${INSTALL}' INSTALL_SCRIPT=3D'${INSTALL}' INSTALL_STRIP_PROGRAM=3D'${SHELL} $(install_sh) -c -s' LDFLAGS=3D'' LIBOBJS=3D'' LIBS=3D'' LIBTOOL=3D'$(SHELL) $(top_builddir)/libtool' LN_S=3D'ln -s' LTLIBOBJS=3D'' LT_CURRENT=3D'1' LT_CURRENT_MINUS_AGE=3D'1' LT_REVISION=3D'4' LT_VERSION_INFO=3D'1:4:0' MAINT=3D'#' MAINTAINER_MODE_FALSE=3D'' MAINTAINER_MODE_TRUE=3D'#' MAKEINFO=3D'${SHELL} /fontconfig-2.2.3/missing --run makeinfo' MS_LIB_AVAILABLE_FALSE=3D'' MS_LIB_AVAILABLE_TRUE=3D'#' OBJDUMP=3D'objdump' OBJEXT=3D'o' ORTH_FILES=3D'aa.orth ab.orth af.orth am.orth ar.orth ast.orth ava.orth = ay.orth az.orth ba.orth bam.orth be.orth bg.orth bh.orth bho.orth = bi.orth bin.orth bn.orth bo.orth br.orth bs.orth bua.orth ca.orth = ce.orth ch.orth chm.orth chr.orth co.orth cs.orth cu.orth cv.orth = cy.orth da.orth de.orth dz.orth el.orth en.orth eo.orth es.orth et.orth = eu.orth fa.orth fi.orth fj.orth fo.orth fr.orth ful.orth fur.orth = fy.orth ga.orth gd.orth gez.orth gl.orth gn.orth gu.orth gv.orth ha.orth = haw.orth he.orth hi.orth ho.orth hr.orth hu.orth hy.orth ia.orth = ibo.orth id.orth ie.orth ik.orth io.orth is.orth it.orth iu.orth ja.orth = ka.orth kaa.orth ki.orth kk.orth kl.orth km.orth kn.orth ko.orth = kok.orth ks.orth ku.orth kum.orth kv.orth kw.orth ky.orth la.orth = lb.orth lez.orth lo.orth lt.orth lv.orth mg.orth mh.orth mi.orth mk.orth = ml.orth mn.orth mo.orth mr.orth mt.orth my.orth nb.orth ne.orth nl.orth = nn.orth no.orth ny.orth oc.orth om.orth or.orth os.orth pl.orth pt.orth = rm.orth ro.orth ru.orth sa.orth sah.orth sco.orth se.orth sel.orth = sh.orth si.orth sk.orth sl.orth sm.orth sma.orth smj.orth smn.orth = sms.orth so.orth sq.orth sr.orth sv.orth sw.orth syr.orth ta.orth = te.orth tg.orth th.orth ti_er.orth ti_et.orth tig.orth tk.orth tl.orth = tn.orth to.orth tr.orth ts.orth tt.orth tw.orth tyv.orth ug.orth uk.orth = ur.orth uz.orth ven.orth vi.orth vo.orth vot.orth wa.orth wen.orth = wo.orth xh.orth yap.orth yi.orth yo.orth zh_cn.orth zh_hk.orth = zh_mo.orth zh_sg.orth zh_tw.orth zu.orth' OS_WIN32_FALSE=3D'' OS_WIN32_TRUE=3D'#' PACKAGE=3D'fontconfig' PACKAGE_BUGREPORT=3D'' PACKAGE_NAME=3D'' PACKAGE_STRING=3D'' PACKAGE_TARNAME=3D'' PACKAGE_VERSION=3D'' PATH_SEPARATOR=3D':' RANLIB=3D'ranlib' SET_MAKE=3D'' SHELL=3D'/bin/sh' STRIP=3D'strip' VERSION=3D'2.2.3' ac_ct_AR=3D'ar' ac_ct_AS=3D'' ac_ct_CC=3D'gcc' ac_ct_CXX=3D'g++' ac_ct_DLLTOOL=3D'' ac_ct_F77=3D'' ac_ct_OBJDUMP=3D'' ac_ct_RANLIB=3D'ranlib' ac_ct_STRIP=3D'strip' am__fastdepCC_FALSE=3D'#' am__fastdepCC_TRUE=3D'' am__fastdepCXX_FALSE=3D'#' am__fastdepCXX_TRUE=3D'' am__include=3D'include' am__leading_dot=3D'.' am__quote=3D'' bindir=3D'${exec_prefix}/bin' build=3D'i686-pc-linux-gnu' build_alias=3D'' build_cpu=3D'i686' build_os=3D'linux-gnu' build_vendor=3D'pc' confdir=3D'${sysconfdir}/fonts' datadir=3D'${prefix}/share' exec_prefix=3D'${prefix}' ft_config=3D'/usr/local/bin/freetype-config' host=3D'i686-pc-linux-gnu' host_alias=3D'' host_cpu=3D'i686' host_os=3D'linux-gnu' host_vendor=3D'pc' includedir=3D'${prefix}/include' infodir=3D'${prefix}/info' install_sh=3D'/fontconfig-2.2.3/install-sh' libdir=3D'${exec_prefix}/lib' libexecdir=3D'${exec_prefix}/libexec' localstatedir=3D'${prefix}/var' mandir=3D'${prefix}/man' ms_librarian=3D'' oldincludedir=3D'/usr/include' prefix=3D'/usr/local' program_transform_name=3D's,x,x,' sbindir=3D'${exec_prefix}/sbin' sharedstatedir=3D'${prefix}/com' sysconfdir=3D'${prefix}/etc' target_alias=3D'' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define CONFDIR "${sysconfdir}/fonts" #define FC_ADD_FONTS "yes" #define FC_DEFAULT_FONTS "/usr/share/fonts" #define HAVE_DIRENT_H 1 #define HAVE_DLFCN_H 1 #define HAVE_EXPAT 1 #define HAVE_FCNTL_H 1 #define HAVE_FT_BITMAP_SIZE_Y_PPEM 1 #define HAVE_FT_GET_BDF_PROPERTY 1 #define HAVE_FT_GET_FIRST_CHAR 1 #define HAVE_FT_GET_NEXT_CHAR 1 #define HAVE_GETEUID 1 #define HAVE_GETOPT 1 #define HAVE_GETOPT_LONG 1 #define HAVE_GETUID 1 #define HAVE_INTTYPES_H 1 #define HAVE_LINK 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMORY_H 1 #define HAVE_MEMSET 1 #define HAVE_MKSTEMP 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRCHR 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_STRING_H 1 #define HAVE_STRRCHR 1 #define HAVE_STRTOL 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UNISTD_H 1 #define HAVE_VPRINTF 1 #define HAVE_XML_PARSERCREATE 1 #define PACKAGE "fontconfig" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define STDC_HEADERS 1 #define STDC_HEADERS 1 #define VERSION "2.2.3" #endif #ifdef __cplusplus extern "C" void std::exit (int) throw (); using std::exit; configure: exit 0 ------=_NextPart_000_0007_01C6C935.DE3E1CA0-- From skip@montanaro.dyndns.org Mon Aug 28 15:57:42 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 653983B0100 for ; Mon, 28 Aug 2006 15:57:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25410-02 for ; Mon, 28 Aug 2006 15:57:41 -0400 (EDT) Received: from proof.pobox.com (proof.pobox.com [207.106.133.28]) by menubar.gnome.org (Postfix) with ESMTP id A83F43B00E7 for ; Mon, 28 Aug 2006 15:57:36 -0400 (EDT) Received: from proof (localhost [127.0.0.1]) by proof.pobox.com (Postfix) with ESMTP id 0EB5529A88; Mon, 28 Aug 2006 15:57:53 -0400 (EDT) Received: from montanaro.dyndns.org (c-24-12-188-128.hsd1.il.comcast.net [24.12.188.128]) by proof.sasl.smtp.pobox.com (Postfix) with ESMTP id D01D769FAB; Mon, 28 Aug 2006 15:57:50 -0400 (EDT) Received: by montanaro.dyndns.org (Postfix, from userid 501) id 1D01123E6C63; Mon, 28 Aug 2006 14:57:28 -0500 (CDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17651.19111.970427.226183@montanaro.dyndns.org> Date: Mon, 28 Aug 2006 14:57:27 -0500 To: pygtk@daa.com.au, gtk-list@gnome.org Subject: Problem dragging treeview column headings X-Mailer: VM 7.17 under 21.5 (beta25) "eggplant" (+CVS-20060318) XEmacs Lucid From: skip@pobox.com X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.052 tagged_above=-999 required=2 tests=[AWL=-1.013, BAYES_40=-0.185, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961, TW_GT=0.077, TW_YG=0.077] X-Spam-Score: 0.052 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:57:42 -0000 We use Gtk & PyGtk 2.6 at work. When dragging treeview column headings around I frequently lose control of the heading and it winds up "stuck" lower than the other headings. Something like this in bad ascii art: +------+------+ +------+ | col1 | col2 | | col4 | +------+------+------+------+ | col3 | +------+ I don't believe it's a PyGtk problem. One of my colleagues says he's seen it in C-based Gtk programs as well. I get these sorts of error messages in my shell window: GtkWarning: _gtk_tree_view_column_start_drag: assertion `tree_view->priv->column_drag_info == NULL' failed I have two questions. One, is this a known problem (it happens here so frequently I'd have to believe it is)? Two, has it been fixed in later versions of Gtk? I apologize for posting this kind of question to the pygtk and gtk mailing lists, since I should (in theory) be able to find the answer in Bugzilla. I tried briefly, but just like every other time I've challenged the beast to combat, my attempts to slay it failed, and I slinked home without reaching my quest, humiliated by a mere HTML form once again... Thx, -- Skip Montanaro - skip@pobox.com - http://www.mojam.com/ "On the academic side, effort is too often expended on finding precise answers to the wrong questions." Baxter & Rennie, in "Financial Calculus" From markusjais@yahoo.de Mon Aug 28 17:41:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 020D63B0090 for ; Mon, 28 Aug 2006 17:41:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31231-01 for ; Mon, 28 Aug 2006 17:41:52 -0400 (EDT) Received: from smtp005.mail.ukl.yahoo.com (smtp005.mail.ukl.yahoo.com [217.12.11.36]) by menubar.gnome.org (Postfix) with SMTP id 47D3E3B0011 for ; Mon, 28 Aug 2006 17:41:51 -0400 (EDT) Received: (qmail 83789 invoked from network); 28 Aug 2006 21:41:50 -0000 Received: from unknown (HELO ?217.184.106.91?) (markusjais@217.184.106.91 with plain) by smtp005.mail.ukl.yahoo.com with SMTP; 28 Aug 2006 21:41:41 -0000 Message-ID: <44F36309.5040708@yahoo.de> Date: Mon, 28 Aug 2006 23:41:29 +0200 From: Markus Jais User-Agent: Thunderbird 1.5.0.5 (X11/20060719) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Problem after installing Gtk+ 2.10 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.014 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BM=0.077, TW_GD=0.077, TW_GT=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -2.014 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:41:55 -0000 hello I just intalled the following packages on my Suse 9.2 system: (compiler gcc 4.1.1) atk-1.9.1 cairo-1.2.4 glib-2.12.0 gtk+-2.10.0 pango-1.14.0 but now several Gtk+ applications do not work anymore. for example I can no longer start Eclipse (which depends on Gtk+). with the old Gtk+ 2.6 everything is fine. the error from Eclipse with Gtk+ 2.10: java.lang.UnsatisfiedLinkError: /home/markus/software/devel/eclipse/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/libswt-pi-gtk-3232.so: /opt/gtk/lib/libgtk-x11-2.0.so.0: undefined symbol: XFixesChangeSaveSet I also can not compile gtkmm 2.8. this is my error: make all-recursive make[1]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' Making all in tools make[2]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' Making all in m4 make[3]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' Making all in extra_defs_gen make[3]: Entering directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' /bin/sh ../../libtool --tag=CXX --mode=link g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib -L/usr/X11R6/lib -lglibmm-2.4 -lsigc-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lfontconfig -lpng12 -lz -lm -lXrender -lX11 -lXext -lglibmm_generate_extra_defs-2.4 g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib -L/usr/X11R6/lib /opt/gtk//lib/libglibmm-2.4.so -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src/.libs -L/home/markus/software/tools/statistics/gcc-4.1.1/host-i686-pc-linux-gnu/gcc /opt/gtk//lib/libgtk-x11-2.0.so /opt/gtk//lib/libgdk-x11-2.0.so /opt/gtk//lib/libatk-1.0.so /opt/gtk//lib/libgdk_pixbuf-2.0.so /opt/gtk//lib/libpangocairo-1.0.so /opt/gtk//lib/libpangoft2-1.0.so /opt/gtk//lib/libpango-1.0.so /opt/gtk//lib/libcairo.so -lSM -lICE /usr/lib/libfontconfig.so /usr/lib/libfreetype.so /usr/lib/libexpat.so -lpng12 -lz -lm -lXrender -lX11 -lXext /opt/gtk//lib/libglibmm_generate_extra_defs-2.4.so /opt/gtk//lib/libsigc-2.0.so /opt/gtk//lib/libgobject-2.0.so /opt/gtk//lib/libgmodule-2.0.so -ldl /opt/gtk//lib/libglib-2.0.so /opt/gcc/lib/libstdc++.so -Wl,--rpath -Wl,/opt/gtk//lib -Wl,--rpath -Wl,/opt/gtk//lib /opt/gtk//lib/libgtk-x11-2.0.so: undefined reference to `XFixesChangeSaveSet' collect2: ld returned 1 exit status make[3]: *** [generate_extra_defs] Error 1 make[3]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' make: *** [all] Error 2 am I missing any libs ? any ideas what is wrong here ? Markus ___________________________________________________________ Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de From sergstesh@yahoo.com Mon Aug 28 18:04:58 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1973F3B0140 for ; Mon, 28 Aug 2006 18:04:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32514-04 for ; Mon, 28 Aug 2006 18:04:57 -0400 (EDT) Received: from web35207.mail.mud.yahoo.com (web35207.mail.mud.yahoo.com [66.163.179.86]) by menubar.gnome.org (Postfix) with SMTP id 0F4813B00D3 for ; Mon, 28 Aug 2006 18:04:56 -0400 (EDT) Received: (qmail 99134 invoked by uid 60001); 28 Aug 2006 22:04:55 -0000 Message-ID: <20060828220455.99132.qmail@web35207.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35207.mail.mud.yahoo.com via HTTP; Mon, 28 Aug 2006 15:04:55 PDT Date: Mon, 28 Aug 2006 15:04:55 -0700 (PDT) From: Sergei Steshenko Subject: Re: Problem after installing Gtk+ 2.10 To: Markus Jais , gtk-list@gnome.org In-Reply-To: <44F36309.5040708@yahoo.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.249 tagged_above=-999 required=2 tests=[AWL=-1.390, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_BM=0.077, TW_GD=0.077, TW_GT=0.077, TW_LG=0.077, TW_TK=0.077] X-Spam-Score: -0.249 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 22:04:58 -0000 --- Markus Jais wrote: > hello > > I just intalled the following packages on my Suse 9.2 system: > (compiler gcc 4.1.1) > > atk-1.9.1 > cairo-1.2.4 > glib-2.12.0 > gtk+-2.10.0 > pango-1.14.0 > > > but now several Gtk+ applications do not work anymore. for example I can no longer > start Eclipse (which depends on Gtk+). with the old Gtk+ 2.6 everything is fine. > the error from Eclipse with Gtk+ 2.10: > > > java.lang.UnsatisfiedLinkError: > /home/markus/software/devel/eclipse/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/libswt-pi-gtk-3232.so: > /opt/gtk/lib/libgtk-x11-2.0.so.0: undefined symbol: XFixesChangeSaveSet > > > I also can not compile gtkmm 2.8. this is my error: > > > > make all-recursive > make[1]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' > Making all in tools > make[2]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' > Making all in m4 > make[3]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' > make[3]: Nothing to be done for `all'. > make[3]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/m4' > Making all in extra_defs_gen > make[3]: Entering directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' > /bin/sh ../../libtool --tag=CXX --mode=link g++ -g -O2 -Wall -o > generate_extra_defs generate_defs_gtk.o -L/opt/gtk//lib > -L/usr/X11R6/lib -lglibmm-2.4 -lsigc-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 > -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo > -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lfontconfig > -lpng12 -lz -lm -lXrender -lX11 -lXext -lglibmm_generate_extra_defs-2.4 > g++ -g -O2 -Wall -o generate_extra_defs generate_defs_gtk.o > -L/opt/gtk//lib -L/usr/X11R6/lib /opt/gtk//lib/libglibmm-2.4.so > -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src > -L/home/markus/software/tools/statistics/gcc-4.1.1/i686-pc-linux-gnu/libstdc++-v3/src/.libs > -L/home/markus/software/tools/statistics/gcc-4.1.1/host-i686-pc-linux-gnu/gcc > /opt/gtk//lib/libgtk-x11-2.0.so /opt/gtk//lib/libgdk-x11-2.0.so > /opt/gtk//lib/libatk-1.0.so /opt/gtk//lib/libgdk_pixbuf-2.0.so > /opt/gtk//lib/libpangocairo-1.0.so /opt/gtk//lib/libpangoft2-1.0.so > /opt/gtk//lib/libpango-1.0.so /opt/gtk//lib/libcairo.so -lSM -lICE > /usr/lib/libfontconfig.so /usr/lib/libfreetype.so /usr/lib/libexpat.so > -lpng12 -lz -lm -lXrender -lX11 -lXext > /opt/gtk//lib/libglibmm_generate_extra_defs-2.4.so > /opt/gtk//lib/libsigc-2.0.so /opt/gtk//lib/libgobject-2.0.so > /opt/gtk//lib/libgmodule-2.0.so -ldl /opt/gtk//lib/libglib-2.0.so > /opt/gcc/lib/libstdc++.so -Wl,--rpath -Wl,/opt/gtk//lib -Wl,--rpath > -Wl,/opt/gtk//lib > /opt/gtk//lib/libgtk-x11-2.0.so: undefined reference to > `XFixesChangeSaveSet' > collect2: ld returned 1 exit status > make[3]: *** [generate_extra_defs] Error 1 > make[3]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools/extra_defs_gen' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0/tools' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > `/home/markus/software/devel/c++/gtkmm/gtkmm-2.8.0' > make: *** [all] Error 2 > > am I missing any libs ? > > > > any ideas what is wrong here ? > > > Markus > > > > > > > ___________________________________________________________ > Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > Have a look at http://bugzilla.gnome.org/show_bug.cgi?id=350163 - maybe you better roll back to gtk+2.8.20. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From torresmat@gmail.com Mon Aug 28 19:38:56 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F3CF3B008B for ; Mon, 28 Aug 2006 19:38:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04068-03 for ; Mon, 28 Aug 2006 19:38:55 -0400 (EDT) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by menubar.gnome.org (Postfix) with ESMTP id 58AA63B0011 for ; Mon, 28 Aug 2006 19:38:55 -0400 (EDT) Received: by wx-out-0506.google.com with SMTP id i30so2165432wxd for ; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Received: by 10.70.131.20 with SMTP id e20mr10241964wxd; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Received: from ?192.168.0.2? ( [201.255.79.148]) by mx.gmail.com with ESMTP id i14sm1972758wxd.2006.08.28.16.38.53; Mon, 28 Aug 2006 16:38:54 -0700 (PDT) Message-ID: <44F37E8A.1000500@gmail.com> Date: Mon, 28 Aug 2006 20:38:50 -0300 From: Matias Torres User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: gtk-list@gnome.org Subject: Executing gtk app in windows using gtk 2.8.20 and glib 2.8.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.131 tagged_above=-999 required=2 tests=[AWL=1.192, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -1.131 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 23:38:56 -0000 I'm trying to compile a helloworld dialog in linux for windows, so i do this: 1) i586-mingw32msvc-gcc -o helloworld.exe `pkg-config --cflags gtk+-2.0` helloworld.c `pkg-config --libs gtk+-2.0` (the libraries are the ones in the /2.8/win32 directory in the gnome ftp server) Compilation succesful without any errors or warnings. 2) After copying it to windows (and the libraries of gtk (2.8.20), glib (2.8.6) and its dependencies) i try to execute it and gives me an error that says something like (spanish to english translation on an error, kind of difficult, sorry): "Cannot find the entry point of the procedure g_intern_static_string in the dinamic library libglib-2.0-0.dll ". I don't think that this error is due to a missing dll because i've copied every dll that the manual (Cross Compiling GTK applications on windows ) says i should copy. What should i do now? Thanks in advance. Matias. From tml@iki.fi Tue Aug 29 02:55:37 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 20CF83B00D6 for ; Tue, 29 Aug 2006 02:55:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20787-01 for ; Tue, 29 Aug 2006 02:55:35 -0400 (EDT) Received: from gw02.mail.saunalahti.fi (gw02.mail.saunalahti.fi [195.197.172.116]) by menubar.gnome.org (Postfix) with ESMTP id 83EC23B0080 for ; Tue, 29 Aug 2006 02:55:35 -0400 (EDT) Received: from pettson.tml.iki.fi (MMLIV.tun.saunalahti.fi [213.169.30.254]) by gw02.mail.saunalahti.fi (Postfix) with ESMTP id 846BF1392C6; Tue, 29 Aug 2006 09:55:32 +0300 (EEST) From: Tor Lillqvist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17651.58623.531000.797282@gargle.gargle.HOWL> Date: Tue, 29 Aug 2006 09:55:59 +0300 To: Matias Torres Subject: Re: Executing gtk app in windows using gtk 2.8.20 and glib 2.8.6 In-Reply-To: <44F37E8A.1000500@gmail.com> References: <44F37E8A.1000500@gmail.com> X-Mailer: VM 7.17 under 21.4 (patch 13) "Rational FORTRAN" XEmacs Lucid X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.3 tagged_above=-999 required=2 tests=[AWL=0.087, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_GT=0.077] X-Spam-Score: -2.3 X-Spam-Level: Cc: gtk-list@gnome.org X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 06:55:37 -0000 Matias Torres writes: > "Cannot find the entry point of the procedure > g_intern_static_string in the dinamic library libglib-2.0-0.dll". The newest gtk DLL (2.8.20) on ftp.gtk.org is built against glib 2.12 and needs to be run against it, too. Yes, this is somewhat confusing. There is a gtk+-2.8.20.README there that explains this. Download glib 2.12 from ftp://ftp.gtk.org/pub/glib/2.12/win32/ --tml From o@sadglad.com Tue Aug 29 07:53:45 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3112A3B00A2 for ; Tue, 29 Aug 2006 07:53:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04065-07 for ; Tue, 29 Aug 2006 07:53:43 -0400 (EDT) Received: from mtaout2.barak.net.il (mtaout2.barak.net.il [212.150.49.172]) by menubar.gnome.org (Postfix) with ESMTP id 982953B00B3 for ; Tue, 29 Aug 2006 07:53:43 -0400 (EDT) Received: from oded ([212.143.99.21]) by mtaout2.barak.net.il (Sun Java System Messaging Server 6.2-6.02 (built Apr 25 2006)) with ESMTPA id <0J4R003GSD1IQI90@mtaout2.barak.net.il> for gtk-list@gnome.org; Tue, 29 Aug 2006 14:53:42 +0300 (IDT) Date: Tue, 29 Aug 2006 14:53:59 +0200 From: oded Subject: Re: problem with modify_fg To: gtk-list@gnome.org Message-id: <002101c6cb6a$3266d610$5c01a8c0@oded> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 X-Mailer: Microsoft Outlook Express 6.00.2900.2670 Content-type: text/plain; format=flowed; charset=iso-8859-1; reply-type=response Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <002d01c6caac$324869f0$5c01a8c0@oded> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.482 tagged_above=-999 required=2 tests=[AWL=0.551, BAYES_05=-1.11, TW_GT=0.077] X-Spam-Score: -0.482 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 11:53:45 -0000 Problem solved, The problem was that I thought the values for set_rgb are 8 bit, while they are 16 bit. so the value that I used ( 0,0,255 ) is very close to 0,0,0 which is black. Thanks, Oded. ----- Original Message ----- From: "chao yeaj" To: "oded" Sent: Tuesday, August 29, 2006 7:54 AM Subject: Re: problem with modify_fg > In GTK+ 2.0, > the following lines maybe work > > > //******************************************** > GdkColor color; > gdk_color_parse ("red", &color); > gtk_widget_modify_fg (widget, GTK_STATE_NORMAL, &color); > //*********************************************************** > > > On 8/28/06, oded wrote: >> Hello, >> >> I am using Gtkmm, and I am new to it and to Gtk. >> I'v got a Gtk::Label widget, and I'm trying to change it's forground >> color, >> but it remain black. >> Here is the code where I try to change the color of the widget, which has >> been inilized earlier in the program, and has already been displayed. >> >> Gdk::Color color; >> color.set_rgb(0,0,255); >> m_label->modify_fg(Gtk::STATE_NORMAL, color); >> m_label->modify_fg(Gtk::STATE_ACTIVE, color); >> m_label->modify_fg(Gtk::STATE_INSENSITIVE, color); >> m_label->modify_fg(Gtk::STATE_PRELIGHT, color); >> m_label->modify_fg(Gtk::STATE_SELECTED, color); >> >> Thanks, >> >> Oded. >> >> _______________________________________________ >> gtk-list mailing list >> gtk-list@gnome.org >> http://mail.gnome.org/mailman/listinfo/gtk-list >> > > From naliven@msn.com Tue Aug 29 08:56:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C0143B0156 for ; Tue, 29 Aug 2006 08:56:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07884-04 for ; Tue, 29 Aug 2006 08:56:38 -0400 (EDT) Received: from bay0-omc2-s29.bay0.hotmail.com (bay0-omc2-s29.bay0.hotmail.com [65.54.246.165]) by menubar.gnome.org (Postfix) with ESMTP id 145A33B014D for ; Tue, 29 Aug 2006 08:56:38 -0400 (EDT) Received: from hotmail.com ([65.54.173.2]) by bay0-omc2-s29.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Tue, 29 Aug 2006 05:55:37 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 29 Aug 2006 05:55:37 -0700 Message-ID: Received: from 212.156.230.210 by by5fd.bay5.hotmail.msn.com with HTTP; Tue, 29 Aug 2006 12:55:36 GMT X-Originating-IP: [212.156.230.210] X-Originating-Email: [naliven@msn.com] X-Sender: naliven@msn.com In-Reply-To: <1155219264.1716.16.camel@localhost.localdomain> From: =?iso-8859-9?B?RG/wYWNhbiBH/G5leQ==?= To: gtk-list@gnome.org Subject: Re: gtk drawing question Date: Tue, 29 Aug 2006 12:55:36 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-9; format=flowed X-OriginalArrivalTime: 29 Aug 2006 12:55:37.0180 (UTC) FILETIME=[6C5F61C0:01C6CB6A] X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.815 tagged_above=-999 required=2 tests=[AWL=0.571, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, MSGID_FROM_MTA_HEADER=0, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 1.815 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 12:56:40 -0000 >From: Paul Davis >Reply-To: paul@linuxaudiosystems.com >To: Doðacan Güney >CC: gtk-list@gnome.org >Subject: Re: gtk drawing question >Date: Thu, 10 Aug 2006 10:14:24 -0400 > >On Thu, 2006-08-10 at 13:46 +0000, DoÄ�acan Güney wrote: > > Hi, > > > > I am trying to write a program similar to the one at > > http://mirko.lilik.it/Ruby-GNOME2/moz-snapshooter.rb . As far as I > > understand it, net-stop only means that the loading of page is >completed, it > > doesn't necessarily mean that drawing the widget is complete. My >question > > is, is there a way to understand if drawing of a widget (gtkmozembed in >this > > case) is complete? > >your question is ill-formed. do you mean "when every pixel that >represents a widget has been displayed on a screen?" or "when the code >responsible for requesting pixel changes has been called?" or something >else? > > OK, I guess my previous explanation wasn't any good. The first one ( "when every pixel that represents a widget has been displayed on a screen") is pretty much what I want. Specifically, what I want is a gtk widget(which, in my case, is gtkmozembed) that has a 'draw' call that does not return until that particular widget has completed its drawing operations. Or that does return but sends me a drawing_complete(or whatever) signal when it has finished drawing. _________________________________________________________________ Sevdiklerinizle Messenger'da görüsün ve sesli sohbet edin! http://messenger.live.com From billcu1@verizon.net Tue Aug 29 16:11:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C67BE3B0074 for ; Tue, 29 Aug 2006 16:11:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-02 for ; Tue, 29 Aug 2006 16:11:26 -0400 (EDT) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by menubar.gnome.org (Postfix) with ESMTP id 1AE683B0018 for ; Tue, 29 Aug 2006 16:11:26 -0400 (EDT) Received: from win98 ([71.251.240.245]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S004BP00ZENUA@vms040.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 15:10:12 -0500 (CDT) Date: Tue, 29 Aug 2006 16:08:26 -0400 From: "Bill Cunningham" Subject: gdk-pixbuf To: Message-id: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.952 tagged_above=-999 required=2 tests=[AWL=-0.033, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GD=0.077] X-Spam-Score: 1.952 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:11:29 -0000 I have now installed gd, and I'm try install gdk-pixbuf and it just looks like a bunch of html pages. How do you install that? I have expat and libxml2. I just want what I need to install gtk. Is all these dependencies I'm running into necessary or do I need to turn off some dependencies checking? Bill From yeti@physics.muni.cz Tue Aug 29 16:31:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D92E23B0013 for ; Tue, 29 Aug 2006 16:31:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00775-05 for ; Tue, 29 Aug 2006 16:31:26 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id C781B3B000F for ; Tue, 29 Aug 2006 16:31:25 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7TKVOfp032229 for ; Tue, 29 Aug 2006 22:31:25 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 16B4A23D5F; Tue, 29 Aug 2006 22:31:24 +0200 (CEST) Date: Tue, 29 Aug 2006 22:31:28 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: gdk-pixbuf Message-ID: <20060829203128.GG5721@potato.chello.upc.cz> References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:31:28 -0000 On Tue, Aug 29, 2006 at 04:08:26PM -0400, Bill Cunningham wrote: > I have now installed gd, and I'm try install gdk-pixbuf and it just > looks like a bunch of html pages. How do you install that? I have expat and > libxml2. I just want what I need to install gtk. Is all these dependencies > I'm running into necessary or do I need to turn off some dependencies > checking? gdk-pixbuf is a library that resides in `gdk-pixbuf' subdirectory of Gtk+ 2.x source code, it is normally installed as a part of Gtk+ 2.x (unless you talk about the old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose you would mention that). It does not use gd, nor expat, nor libxml2, and it is not a bunch of HTML pages -- its documentation can be though. Note I don't understand your question at all, I'm just trying to clarify what gdk-pixbuf usually means as your gdk-pixbuf seems to be something different. Yeti -- Anonyms eat their boogers. From billcu1@verizon.net Tue Aug 29 16:45:53 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EC1423B0007 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01512-06 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from vms046pub.verizon.net (vms046pub.verizon.net [206.46.252.46]) by menubar.gnome.org (Postfix) with ESMTP id 06AFD3B0002 for ; Tue, 29 Aug 2006 16:45:52 -0400 (EDT) Received: from win98 ([71.251.240.245]) by vms046.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S003QG1KAJKQ9@vms046.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 15:43:23 -0500 (CDT) Date: Tue, 29 Aug 2006 16:41:37 -0400 From: "Bill Cunningham" Subject: Pango [was: Re: gdk-pixbuf] To: =?iso-8859-1?Q?David_Ne=E8as_=28Yeti=29?= , Message-id: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8BIT X-Priority: 3 X-MSMail-priority: Normal References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> <20060829203128.GG5721@potato.chello.upc.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.697 tagged_above=-999 required=2 tests=[AWL=1.235, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: 0.697 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:45:53 -0000 ----- Original Message ----- From: "David Neèas (Yeti)" To: Sent: Tuesday, August 29, 2006 4:31 PM Subject: Re: gdk-pixbuf > gdk-pixbuf is a library that resides in `gdk-pixbuf' > subdirectory of Gtk+ 2.x source code, it is normally > installed as a part of Gtk+ 2.x (unless you talk about the > old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose > you would mention that). It does not use gd, nor expat, nor > libxml2, and it is not a bunch of HTML pages -- its > documentation can be though. > > Note I don't understand your question at all, I'm just > trying to clarify what gdk-pixbuf usually means as your > gdk-pixbuf seems to be something different. > > Yeti I'm reading errors from config.log and getting libraries. Now the biggest error I get is from pango. It can't find panglox.lo. I have cairo and atk installed and X. If I can figure pango out this gdk-pixbuf may be irrelevant. Bill From yeti@physics.muni.cz Tue Aug 29 17:30:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 392933B0018 for ; Tue, 29 Aug 2006 17:30:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04167-05 for ; Tue, 29 Aug 2006 17:30:25 -0400 (EDT) Received: from tirith.ics.muni.cz (tirith.ics.muni.cz [147.251.4.36]) by menubar.gnome.org (Postfix) with ESMTP id AF09B3B0007 for ; Tue, 29 Aug 2006 17:30:24 -0400 (EDT) Received: from monoceros.physics.muni.cz (postfix@monoceros.physics.muni.cz [147.251.27.2]) by tirith.ics.muni.cz (8.13.5.20060308/8.13.4/Debian-3) with ESMTP id k7TLUNVI012191 for ; Tue, 29 Aug 2006 23:30:24 +0200 Received: by monoceros.physics.muni.cz (Postfix, from userid 16809) id 0B9CC23D5F; Tue, 29 Aug 2006 23:30:23 +0200 (CEST) Date: Tue, 29 Aug 2006 23:30:27 +0200 From: David =?iso-8859-2?B?TmXoYXMgKFlldGkp?= To: gtk-list@gnome.org Subject: Re: Pango [was: Re: gdk-pixbuf] Message-ID: <20060829213027.GH5721@potato.chello.upc.cz> References: <004601c6cba6$e59e3c00$2f01a8c0@myhome.westell.com> <20060829203128.GG5721@potato.chello.upc.cz> <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> User-Agent: Mutt/1.4.2.1i Organization: Trific soft., http://trific.ath.cx/ X-Muni-Spam-TestIP: 147.251.27.2 X-Muni-Envelope-From: yeti@physics.muni.cz X-Muni-Virus-Test: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_GD=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:30:26 -0000 On Tue, Aug 29, 2006 at 04:41:37PM -0400, Bill Cunningham wrote: > > I'm reading errors from config.log and getting libraries. Now the > biggest error I get is from pango. It can't find panglox.lo. I have cairo > and atk installed and X. If I can figure pango out this gdk-pixbuf may be > irrelevant. Well, this does not make much sense to me either so I'm giving up, sorry. Yeti -- Anonyms eat their boogers. From sergstesh@yahoo.com Tue Aug 29 18:27:19 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 49AA63B006A for ; Tue, 29 Aug 2006 18:27:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07151-04 for ; Tue, 29 Aug 2006 18:27:18 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 3511E3B0013 for ; Tue, 29 Aug 2006 18:27:18 -0400 (EDT) Received: (qmail 2747 invoked by uid 60001); 29 Aug 2006 22:27:17 -0000 Message-ID: <20060829222717.2745.qmail@web35208.mail.mud.yahoo.com> Received: from [87.68.158.123] by web35208.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 15:27:17 PDT Date: Tue, 29 Aug 2006 15:27:17 -0700 (PDT) From: Sergei Steshenko Subject: Re: Pango [was: Re: gdk-pixbuf] To: Bill Cunningham , David "Neèas" , gtk-list@gnome.org In-Reply-To: <000a01c6cbab$8878c4a0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Amavis-Alert: BAD HEADER Non-encoded 8-bit data (char E8 hex) in message header 'To': To: ...u1@verizon.net>, \n\tDavid "Ne\350as" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 22:27:19 -0000 --- Bill Cunningham wrote: > > ----- Original Message ----- > From: "David Neèas (Yeti)" > To: > Sent: Tuesday, August 29, 2006 4:31 PM > Subject: Re: gdk-pixbuf > > gdk-pixbuf is a library that resides in `gdk-pixbuf' > > subdirectory of Gtk+ 2.x source code, it is normally > > installed as a part of Gtk+ 2.x (unless you talk about the > > old standalone gdk-pixbuf used with Gtk+ 1.x, but I suppose > > you would mention that). It does not use gd, nor expat, nor > > libxml2, and it is not a bunch of HTML pages -- its > > documentation can be though. > > > > Note I don't understand your question at all, I'm just > > trying to clarify what gdk-pixbuf usually means as your > > gdk-pixbuf seems to be something different. > > > > Yeti > > " and getting libraries. Now the > biggest error I get is from pango. It can't find panglox.lo. I have cairo > and atk installed and X. If I can figure pango out this gdk-pixbuf may be > irrelevant. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > "I'm reading errors from config.log" - so what ? Do you understand how 'configure' works ? You should, first of all, read errors (if any) from configure.log, i.e. from screen output of 'configure'. I have already shown you how to run 'configure' in order to redirect its screen output to a file. You are using too much bandwith here (IMHO) by not providing real error messages - saying "I'm reading errors from config.log" is saying nothing. --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Tue Aug 29 21:22:43 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA8793B0007 for ; Tue, 29 Aug 2006 21:22:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14388-02 for ; Tue, 29 Aug 2006 21:22:43 -0400 (EDT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by menubar.gnome.org (Postfix) with ESMTP id 9CD723B0005 for ; Tue, 29 Aug 2006 21:22:42 -0400 (EDT) Received: from win98 ([151.205.88.26]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S004LUEHOOQA6@vms044.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 20:22:37 -0500 (CDT) Date: Tue, 29 Aug 2006 21:20:52 -0400 From: "Bill Cunningham" Subject: pango To: Message-id: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: multipart/mixed; boundary="----=_NextPart_000_000A_01C6CBB1.01B002C0" X-Priority: 3 X-MSMail-priority: Normal X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.529 tagged_above=-999 required=2 tests=[AWL=-0.379, BAYES_50=0.001, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.529 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 01:22:43 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_000A_01C6CBB1.01B002C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sergei , I don't know why I'm having such trouble. Is there a homepage for Atk? I can't find it anywhere to get the latest version but it's installed now. Well here's a log. Bill ------=_NextPart_000_000A_01C6CBB1.01B002C0 Content-Type: application/octet-stream; name="Make.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Make.log" make all-recursive=0A= make[1]: Entering directory `/pango-1.14.0'=0A= Making all in pango=0A= make[2]: Entering directory `/pango-1.14.0/pango'=0A= ( cd . && glib-mkenums \=0A= --fhead "#ifndef __PANGO_ENUM_TYPES_H__\n#define = __PANGO_ENUM_TYPES_H__\n\n#include \n\nG_BEGIN_DECLS\n" \=0A= --fprod "/* enumerations from \"@filename@\" */\n" \=0A= --vhead "GType @enum_name@_get_type (void);\n#define = PANGO_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \=0A= --ftail "G_END_DECLS\n\n#endif /* __PANGO_ENUM_TYPES_H__ */" \=0A= pango.h pango-attributes.h pango-break.h pango-context.h = pango-coverage.h pango-engine.h pango-font.h pango-fontmap.h = pango-fontset.h pango-glyph.h pango-glyph-item.h pango-item.h = pango-layout.h pango-modules.h pango-renderer.h pango-script.h = pango-tabs.h pango-types.h pango-utils.h pangofc-font.h = pangofc-fontmap.h ) > tmp-pango-enum-types.h \=0A= && (cmp -s tmp-pango-enum-types.h pango-enum-types.h || cp = tmp-pango-enum-types.h pango-enum-types.h ) \=0A= && rm -f tmp-pango-enum-types.h \=0A= && echo timestamp > s-enum-types-h=0A= ( cd . && glib-mkenums \=0A= --fhead "#include " \=0A= --fprod "\n/* enumerations from \"@filename@\" */" \=0A= --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = =3D 0;\n if (etype =3D=3D 0) {\n static const G@Type@Value values[] = =3D {" \=0A= --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \=0A= --vtail " { 0, NULL, NULL }\n };\n etype =3D = g_@type@_register_static (g_intern_static_string (\"@EnumName@\"), = values);\n }\n return etype;\n}\n" \=0A= pango.h pango-attributes.h pango-break.h pango-context.h = pango-coverage.h pango-engine.h pango-font.h pango-fontmap.h = pango-fontset.h pango-glyph.h pango-glyph-item.h pango-item.h = pango-layout.h pango-modules.h pango-renderer.h pango-script.h = pango-tabs.h pango-types.h pango-utils.h pangofc-font.h = pangofc-fontmap.h ) > tmp-pango-enum-types.c \=0A= && (cmp -s tmp-pango-enum-types.c pango-enum-types.c || cp = tmp-pango-enum-types.c pango-enum-types.c ) \=0A= && rm -f tmp-pango-enum-types.c \=0A= && echo timestamp > s-enum-types-c=0A= make all-recursive=0A= make[3]: Entering directory `/pango-1.14.0/pango'=0A= Making all in opentype=0A= make[4]: Entering directory `/pango-1.14.0/pango/opentype'=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT ftglue.lo -MD -MP -MF = ".deps/ftglue.Tpo" -c -o ftglue.lo ftglue.c; \=0A= then mv -f ".deps/ftglue.Tpo" ".deps/ftglue.Plo"; else rm -f = ".deps/ftglue.Tpo"; exit 1; fi=0A= mkdir .libs=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = ftglue.lo -MD -MP -MF .deps/ftglue.Tpo -c ftglue.c -fPIC -DPIC -o = .libs/ftglue.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-buffer.lo -MD -MP -MF = ".deps/harfbuzz-buffer.Tpo" -c -o harfbuzz-buffer.lo harfbuzz-buffer.c; \=0A= then mv -f ".deps/harfbuzz-buffer.Tpo" ".deps/harfbuzz-buffer.Plo"; = else rm -f ".deps/harfbuzz-buffer.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-buffer.lo -MD -MP -MF .deps/harfbuzz-buffer.Tpo -c = harfbuzz-buffer.c -fPIC -DPIC -o .libs/harfbuzz-buffer.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-dump.lo -MD -MP -MF = ".deps/harfbuzz-dump.Tpo" -c -o harfbuzz-dump.lo harfbuzz-dump.c; \=0A= then mv -f ".deps/harfbuzz-dump.Tpo" ".deps/harfbuzz-dump.Plo"; else rm = -f ".deps/harfbuzz-dump.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-dump.lo -MD -MP -MF .deps/harfbuzz-dump.Tpo -c harfbuzz-dump.c = -fPIC -DPIC -o .libs/harfbuzz-dump.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gdef.lo -MD -MP -MF = ".deps/harfbuzz-gdef.Tpo" -c -o harfbuzz-gdef.lo harfbuzz-gdef.c; \=0A= then mv -f ".deps/harfbuzz-gdef.Tpo" ".deps/harfbuzz-gdef.Plo"; else rm = -f ".deps/harfbuzz-gdef.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gdef.lo -MD -MP -MF .deps/harfbuzz-gdef.Tpo -c harfbuzz-gdef.c = -fPIC -DPIC -o .libs/harfbuzz-gdef.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gpos.lo -MD -MP -MF = ".deps/harfbuzz-gpos.Tpo" -c -o harfbuzz-gpos.lo harfbuzz-gpos.c; \=0A= then mv -f ".deps/harfbuzz-gpos.Tpo" ".deps/harfbuzz-gpos.Plo"; else rm = -f ".deps/harfbuzz-gpos.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gpos.lo -MD -MP -MF .deps/harfbuzz-gpos.Tpo -c harfbuzz-gpos.c = -fPIC -DPIC -o .libs/harfbuzz-gpos.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-gsub.lo -MD -MP -MF = ".deps/harfbuzz-gsub.Tpo" -c -o harfbuzz-gsub.lo harfbuzz-gsub.c; \=0A= then mv -f ".deps/harfbuzz-gsub.Tpo" ".deps/harfbuzz-gsub.Plo"; else rm = -f ".deps/harfbuzz-gsub.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-gsub.lo -MD -MP -MF .deps/harfbuzz-gsub.Tpo -c harfbuzz-gsub.c = -fPIC -DPIC -o .libs/harfbuzz-gsub.o=0A= if /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H = -I. -I. -I../.. -I/usr/local/include -I/usr/local/include/freetype2 = -I/usr/local/include -g -O2 -Wall -MT harfbuzz-open.lo -MD -MP -MF = ".deps/harfbuzz-open.Tpo" -c -o harfbuzz-open.lo harfbuzz-open.c; \=0A= then mv -f ".deps/harfbuzz-open.Tpo" ".deps/harfbuzz-open.Plo"; else rm = -f ".deps/harfbuzz-open.Tpo"; exit 1; fi=0A= gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include = -I/usr/local/include/freetype2 -I/usr/local/include -g -O2 -Wall -MT = harfbuzz-open.lo -MD -MP -MF .deps/harfbuzz-open.Tpo -c harfbuzz-open.c = -fPIC -DPIC -o .libs/harfbuzz-open.o=0A= /bin/sh ../../libtool --tag=3DCC --mode=3Dlink gcc -g -O2 -Wall -o = libharfbuzz-1.la ftglue.lo harfbuzz-buffer.lo harfbuzz-dump.lo = harfbuzz-gdef.lo harfbuzz-gpos.lo harfbuzz-gsub.lo harfbuzz-open.lo = -L/usr/local/lib -lfontconfig -L/usr/local/lib -Wl,--rpath = -Wl,/usr/local/lib -lfreetype -lz =0A= libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object=0A= make[4]: *** [libharfbuzz-1.la] Error 1=0A= make[4]: Leaving directory `/pango-1.14.0/pango/opentype'=0A= make[3]: *** [all-recursive] Error 1=0A= make[3]: Leaving directory `/pango-1.14.0/pango'=0A= make[2]: *** [all] Error 2=0A= make[2]: Leaving directory `/pango-1.14.0/pango'=0A= make[1]: *** [all-recursive] Error 1=0A= make[1]: Leaving directory `/pango-1.14.0'=0A= make: *** [all] Error 2=0A= ------=_NextPart_000_000A_01C6CBB1.01B002C0-- From sergstesh@yahoo.com Tue Aug 29 22:20:26 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8DD383B0013 for ; Tue, 29 Aug 2006 22:20:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16619-04 for ; Tue, 29 Aug 2006 22:20:25 -0400 (EDT) Received: from web35208.mail.mud.yahoo.com (web35208.mail.mud.yahoo.com [66.163.179.87]) by menubar.gnome.org (Postfix) with SMTP id 7B9683B0007 for ; Tue, 29 Aug 2006 22:20:25 -0400 (EDT) Received: (qmail 93407 invoked by uid 60001); 30 Aug 2006 02:20:25 -0000 Message-ID: <20060830022025.93405.qmail@web35208.mail.mud.yahoo.com> Received: from [84.94.132.72] by web35208.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 19:20:25 PDT Date: Tue, 29 Aug 2006 19:20:25 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:20:26 -0000 --- Bill Cunningham wrote: > Sergei , > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > can't find it anywhere to get the latest version but it's installed now. > Well here's a log. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > You are having such trouble because you've decided to go the most difficult way - the manual one. The error messages are: libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object make[4]: *** [libharfbuzz-1.la] Error 1 make[4]: Leaving directory `/pango-1.14.0/pango/opentype' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/pango-1.14.0/pango' make[2]: *** [all] Error 2 make[2]: Leaving directory `/pango-1.14.0/pango' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/pango-1.14.0' make: *** [all] Error 2 - I do not know what happened. How did 'configure' run ? Were there any errors in configure.log ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From sergstesh@yahoo.com Tue Aug 29 22:32:40 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9F3DF3B007B for ; Tue, 29 Aug 2006 22:32:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17152-02 for ; Tue, 29 Aug 2006 22:32:40 -0400 (EDT) Received: from web35209.mail.mud.yahoo.com (web35209.mail.mud.yahoo.com [66.163.179.88]) by menubar.gnome.org (Postfix) with SMTP id 9999F3B007A for ; Tue, 29 Aug 2006 22:32:39 -0400 (EDT) Received: (qmail 98919 invoked by uid 60001); 30 Aug 2006 02:32:35 -0000 Message-ID: <20060830023235.98917.qmail@web35209.mail.mud.yahoo.com> Received: from [84.94.132.72] by web35209.mail.mud.yahoo.com via HTTP; Tue, 29 Aug 2006 19:32:35 PDT Date: Tue, 29 Aug 2006 19:32:35 -0700 (PDT) From: Sergei Steshenko Subject: Re: pango To: Bill Cunningham , gtk-list@gnome.org In-Reply-To: <000d01c6cbd2$89bd67e0$2f01a8c0@myhome.westell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.833 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, DNS_FROM_RFC_WHOIS=1.447, TW_GT=0.077] X-Spam-Score: 0.833 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:32:40 -0000 --- Bill Cunningham wrote: > Sergei , > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > can't find it anywhere to get the latest version but it's installed now. > Well here's a log. > > Bill > > _______________________________________________ > gtk-list mailing list > gtk-list@gnome.org > http://mail.gnome.org/mailman/listinfo/gtk-list > The beginning of your 'make' log file looks like this: make all-recursive make[1]: Entering directory `/pango-1.14.0' . It's a strange place to build. Where did you install libraries on which 'pango' depends ? Was 'configure' for 'pango' told where the libraries on which pango depends were if they were in non-standard places ? --Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From billcu1@verizon.net Tue Aug 29 22:54:17 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 344693B00BF for ; Tue, 29 Aug 2006 22:54:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17901-07 for ; Tue, 29 Aug 2006 22:54:16 -0400 (EDT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by menubar.gnome.org (Postfix) with ESMTP id 908BD3B007A for ; Tue, 29 Aug 2006 22:54:15 -0400 (EDT) Received: from win98 ([141.153.24.173]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S008U3IQAAU88@vms042.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 21:54:11 -0500 (CDT) Date: Tue, 29 Aug 2006 22:52:27 -0400 From: "Bill Cunningham" Subject: Re: pango To: "Sergei Steshenko" , Message-id: <000c01c6cbdf$54b2fe40$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060830022025.93405.qmail@web35208.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.232 tagged_above=-999 required=2 tests=[AWL=0.847, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: 0.232 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:54:17 -0000 ----- Original Message ----- From: "Sergei Steshenko" To: "Bill Cunningham" ; Sent: Tuesday, August 29, 2006 10:20 PM Subject: Re: pango > > > --- Bill Cunningham wrote: > > > Sergei , > > > > I don't know why I'm having such trouble. Is there a homepage for Atk? I > > can't find it anywhere to get the latest version but it's installed now. > > Well here's a log. > > > > Bill > > > _______________________________________________ > > gtk-list mailing list > > gtk-list@gnome.org > > http://mail.gnome.org/mailman/listinfo/gtk-list > > > > > You are having such trouble because you've decided to go the most > difficult way - the manual one. > > The error messages are: > > libtool: link: `harfbuzz-gpos.lo' is not a valid libtool object > make[4]: *** [libharfbuzz-1.la] Error 1 > make[4]: Leaving directory `/pango-1.14.0/pango/opentype' > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory `/pango-1.14.0/pango' > make[2]: *** [all] Error 2 > make[2]: Leaving directory `/pango-1.14.0/pango' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/pango-1.14.0' > make: *** [all] Error 2 > > - I do not know what happened. > > How did 'configure' run ? Were there any errors in configure.log ? > > --Sergei. No problems from configure. Not so much as a burp. exit 0 From billcu1@verizon.net Tue Aug 29 22:56:21 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3A6DE3B0007 for ; Tue, 29 Aug 2006 22:56:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17944-07 for ; Tue, 29 Aug 2006 22:56:20 -0400 (EDT) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by menubar.gnome.org (Postfix) with ESMTP id 6A3313B00BF for ; Tue, 29 Aug 2006 22:56:20 -0400 (EDT) Received: from win98 ([141.153.24.173]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4S0046JITTJFQK@vms048.mailsrvcs.net> for gtk-list@gnome.org; Tue, 29 Aug 2006 21:56:18 -0500 (CDT) Date: Tue, 29 Aug 2006 22:54:34 -0400 From: "Bill Cunningham" Subject: Re: pango To: "Sergei Steshenko" , Message-id: <001201c6cbdf$a0642120$2f01a8c0@myhome.westell.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Mailer: Microsoft Outlook Express 6.00.2800.1409 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit X-Priority: 3 X-MSMail-priority: Normal References: <20060830023235.98917.qmail@web35209.mail.mud.yahoo.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.002 tagged_above=-999 required=2 tests=[AWL=-0.165, BAYES_20=-0.74, DNS_FROM_RFC_ABUSE=0.2, DNS_FROM_RFC_POST=1.708, SPF_PASS=-0.001] X-Spam-Score: 1.002 X-Spam-Level: * X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:56:21 -0000 > > The beginning of your 'make' log file looks like this: > > make all-recursive > make[1]: Entering directory `/pango-1.14.0' > . > > It's a strange place to build. > > Where did you install libraries on which 'pango' depends ? standard prefix. /usr/local > Was 'configure' for 'pango' told where the libraries on which pango > depends were if they were in non-standard places ? > > --Sergei. Only x--includes and x--libraries. There seems to be no detection there. pkg-config and freetype-config reports the rest of the info. Unless I missing telling configure about something else. Bill From anupama.chandwani@gmail.com Wed Aug 30 02:45:35 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F8753B00B1 for ; Wed, 30 Aug 2006 02:45:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28058-09 for ; Wed, 30 Aug 2006 02:45:34 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by menubar.gnome.org (Postfix) with ESMTP id 5ADC13B006B for ; Wed, 30 Aug 2006 02:45:34 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 13so44761nzn for ; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Received: by 10.65.103.17 with SMTP id f17mr251102qbm; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Received: by 10.65.54.18 with HTTP; Tue, 29 Aug 2006 23:45:33 -0700 (PDT) Message-ID: <689eb3470608292345m38d9dd18td4b9b24c40d55ffd@mail.gmail.com> Date: Wed, 30 Aug 2006 12:15:33 +0530 From: "Anupama Chandwani" To: gtk-list@gnome.org Subject: Pango-WARNING MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.617 tagged_above=-999 required=2 tests=[AWL=-0.706, BAYES_05=-1.11, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -1.617 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 06:45:35 -0000 Hello, I created a new input module & assigned it to be default by making the global_context_id="my_module" static. On keypress it does show the mapping from the table i created for the first key, however it doesnt get the preedit string. Showing me the following critical error on every key press. (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Gtk-CRITICAL **: gtk_im_context_get_preedit_string: assertion `str == NULL || g_utf8_validate (*str, -1, NULL)' failed (im_context:14528): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() On debugging i also get a message saying GLib: Cannot convert message: Invalid byte sequence in conversion input I suspect the string is not in the standard utf8 format, but how do i change the string?? The mapping consists of english alphabets mapped on numbers. Like 1=a, 2=d.. -- Anupama Chandwani Celunite Soft Technologies 3rd Floor, Business Avenue Koregaon Park Pune, MS 411001 INDIA From awuest@gmail.com Wed Aug 30 08:11:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EC7F53B0005 for ; Wed, 30 Aug 2006 08:11:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13063-01 for ; Wed, 30 Aug 2006 08:11:24 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by menubar.gnome.org (Postfix) with ESMTP id B89F63B000B for ; Wed, 30 Aug 2006 08:11:23 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so287805ugf for ; Wed, 30 Aug 2006 05:11:23 -0700 (PDT) Received: by 10.67.29.12 with SMTP id g12mr415557ugj; Wed, 30 Aug 2006 05:11:22 -0700 (PDT) Received: by 10.67.117.9 with HTTP; Wed, 30 Aug 2006 05:11:22 -0700 (PDT) Message-ID: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> Date: Wed, 30 Aug 2006 14:11:22 +0200 From: "Andreas Wuest" To: gtk-list@gnome.org Subject: Building gtk+ 2.10.2 without cups or complete printing support MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.422 tagged_above=-999 required=2 tests=[AWL=-0.022, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.422 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 12:11:27 -0000 Hi Since gtk+ 2.10 seems to require a decent revision of cups, I'd like to build it without cups support, if this is possible. If not, I could also do without printing support at all. I'm not sure though about the correct configure option. It would be nice if somebody could tell me what I should do to disable either only cups or printing. -- Kind regards, and thank you, Andi From mclasen@redhat.com Wed Aug 30 09:14:30 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB10C3B0152; Wed, 30 Aug 2006 09:14:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17033-03; Wed, 30 Aug 2006 09:14:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id F3DB93B00F8; Wed, 30 Aug 2006 09:14:28 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7UDESaa026685; Wed, 30 Aug 2006 09:14:28 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k7UDESDp006110; Wed, 30 Aug 2006 09:14:28 -0400 Received: from [10.13.248.18] (vpn-248-18.boston.redhat.com [10.13.248.18]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k7UDESg4027599; Wed, 30 Aug 2006 09:14:28 -0400 Subject: GLib 2.12.3 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 30 Aug 2006 09:15:52 -0400 Message-Id: <1156943752.6487.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.92 (2.7.92-4.fc6) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.542 tagged_above=-999 required=2 tests=[AWL=0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.542 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 13:14:31 -0000 GLib 2.12.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.3.tar.bz2 md5sum: cbf663f8bc733e2f6c90599942f6616a glib-2.12.3.tar.gz md5sum: bffadd97168590d175b157957006e8ce GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.12.2 to GLib 2.12.3 =================================================== * Use Posix monotonic clocks instead of gettimeofday() for GTimer when available. * Make the construction of singleton objects work witout warnings. * Bugs fixed 351583 API documentation issues with 2.15 release 336114 desktop locks immediately after changing the system clock 351853 GKeyFile creates non-UTF-8 error messages * Translation updates (fr,hu,ja,ku,lt,lv,ml,or, pt,ru,sv,vi,zh_CN) Thanks to the contributors Brian Cameron, Tim Janik, Tor Lillqvist, Simon Budig, William Jon McCann Matthias Clasen August 30, 2006 From bounces@nabble.com Wed Aug 30 04:34:28 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CB7F63B00EB for ; Wed, 30 Aug 2006 04:34:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01550-03 for ; Wed, 30 Aug 2006 04:34:28 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id C5D3E3B008B for ; Wed, 30 Aug 2006 04:34:27 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GILWl-0007IV-Ia for gtk-list@gnome.org; Wed, 30 Aug 2006 01:34:27 -0700 Message-ID: <6054682.post@talk.nabble.com> Date: Wed, 30 Aug 2006 01:34:27 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: regarding treeview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.215 tagged_above=-999 required=2 tests=[AWL=0.224, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.215 X-Spam-Level: X-Mailman-Approved-At: Wed, 30 Aug 2006 09:46:47 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:34:29 -0000 how we can append text view. example in my treeview i have text sree. now i wnat to append "view" so i should get sree view thanks in advance. sree. -- View this message in context: http://www.nabble.com/regarding-treeview-tf2188457.html#a6054682 Sent from the Gtk+ - General forum at Nabble.com. From hvreddy1110@gmail.com Wed Aug 30 14:30:23 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5F5883B000D for ; Wed, 30 Aug 2006 14:30:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01418-07 for ; Wed, 30 Aug 2006 14:30:19 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by menubar.gnome.org (Postfix) with ESMTP id 05E7F3B00B9 for ; Wed, 30 Aug 2006 14:30:18 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so677785pye for ; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Received: by 10.35.21.9 with SMTP id y9mr1535670pyi; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Wed, 30 Aug 2006 11:30:17 -0700 (PDT) Message-ID: <1dd596080608301130v101d96d7oa222d22bd5cdb803@mail.gmail.com> Date: Thu, 31 Aug 2006 00:00:17 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: libpng-1.2.10 failed while cross compiling as the dependency for GTK lib MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_39241_1043159.1156962617258" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.279 tagged_above=-999 required=2 tests=[AWL=0.171, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BP=0.077, TW_BZ=0.077] X-Spam-Score: -1.279 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:30:23 -0000 ------=_Part_39241_1043159.1156962617258 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, I am trying to cross compile Gtk-2.8 library for my ARM11. So as the dependency files 1. I cross compiled Glib-2.8.6 2. Cross compiled atk-1.10.3 3. freetype-2.1.9 cross compiled 4. zlib-1.2.3 But libpng-1.2.10 failed to cross compile. I did In myconfigure.sh i wrote #!/bin/bash -e TOOLCHAIN="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2 /arm-none-linux-gnueabi" PREFIX="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2 /arm-none-linux-gnueabi/arm-none-linux-gnueabi/local" #PATH="/bin:$TOOLCHAIN/bin:$TOOLCHAIN/arm-linux/local/bin:/usr/bin" LDFLAGS="-L$TOOLCHAIN/arm-none-linux-gnueabi/local/lib" cp ./libpng.cache config.cache ./configure --prefix=$PREFIX --build=i386-linux --host=arm-linux \ --cache-file=config.cache \ CC=arm-none-linux-gnueabi-gcc \ NM=arm-none-linux-gnueabi-nm \ AR=arm-none-linux-gnueabi-ar \ RANLIB=arm-none-linux-gnueabi-ranlib Then i run ./myconfigure.sh BUt it has given the following error. /bin/sh ./libtool --tag=CC --mode=link arm-none-linux-gnueabi-gcc -I/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/include -g -O2 -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -o libpng12.la -rpath /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -no-undefined -export-dynamic -version-number 0:12:0 -Wl,--version-script= libpng.vers libpng12_la-png.lo libpng12_la-pngset.lo libpng12_la-pngget.lolibpng12_la- pngrutil.lo libpng12_la-pngtrans.lo libpng12_la-pngwutil.lo libpng12_la- pngread.lo libpng12_la-pngrio.lo libpng12_la-pngwio.lo libpng12_la- pngwrite.lo libpng12_la-pngrtran.lo libpng12_la-pngwtran.lo libpng12_la- pngmem.lo libpng12_la-pngerror.lo libpng12_la-pngpread.lo libpng12_la- pnggccrd.lo -lz -lm arm-none-linux-gnueabi-gcc -shared .libs/libpng12_la-png.o.libs/libpng12_la- pngset.o .libs/libpng12_la-pngget.o .libs/libpng12_la-pngrutil.o.libs/libpng12_la- pngtrans.o .libs/libpng12_la-pngwutil.o .libs/libpng12_la-pngread.o.libs/libpng12_la- pngrio.o .libs/libpng12_la-pngwio.o .libs/libpng12_la-pngwrite.o.libs/libpng12_la- pngrtran.o .libs/libpng12_la-pngwtran.o .libs/libpng12_la-pngmem.o.libs/libpng12_la- pngerror.o .libs/libpng12_la-pngpread.o .libs/libpng12_la-pnggccrd.o -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -lz -lm -Wl,--version-script=libpng.vers -Wl,-soname -Wl,libpng12.so.0 -o .libs/libpng12.so.0.12.0 /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz collect2: ld returned 1 exit status make[1]: *** [libpng12.la] Error 1 make[1]: Leaving directory `/home/harsha/Desktop/SRCLibs/ALLGTK_NEW/libpng- 1.2.12' make: *** [all] Error 2 Infact the libzlib library files are in $PREFIX/lib directory. Infact all cross compiled libraries are in $PREFIX/lib and include files are in $PREFIX/include directory. I have binutils cross compiled one. I have gcc-4.1.1 Can any one help me what could be the proble? Thanks in advance. Regards, Harsha ------=_Part_39241_1043159.1156962617258 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All,
I am trying to cross compile Gtk-2.8 library for my ARM11.
So as the dependency files
1. I cross compiled Glib-2.8.6
2. Cross compiled atk-1.10.3
3. freetype-2.1.9  cross compiled
4. zlib-1.2.3
But
libpng-1.2.10 failed to cross compile.

I did
In myconfigure.sh i wrote

#!/bin/bash -e
TOOLCHAIN="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi"
PREFIX="/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local"
#PATH="/bin:$TOOLCHAIN/bin:$TOOLCHAIN/arm-linux/local/bin:/usr/bin"
LDFLAGS="-L$TOOLCHAIN/arm-none-linux-gnueabi/local/lib"

cp ./libpng.cache  config.cache

 ./configure  --prefix=$PREFIX --build=i386-linux --host=arm-linux \
  --cache-file=config.cache  \
  CC=arm-none-linux-gnueabi-gcc \
  NM=arm-none-linux-gnueabi-nm \
  AR=arm-none-linux-gnueabi-ar  \
  RANLIB=arm-none-linux-gnueabi-ranlib

Then i run
./myconfigure.sh

BUt it has given the following error.

/bin/sh ./libtool --tag=CC --mode=link arm-none-linux-gnueabi-gcc  -I/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/include -g -O2  -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -o libpng12.la -rpath /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -no-undefined -export-dynamic -version-number 0:12:0 -Wl,--version-script=libpng.vers  libpng12_la-png.lo libpng12_la-pngset.lo libpng12_la-pngget.lo libpng12_la-pngrutil.lo libpng12_la-pngtrans.lo libpng12_la-pngwutil.lo libpng12_la-pngread.lo libpng12_la-pngrio.lo libpng12_la-pngwio.lo libpng12_la-pngwrite.lo libpng12_la-pngrtran.lo libpng12_la-pngwtran.lo libpng12_la-pngmem.lo libpng12_la-pngerror.lo libpng12_la-pngpread.lo libpng12_la-pnggccrd.lo  -lz -lm
arm-none-linux-gnueabi-gcc -shared  .libs/libpng12_la-png.o .libs/libpng12_la-pngset.o .libs/libpng12_la-pngget.o .libs/libpng12_la-pngrutil.o .libs/libpng12_la-pngtrans.o .libs/libpng12_la-pngwutil.o .libs/libpng12_la-pngread.o .libs/libpng12_la-pngrio.o .libs/libpng12_la-pngwio.o .libs/libpng12_la-pngwrite.o .libs/libpng12_la-pngrtran.o .libs/libpng12_la-pngwtran.o .libs/libpng12_la-pngmem.o .libs/libpng12_la-pngerror.o .libs/libpng12_la-pngpread.o .libs/libpng12_la-pnggccrd.o  -L/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib -lz -lm  -Wl,--version-script=libpng.vers -Wl,-soname -Wl,libpng12.so.0 -o .libs/libpng12.so.0.12.0
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/local/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make[1]: *** [libpng12.la] Error 1
make[1]: Leaving directory `/home/harsha/Desktop/SRCLibs/ALLGTK_NEW/libpng-1.2.12'
make: *** [all] Error 2


Infact the libzlib library files are in
$PREFIX/lib  directory.
Infact all cross compiled libraries are in $PREFIX/lib and
include files are in $PREFIX/include directory.


I have binutils cross compiled one.
I have gcc-4.1.1

Can any one help me what could be the proble?

Thanks in advance.

Regards,
Harsha




------=_Part_39241_1043159.1156962617258-- From bounces@nabble.com Thu Aug 31 05:57:27 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C84753B0091 for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08282-01 for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 1376B3B006B for ; Thu, 31 Aug 2006 05:57:27 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GIjIc-0008QN-IU for gtk-list@gnome.org; Thu, 31 Aug 2006 02:57:26 -0700 Message-ID: <6076423.post@talk.nabble.com> Date: Thu, 31 Aug 2006 02:57:26 -0700 (PDT) From: cnu_sree To: gtk-list@gnome.org Subject: textview MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.218 tagged_above=-999 required=2 tests=[AWL=0.221, BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.218 X-Spam-Level: X-Mailman-Approved-At: Thu, 31 Aug 2006 10:06:07 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 09:57:28 -0000 how we can restrict tha num of chars iin each line of a tree view is there any special function please tell me sree. -- View this message in context: http://www.nabble.com/textview-tf2195712.html#a6076423 Sent from the Gtk+ - General forum at Nabble.com. From awuest@gmail.com Thu Aug 31 11:33:55 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7A2483B0085 for ; Thu, 31 Aug 2006 11:33:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24275-05 for ; Thu, 31 Aug 2006 11:33:55 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by menubar.gnome.org (Postfix) with ESMTP id 7398C3B00AB for ; Thu, 31 Aug 2006 11:33:54 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id c2so1242434ugf for ; Thu, 31 Aug 2006 08:33:53 -0700 (PDT) Received: by 10.66.244.10 with SMTP id r10mr600269ugh; Thu, 31 Aug 2006 08:33:53 -0700 (PDT) Received: by 10.67.117.9 with HTTP; Thu, 31 Aug 2006 08:33:52 -0700 (PDT) Message-ID: <36f723580608310833ucc07958t20feadad2efb10a2@mail.gmail.com> Date: Thu, 31 Aug 2006 17:33:52 +0200 From: "Andreas Wuest" To: gtk-list@gnome.org Subject: [PATCH] Re: Building gtk+ 2.10.2 without cups or complete printing support In-Reply-To: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_70769_1191368.1157038432962" References: <36f723580608300511l20371474ia1ba175afd9a5cb0@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.373 tagged_above=-999 required=2 tests=[AWL=-0.050, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001, TW_CC=0.077] X-Spam-Score: -2.373 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:33:55 -0000 ------=_Part_70769_1191368.1157038432962 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Ok, there does not seem to be a configure option to either disable cups or the printing backend as a whole. I've attached a patch which you can use to disable cups. Apply it before you run configure. Note though that I am not really accquainted with autoconf and the likes. But it works. The first diff is to prevent the cups module directory from being included into the set of printing backends to be built, and the second diff ensures that everybody thinks we don't have cups. On 8/30/06, Andreas Wuest wrote: > Hi > > Since gtk+ 2.10 seems to require a decent revision of cups, I'd like > to build it without cups support, if this is possible. If not, I could > also do without printing support at all. > > I'm not sure though about the correct configure option. It would be > nice if somebody could tell me what I should do to disable either only > cups or printing. -- Kind regards, Andi ------=_Part_70769_1191368.1157038432962 Content-Type: application/octet-stream; name=gtk2-2.10.2-disablecups.diff Content-Transfer-Encoding: base64 X-Attachment-Id: f_erjapva0 Content-Disposition: attachment; filename="gtk2-2.10.2-disablecups.diff" LS0tIGNvbmZpZ3VyZS5pbn4gICAgICAgMjAwNi0wOC0xOCAwNDoxNzo1OS4wMDAwMDAwMDAgKzAy MDAKKysrIGNvbmZpZ3VyZS5pbiAgICAgICAgMjAwNi0wOC0zMSAwMjo1Mzo1Ny4wMDAwMDAwMDAg KzAyMDAKQEAgLTE1NjIsNyArMTU2Miw3IEBACiAgIEFDX1NVQlNUKENVUFNfQ0ZMQUdTKQogICBB Q19TVUJTVChDVVBTX0xJQlMpCiBmaQotQU1fQ09ORElUSU9OQUwoSEFWRV9DVVBTLCB0ZXN0ICJ4 JENVUFNfQ09ORklHIiAhPSAieG5vIikKKyNBTV9DT05ESVRJT05BTChIQVZFX0NVUFMsIHRlc3Qg IngkQ1VQU19DT05GSUciICE9ICJ4bm8iKQogCiBndGtfc2F2ZV9jcHBmbGFncz0iJENQUEZMQUdT IgogQ1BQRkxBR1M9IiRDUFBGTEFHUyAkR1RLX0RFUF9DRkxBR1MiCi0tLSBjb25maWd1cmV+ICAy MDA2LTA4LTE4IDA0OjM2OjAwLjAwMDAwMDAwMCArMDIwMAorKysgY29uZmlndXJlICAgMjAwNi0w OC0zMSAwMzowMDoxNS4wMDAwMDAwMDAgKzAyMDAKQEAgLTMyMDQyLDEzICszMjA0Miw4IEBACiBm aQogCiAKLWlmIHRlc3QgIngkQ1VQU19DT05GSUciICE9ICJ4bm8iOyB0aGVuCi0gIEhBVkVfQ1VQ U19UUlVFPQotICBIQVZFX0NVUFNfRkFMU0U9JyMnCi1lbHNlCi0gIEhBVkVfQ1VQU19UUlVFPScj JwotICBIQVZFX0NVUFNfRkFMU0U9Ci1maQorSEFWRV9DVVBTX1RSVUU9JyMnCitIQVZFX0NVUFNf RkFMU0U9CiAKIAogZ3RrX3NhdmVfY3BwZmxhZ3M9IiRDUFBGTEFHUyIK ------=_Part_70769_1191368.1157038432962-- From hvreddy1110@gmail.com Thu Aug 31 12:00:52 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A2E5A3B0267 for ; Thu, 31 Aug 2006 12:00:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25902-04 for ; Thu, 31 Aug 2006 12:00:48 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id 5895B3B0191 for ; Thu, 31 Aug 2006 12:00:48 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id x66so1164703pye for ; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Received: by 10.35.78.9 with SMTP id f9mr968670pyl; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Received: by 10.35.39.19 with HTTP; Thu, 31 Aug 2006 09:00:47 -0700 (PDT) Message-ID: <1dd596080608310900i24c350cbs873f3f31f7d6d9f2@mail.gmail.com> Date: Thu, 31 Aug 2006 21:30:47 +0530 From: "harshavardhanreddy mandeepala" To: gtk-list@gnome.org Subject: ..... libxml skipping incompatable -lz ...... MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_57839_5633693.1157040047093" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.294 tagged_above=-999 required=2 tests=[AWL=0.156, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, HTML_00_10=0.795, HTML_MESSAGE=0.001, SPF_PASS=-0.001, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -1.294 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:00:52 -0000 ------=_Part_57839_5633693.1157040047093 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi I am trying to cross compile libxml2-2.6.26 as a dependency for my Gtk Library Xcompilation for ARM11. Before that i compiled zlib-1.2.3 successfully. But when i try to cross compile libxml2 it is giving following error. /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz collect2: ld returned 1 exit status As per the error it is finding the libz in the location but it is saying it is incompatable. Can anybody suggest that what could be the reason. Thanks in advance. Regards Harsha ------=_Part_57839_5633693.1157040047093 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi I am trying to cross compile libxml2-2.6.26 as a dependency for my Gtk Library Xcompilation for ARM11.
Before that i compiled zlib-1.2.3 successfully.
But when i try to cross compile libxml2 it is giving following error.

/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/arm-none-linux-gnueabi/bin/../../arm-none-linux-gnueabi/lib/libz.so when searching for -lz
/opt/freescale/usr/local/gcc-4.1.1-glibc-2.4-nptl-2/arm-none-linux-gnueabi/lib/gcc/arm-none-linux-gnueabi/4.1.1/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lz
collect2: ld returned 1 exit status

As per the error  it is finding the libz in the location but it is saying it is incompatable.
Can anybody suggest that what could be the reason.

Thanks in advance.

Regards
Harsha
------=_Part_57839_5633693.1157040047093-- From ben@benjohnson.net Thu Aug 31 18:15:53 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C2C963B0088 for ; Thu, 31 Aug 2006 18:15:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12702-04 for ; Thu, 31 Aug 2006 18:15:52 -0400 (EDT) Received: from server018.dfw.nationwide.net (server018.dfw.nationwide.net [206.123.129.81]) by menubar.gnome.org (Postfix) with SMTP id E57C63B006D for ; Thu, 31 Aug 2006 18:15:51 -0400 (EDT) Received: (qmail 3071 invoked from network); 31 Aug 2006 22:16:41 -0000 Received: from sense-sea-megasub-1-814.oz.net (HELO rose) (216.39.170.53) by 206.123.129.9 with SMTP; Thu, 31 Aug 2006 22:16:41 +0000 Received: from localhost (localhost [127.0.0.1]) by rose (Postfix) with ESMTP id 23992E4081 for ; Thu, 31 Aug 2006 15:15:45 -0700 (PDT) Received: from rose ([127.0.0.1]) by localhost (rose [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25524-10 for ; Thu, 31 Aug 2006 15:15:45 -0700 (PDT) Received: by rose (Postfix, from userid 1000) id D214AE4097; Thu, 31 Aug 2006 15:15:43 -0700 (PDT) Date: Thu, 31 Aug 2006 15:15:43 -0700 From: Anna To: gtk-list@gnome.org Subject: Re: textview Message-ID: <20060831221543.GO20651@rose.benjohnson.net> Mail-Followup-To: Anna , gtk-list@gnome.org References: <6076423.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6076423.post@talk.nabble.com> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at benjohnson.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.518 tagged_above=-999 required=2 tests=[AWL=0.004, BAYES_00=-2.599, TW_XT=0.077] X-Spam-Score: -2.518 X-Spam-Level: X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 22:15:53 -0000 On Thu, Aug 31, 2006 at 02:57:26AM -0700, cnu_sree wrote: > > how we can restrict tha num of chars iin each line of a tree view > is there any special function > please tell me you mean restrict the length of the line that's rendered in each line in the treeview? You probably want to read about the GtkCellRendererText type. https://stage.maemo.org/svn/maemo/projects/haf/doc/api/gtk/GtkCellRendererText.html Columns have default renderers. You use this class to make a specialized renderer. What does the "rendering" is a callback you provide which is referenced from an instance of this class. Google for GtkCellRendererText and similar things and you'll find a tutorial. - Anna From bounces@nabble.com Thu Aug 31 16:53:10 2006 Return-Path: X-Original-To: gtk-list@gnome.org Delivered-To: gtk-list@gnome.org Received: from localhost (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 77F183B0077 for ; Thu, 31 Aug 2006 16:53:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08758-08 for ; Thu, 31 Aug 2006 16:53:06 -0400 (EDT) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by menubar.gnome.org (Postfix) with ESMTP id 895EC3B00A4 for ; Thu, 31 Aug 2006 16:53:06 -0400 (EDT) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GItX7-00074i-Sh for gtk-list@gnome.org; Thu, 31 Aug 2006 13:53:05 -0700 Message-ID: <6088022.post@talk.nabble.com> Date: Thu, 31 Aug 2006 13:53:05 -0700 (PDT) From: Petter Jansen To: gtk-list@gnome.org Subject: Widget identifcation MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.439 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_HOTMAIL_RCVD2=1.162, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -1.439 X-Spam-Level: X-Mailman-Approved-At: Thu, 31 Aug 2006 23:25:12 -0400 X-BeenThere: gtk-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: General discussion of GTK+ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 20:53:10 -0000 I wonder what the GTK+ equivalent of this grid below is? I'm not able to find it in the API. http://www.bcbjournal.org/articles/vol2/9809/cpb9893a.gif Thanks. -- View this message in context: http://www.nabble.com/Widget-identifcation-tf2199203.html#a6088022 Sent from the Gtk+ - General forum at Nabble.com.