Re: List of gtkrc-2.0 options?

2004-11-03 Thread Manuel Op de Coul

It turns out I made a binding error with gtk_widget_get_settings.
So that works now, but g_object_get_property still gives a
segmentation fault, should I report this to Bugzilla?
(g_object_get is not provided in my binding).

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: List of gtkrc-2.0 options?

2004-11-03 Thread Manuel Op de Coul

Matthias wrote:
>  GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET
>(button));

This gives a Gtk-CRITICAL assertion GTK_IS_WIDGET (widget) failed,
and then returns null.
I tried it with both an unrealized and realized button.
Thanks again,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: List of gtkrc-2.0 options?

2004-11-02 Thread Manuel Op de Coul

I could use the "gtk-button-images" setting. The stock buttons
are sensitive to this setting, but I have my own buttons with
a custom pixmap and label inside.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: List of gtkrc-2.0 options?

2004-11-02 Thread Manuel Op de Coul

>You can use all settings there (I notice that the fact that settings can
>be set in rc files is not mentioned in our docs of the rc file
>syntax...) The settings are documented here:
>http://developer.gnome.org/doc/API/2.0/gtk/GtkSettings.html
>(scroll down to "Properties").

How does one retrieve these property settings inside a program?
When I call g_object_get_property on the object returned by
gtk_settings_get_default I get a segmentation fault inside
g_object_get_property. The settings object is not null.
Thanks,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Win32 pixmap bug

2004-03-31 Thread Manuel Op de Coul
I'm looking for a little help resolving a deadlock
situation regarding this bug:

http://bugzilla.gnome.org/show_bug.cgi?id=126710

I've just tested that it's still present in the 2.2.4-2
runtime environment. I have provided a minimal sample
program in Ada but Tor insists on a C program and I wouldn't
know where to begin writing one.
The problem is that pixmaps read from a file are somehow
clipped wrongly when they are put on a drawingarea like this:

   function On_Drawingarea1_Expose_Event
 (Object : access Gtk_Widget_Record'Class;
  Params : Gtk.Arguments.Gtk_Args) return Boolean
   is
  Pix_Key  : Gtk_Pixmap;
  Pixd : Gdk.Pixmap.Gdk_Pixmap;
  Mask_Key : Gdk.Bitmap.Gdk_Bitmap;
   begin
  Gdk.Window.Clear(Gdkw);
  Pix_Key := Create_Pixmap("a.xpm", Dialog);
  Get(Pix_Key, Pixd, Mask_Key);
  Set_Clip_Origin(Gc, 70, 10);
  Set_Clip_Mask(Gc, Mask_Key);
  Draw_Pixmap(Gdkw, Gc, Pixd, 0, 0, 70, 10);
  return False;
   end On_Drawingarea1_Expose_Event;

Does anyone have a very small C program that only displays
a drawingarea in a dialog that I can try to adapt to make
a test case for this bug?
Thanks,

Manuel Op de Coul


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Wanting terminal-like behavior from a Gtk_Text_View widget

2004-03-16 Thread Manuel Op de Coul

Take a look at http://www.xs4all.nl/~huygensf/scala
I use a Gtk_Text_View for the output and a Gtk_Entry for
the command line. There's also a status line and it has
a command history buffer.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Mouse pointer on menus

2004-01-14 Thread Manuel Op de Coul

You didn't say which platform you use, but if it's
Windows then it's a bug that's been reported to
Bugzilla. The mouse cursor should change when it
moves on a menu.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Treeviewcolumn event

2004-01-09 Thread Manuel Op de Coul

Hi Andrej,

>If I understand correctly, you want to catch clicks on the treeview and
>then analyse whick mouse button was used? If so, then:

No, not the treeview but clicks on the column header, the event at
the bottom of
http://developer.gnome.org/doc/API/2.0/gtk/GtkTreeViewColumn.html

I only see a user_data field, no button info. In fact I'd like to know
the shift, control etc. mask too if possible. Thanks,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Treeviewcolumn event

