configuring GTK 2.2

2003-01-13 Thread Hubert de Fraysseix
Hi, I downloaded the sources of GTK+-2.2.0 and compiled all the requested dependencies, but when I run ./configure I get a message that I do not understand: configure: error: *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required *** to build

Re: configuring GTK 2.2

2003-01-13 Thread Padraig O'Briain
Hubert, libatk-1.0.so should not be calling g_value_get_as_pointer. What version of atk did you download? Please do 1) ls -l /usr/local/lib/libatk* 2) grep for g_value_get_as_pointer in the subdirectory atk/atk in which you built ATK. Padraig Hi, I downloaded the sources of GTK+-2.2.0

Re: configuring GTK 2.2

2003-01-13 Thread Hubert de Fraysseix
Hi, Thank you for your help. I am using atk-1.2.0 -  /usr/local/lib/libatk-1.0.so.0.200.0 Is it too recent ? The result of the grep is: atkmarshal.c:  data2 = g_value_get_as_pointer (param_values + 0); atkmarshal.c:  data1 = g_value_get_as_pointer (param_values + 0); atkmarshal.c: 

Re: configuring GTK 2.2

2003-01-13 Thread Padraig O'Briain
Herbert, This is very strange, The file atk-marshal.c is generated by the build. According to the ChangeLog in glib/gobject the function g_value_get_as_pointer was renamed to g_value_peek_pointer on Februray 21st 2001. I would look very closely at how the file atkmarshal.c is being generated.

Re: configuring GTK 2.2

2003-01-13 Thread Sven Neumann
Hi, Hubert de Fraysseix [EMAIL PROTECTED] writes: libatk-1.0.so should not be calling g_value_get_as_pointer. the problem is most likely that a very old version of glib-genmarshal is being used to build atk. g_value_get_as_pointer() was renamed to g_value_peek_pointer() almost a year ago.