2004-01-08 Thread Manuel Op de Coul
I need to retrieve the button number in a "clicked" event
handler for a treeview column, but I don't know how to
read it from the event data (is there any?). Can someone help?
Thanks in advance,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK TreeView Column Header Colors

2003-11-20 Thread Manuel Op de Coul

Tim Evans wrote:
>It is possible, just not particularly obvious.  What you need to do is
>call gtk_tree_view_column_set_widget, passing in your own label that is
>set to display the column title.  Once the label is shown and realized,
>call gtk_widget_get_parent three times, which should move up through a
>GtkAlignment and a GtkHBox to give you a GtkButton.  This button is the
>column header.  Calling gtk_widget_modify_bg on it will change the
>background colour of the column header.

Thanks for this "insider tip"! I realised that this might also be a
workaround the problem I had setting tooltips to treeview column headers
(also clist's). I tried it and it was.
Setting the tooltip to the result of a triply nested Get_Parent call on
the label does the trick. The fact that it must be shown and realized
also makes it more cumbersome than the old method with eventboxes though.
The next Gtk version will probably get a new routine for it.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GtkTreeView alignment

2003-11-19 Thread Manuel Op de Coul
Andrej wrote:
>Example: out of the three, only the 1st one gets aligned when the row is
>appended with e.g.:

Well according to the documentation the xalign property doesn't
exist for toggle- and pixbuf-renderers.
For pixbufs you could work around it by drawing them into other
ones with equal size.
For toggle buttons it would look strange to align them in the
middle if you ask me.

Manuel



___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GtkTreeView alignment

2003-11-17 Thread Manuel Op de Coul

See
http://mail.gnome.org/archives/gtk-list/2003-October/thread.html

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


tree indentation

2003-11-09 Thread Manuel Op de Coul
Is there a counterpart for the treeview to the set_indent
function of the ctree?
Thanks in advance,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Subject: Treeview cell and alignment

2003-10-30 Thread Manuel Op de Coul
David Hampton wrote:
>You have a GtkTreeModel somewhere supplying data to your view.  This
>needs a new column that supplies the alignment value.

It works now, thanks! Yes, the documentation should make this
clearer indeed.

Manuel

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Subject: Treeview cell and alignment

2003-10-29 Thread Manuel Op de Coul
Thanks, but...

>You need to add the "xalign" attribute to these treeview columns.

I assume you mean property. But TreeViewColumn doesn't have
this property according to the documentation. And when I try it,
the same warning is given.
I only see it in CellRenderer. But I need it in CellRendererText.
Is the property inherited from CellRenderer?
I tried this too with no luck.

> The
>attribute value comes from a new model column that returns a float
>between 0.0 and 1.0.  0.0 is left aligned; 1.0 is right aligned.

Sorry I don't understand what you mean by new model column.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Treeview cell and alignment

2003-10-28 Thread Manuel Op de Coul
I wonder what's the common way of setting the alignment
of text in a treeview column different from the default
left alignment.
I ask because my attempts so far weren't successful.
Thanks in advance,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: deprecated GtkCombo

2003-10-03 Thread Manuel Op de Coul

> There is a new GtkComboBox widget in CVS which will replace
> GtkCombo and GtkOptionMenu for GTK+-2.4.

Will this new widget support tooltips on individual items?
As does the GtkOptionMenu (did actually, before it suffered
from a regression in Gtk+ 2.x).

Thanks,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


List and treeview tooltips

2003-09-24 Thread Manuel Op de Coul
I was using eventboxes to show tooltips on the labels of
column headers in columned lists. Disappointed that all my
carefully written tips didn't work anymore when moving from
1.2 to 2.2, I reported this bug to bugzilla.
http://bugzilla.gnome.org/show_bug.cgi?id=117978

Now I'm trying to put tooltips on a gtk_tree_view by setting an
eventbox as column widget, but it also doesn't work!
What went wrong here? When I use a button instead of an
eventbox as column widget, no tooltip either.
Even though the above bug refers to a deprecated widget,
now with this problem also occurring on a treeview, I
hope it will get fixed for both.
Is there a workaround?

By the way, it still seems necessary to put a label in an
eventbox to display tooltips, but labels now respond to
mouse events (labels can be selectable).

Also, I'd hate to see clists go away! They're much simpler
to use.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Stock item request

2003-09-11 Thread Manuel Op de Coul

>To add to the list of wanted/useful stock items, I have at one point or
>another been missing the following stock buttons:

>Browse...   (Like browse for a file or directory)
>Edit...
>Default (Like reset to default values)
>Abort
>Search...   (OK, Find is there, but Search often means something
different)
>Connect
>Upload...
>Download...
>Import...
>Export...

It would be nice to have those too indeed. An item for changing the
directory
could have the appearance of "gtk-open" but with a closed folder.

>- The "Revert" image shows a diskette, which associates this action to
>something that's got to do with files, which is not necessarily the case.

Could be a different item, "gtk-revert" instead of "gtk-revert-to-saved".
I could use that too.

I tried to use the "gtk-dialog-info" image, but there is no size for
menu item alas. Can be used for "Tip...".

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


ATK screenreaders

2003-09-11 Thread Manuel Op de Coul
A blind user of my program sent me a distracted message that
with the new version (made with Gtk 2.2) his screenreader
cannot read anything anymore as opposed to the previous
version made with Gtk 1.2.
This is ironic since with ATK I thought support for blind
users would improve.
Since I don't know anything about this, can someone give
any information about screenreaders for Windows and ATK?
Thanks in advance,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Stock item request

2003-09-09 Thread Manuel Op de Coul
I am missing a "gtk-edit" stock item. The image could be like
"gtk-find-and-replace" without the magnifying glass, so "gtk-new"
plus a pencil. I think this is a very basic and useful item.

Manuel



___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Menu item label

2003-07-14 Thread Manuel Op de Coul
Thanks for the responses. I have another question, when the
label of a menu item is changed to one with a mnemonic, the
label becomes centre-justified instead of left-justified.
Is there a rationale for this, and how can I set it back to
left-justified again?

Manuel

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Vscale

2003-07-12 Thread Manuel Op de Coul
I recently started replacing Gtk 1.2 with Gtk 2.2 and I thought
the problem of GtkVscale only working the opposite way (up=lower)
was solved, but I don't see how this works? I'd like it to work
the straight way: up=higher.
Thanks,

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: GTK+-2.0.3 install error

2002-06-03 Thread manuel . op . de . coul

Jonathan Wall wrote:
>I'm trying to install GTK+-2.0.3 on an Alpha running Digital Unix 4.0d...

The same occurred to me. It seems to be a bug in ksh, since
that's what's crashing. I wrote with someone else who uses Tru64 version 5
and it didn't happen there. What I did was copy the header files
by hand, then edit the makefile to remove the install-gtkincludeHEADERS
target, and then make install again. Less work than upgrading
the OS.

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Problem with gtk and pkg-config

2002-05-29 Thread manuel . op . de . coul

I forgot adding the pkg-config output:

$ pkg-config gtk+-2.0 --cflags
 -I$(top_builddir)//usr/users/coul1358/local/lib/pkgconfig/. 
-I$(top_builddir)//
usr/users/coul1358/local/lib/pkgconfig 
-I/usr/users/coul1358/local/include/atk-1
0 -I/usr/users/coul1358/local/include/pango-1.0 
-I/usr/users/coul1358/local/inc
lude/glib-2.0 -I/usr/users/coul1358/local/lib/glib-2.0/include

Manuel

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Problem with gtk and pkg-config

2002-05-29 Thread manuel . op . de . coul

I have problems building applications with gtk+ 2.0.3.
This happens with one of the examples in the gtk+ 2.0.3
examples directory:

$ make
gcc base.c -o base -Wall -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED 
-DGDK_P
IXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED `pkg-config gtk+-2.0 
--cflags
--libs`
gcc: 
$(top_builddir)//usr/users/coul1358/local/lib/pkgconfig/libgtk-x11-2.0.la:
No such file or directory
make: *** [base] Error 1

I have no idea why it wants to find a library in my pkgconfig directory.
Is the file syntax even correct?
I use pkg-config 0.12.0. The contents of gtk+-2.0.pc in the directory
where PKG_CONFIG_PATH points to is this:
begin--
prefix=/usr/users/coul1358/local
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
target=x11

gtk_binary_version=2.0.0
gtk_host=alphaev5-dec-osf4.0e

Name: GTK+
Description: GIMP Tool Kit (${target} target)
Version: 2.0.3
Requires: gdk-${target}-2.0 atk
Libs: -L${libdir} -lgtk-${target}-2.0
Cflags: -I${includedir}/gtk-2.0
-end---

I have no idea what's wrong, please help. Thanks,

Manuel

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: Pango-1.0.1 released

2002-04-02 Thread manuel . op . de . coul

Here are the problems on Compaq Alpha with Tru64 Unix:

pango-utils.c: In function `pango_read_line':
pango-utils.c:168: warning: implicit declaration of function `flockfile'
pango-utils.c:176: warning: implicit declaration of function 
`getc_unlocked'
pango-utils.c:247: warning: implicit declaration of function `funlockfile'

pangox.c: In function `parse_gintset_spec':
pangox.c:76: warning: implicit declaration of function `strtok_r'
pangox.c:76: warning: assignment makes pointer from integer without a cast
pangox.c:96: warning: assignment makes pointer from integer without a cast
pangox.c: In function `font_struct_get_ligatures':
pangox.c:1727: warning: initialization makes pointer from integer without 
a cast
pangox.c:1808: warning: assignment makes pointer from integer without a 
cast
pangox.c:1842: warning: assignment makes pointer from integer without a 
cast
pangox.c:1845: warning: assignment makes pointer from integer without a 
cast
pangox.c:1876: warning: assignment makes pointer from integer without a 
cast
pangox.c:1895: warning: assignment makes pointer from integer without a 
cast

make[3]: Entering directory 
`/usr/users/coul1358/pango-1.0.1/modules/hebrew'
Writing a pango.modules file to use when running examples before 
installing Pang
o.
make[2]: *** [pango.modules] Segmentation fault (core dumped)
make[2]: *** Deleting file `pango.modules'

$ gdb --core=core
Reading symbols from 
/usr/users/coul1358/pango-1.0.1/modules/./arabic/.libs/libp
ango-arabic-x.so...done.
#0  0x3ff800d758c in __memccpy ()
(gdb) bt
#0  0x3ff800d758c in __memccpy ()
#1  0x3ff800d8e38 in fputs ()
#2  0x30001032ae4 in g_print (format=0x3ffc0097a73 "") at gmessages.c:833
warning: Hit heuristic-fence-post without finding
warning: enclosing function for address 0x120001bb0

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: GTK+-2.0.1 released

2002-04-02 Thread manuel . op . de . coul

There are problems and warnings on Compaq Alpha with Tru64 Unix:

gdk-pixdata.c: In function `gdk_pixdata_to_csource':
gdk-pixdata.c:712: warning: unsigned int format, different type arg (arg 
4)

io-png.c: In function `gdk_pixbuf__png_image_load':
io-png.c:252: warning: variable `options' might be clobbered by `longjmp' 
or `vfork'
io-png.c: In function `gdk_pixbuf__png_image_save':
io-png.c:769: warning: variable `text_ptr' might be clobbered by `longjmp' 
or `vfork'
io-png.c:779: warning: variable `num_keys' might be clobbered by `longjmp' 
or `vfork'
io-png.c:780: warning: variable `success' might be clobbered by `longjmp' 
or `vfork'
io-png.c: At top level:
io-png.c:229: warning: `png_malloc_callback' defined but not used
io-png.c:235: warning: `png_free_callback' defined but not used

Making all in stock-icons
make[3]: Entering directory 
`/usr/users/coul1358/gtk+-2.0.1/gtk/stock-icons'
(process:28934): GLib-CRITICAL (recursed) **: file gstring.c: line 423 
(g_string
_append): assertion `val != NULL' failed
aborting...
make[3]: *** [gtkstockpixbufs.h] IOT/Abort trap (core dumped)
make[3]: *** Deleting file `gtkstockpixbufs.h'
make[3]: Leaving directory 
`/usr/users/coul1358/gtk+-2.0.1/gtk/stock-icons'
make[2]: *** [all-recursive] Error 1

$ make -i

gtkrbtree.c: In function `_gtk_rbtree_insert_after':
gtkrbtree.c:534: warning: cast from pointer to integer of different size
gtkrbtree.c: In function `_gtk_rbtree_insert_before':
gtkrbtree.c:615: warning: cast from pointer to integer of different size
gtkrbtree.c: In function `_gtk_rbtree_remove_node':
gtkrbtree.c:1201: warning: cast from pointer to integer of different size
gtkrbtree.c: In function `_gtk_rbtree_debug_spew_helper':
gtkrbtree.c:1789: warning: cast from pointer to integer of different size

editable_cells.c: In function `cell_edited':
editable_cells.c:161: warning: cast from pointer to integer of different 
size

main.c: In function `read_line':
main.c:90: warning: implicit declaration of function `flockfile'
main.c:100: warning: implicit declaration of function `getc_unlocked'
main.c:136: warning: implicit declaration of function `funlockfile'

make[3]: *** No rule to make target `../../gtk/libgtk-x11-2.0.la', needed 
by 
`gtk-demo'.  Stop.

Manuel

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: GLib-2.0.1 released

2002-04-02 Thread manuel . op . de . coul

Compiling on a Compaq Alpha under Tru64 Unix.
I see that some of my previous issues have been resolved; great.
Here are the current problems with Glib 2.0.1:

gconvert.c: In function `open_converter':
gconvert.c:369: warning: passing arg 3 of `g_iconv' from incompatible 
pointer type
gconvert.c:369: warning: passing arg 5 of `g_iconv' from incompatible 
pointer type

gutils.c: In function `g_get_any_init':
gutils.c:799: warning: unused variable `error'

 from gspawn.c:28:
/usr/local/lib/gcc-lib/alpha-dec-osf4.0d/2.8.1/include/sys/param.h:356: 
warning:
 `MIN' redefined
./glib/gmacros.h:137: warning: this is the location of the previous 
definition
/usr/local/lib/gcc-lib/alpha-dec-osf4.0d/2.8.1/include/sys/param.h:357: 
warning:
 `MAX' redefined
./glib/gmacros.h:134: warning: this is the location of the previous 
definition

testglib.c: In function `main':
testglib.c:929: warning: field width is not type int (arg 2)
testglib.c:929: warning: unknown conversion type character `1' in format

$ gdb testglib
(gdb) run
Starting program: /usr/users/coul1358/glib-2.0.1/tests/testglib

Program received signal SIGSEGV, Segmentation fault.
0x3ff800d758c in __memccpy ()
(gdb) bt
#0  0x3ff800d758c in __memccpy ()
#1  0x3ff800d8e38 in fputs ()
#2  0x3ffbffd2ae4 in g_print (format=0x3ffc0097a30 "") at gmessages.c:833
#3  0x12000518c in main (argc=-1073120720, argv=0x0) at testglib.c:418

Manuel Op de Coul

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Re: A desperate plea to the GTK developers

2002-03-19 Thread manuel . op . de . coul

>You could try looking at the Gtk Ada documentation. They have
>descriptions of most all functions and parameters not documented in the
>official GTK documentation. This is true for GTK 1.2. As for 2.0, I do
>not know.

I second that, the additional documentation for 2.0 is not complete 
yet, but certainly usable. Go to http://gtkada.eu.org

Was anyone able to compile Gtk 2.0 with gcc on Tru64 Unix?

Manuel


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list



Gtk+ 2.0.0 no compile

2002-03-12 Thread manuel . op . de . coul

Hi,

I have a problem compiling Gtk 2.0.0 on a Compaq Alpha running osf 4.0e.

gcc -DHAVE_CONFIG_H -I. -I. -I.. -DG_LOG_DOMAIN=\"Gdk\" -I.. -I../gdk 
-I../gdk-p
ixbuf -DG_DISABLE_CAST_CHECKS -I/usr/users/coul1358/local/include/glib-2.0 
-I/us
r/users/coul1358/local/lib/glib-2.0/include 
-I/usr/users/coul1358/local/include/
pango-1.0 -DGDK_COMPILATION -g -O2 -Wall -c gdkwindow.c  -DPIC -o 
gdkwindow.o
as0: Error: gdkwindow.c, line 6: undefined assembler operation: bpt
  bpt
make[3]: *** [gdkwindow.lo] Error 1
make[3]: Leaving directory `/usr/users/coul1358/gtk+-2.0.0/gdk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/users/coul1358/gtk+-2.0.0/gdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/users/coul1358/gtk+-2.0.0'
make: *** [all-recursive-am] Error 2

Any idea how this could happen?


Furthermore, some worrisome warnings are given for other files of Gtk+:

gdk-pixdata.c: In function `gdk_pixdata_to_csource':
gdk-pixdata.c:712: warning: unsigned int format, different type arg (arg 
4)

io-png.c: In function `gdk_pixbuf__png_image_load':
io-png.c:217: warning: variable `options' might be clobbered by `longjmp' 
or `vf
ork'
io-png.c: In function `gdk_pixbuf__png_image_save':
io-png.c:726: warning: variable `text_ptr' might be clobbered by `longjmp' 
or `v
fork'
io-png.c:736: warning: variable `num_keys' might be clobbered by `longjmp' 
or `v
fork'
io-png.c:737: warning: variable `success' might be clobbered by `longjmp' 
or `vf
ork'

And for Glib:

gconvert.c: In function `iconv_cache_bucket_expire':
gconvert.c:296: warning: passing arg 1 of `g_iconv_close' from 
incompatible poin
ter type
gconvert.c: In function `open_converter':
gconvert.c:352: warning: comparison of distinct pointer types lacks a cast
gconvert.c:357: warning: assignment from incompatible pointer type
gconvert.c:369: warning: comparison of distinct pointer types lacks a cast
gconvert.c:374: warning: passing arg 2 of `iconv_cache_bucket_new' from 
incompat
ible pointer type
gconvert.c: In function `close_converter':
gconvert.c:427: warning: passing arg 1 of `g_iconv_close' from 
incompatible poin
ter type

giochannel.c: In function `g_io_channel_read_chars':
giochannel.c:1737: warning: passing arg 4 from incompatible pointer type
giochannel.c: In function `g_io_channel_write_chars':
giochannel.c:1930: warning: passing arg 4 from incompatible pointer type

gutils.c: In function `g_get_any_init':
gutils.c:799: warning: unused variable `error'

In file included from 
/usr/local/lib/gcc-lib/alpha-dec-osf4.0d/2.8.1/include/sys
/wait.h:159,
 from gspawn.c:28:
/usr/local/lib/gcc-lib/alpha-dec-osf4.0d/2.8.1/include/sys/param.h:356: 
warning:
 `MIN' redefined
./glib/gmacros.h:137: warning: this is the location of the previous 
definition
/usr/local/lib/gcc-lib/alpha-dec-osf4.0d/2.8.1/include/sys/param.h:357: 
warning:
 `MAX' redefined
./glib/gmacros.h:134: warning: this is the location of the previous 
definition

testglib.c: In function `main':
testglib.c:927: warning: field width is not type int (arg 2)
testglib.c:927: warning: unknown conversion type character `1' in format

And for Pango:

pangox.c: In function `parse_gintset_spec':
pangox.c:76: warning: implicit declaration of function `strtok_r'
pangox.c:76: warning: assignment makes pointer from integer without a cast
pangox.c:96: warning: assignment makes pointer from integer without a cast
pangox.c: In function `font_struct_get_ligatures':
pangox.c:1685: warning: initialization makes pointer from integer without 
a cast
pangox.c:1766: warning: assignment makes pointer from integer without a 
cast
pangox.c:1800: warning: assignment makes pointer from integer without a 
cast
pangox.c:1803: warning: assignment makes pointer from integer without a 
cast
pangox.c:1834: warning: assignment makes pointer from integer without a 
cast
pangox.c:1853: warning: assignment makes pointer from integer without a 
cast

Thanks,

Manuel Op de Coul

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list