Suggestions about gtk+ files



Hi all!

This is my first post! =)
I have "downloaded" gtk+ from CVS, and have some words.

1) Please! Tell the world they must run "aclocal; automake; autoconf" in
glib subdirectory too! I had to learn it in the hard way...

--- HACKING.orig	Tue Jan 20 07:32:21 1998
+++ HACKING	Tue Jan 20 07:33:17 1998
@@ -14,6 +14,7 @@
 steps to get it to compile.  These are:
 
 	cvsroot/gtk+# aclocal; automake; autoconf
+	cvsroot/gtk+/glib# aclocal; automake; autoconf
 
 The "configure" script will not exist until you take these steps.


2) While I was compiling gtk+, got those:

testgtk.c:2280: warning: passing arg 1 of `gtk_text_set_editable' from incompatible pointer type

So I fix it:

--- testgtk.c.orig	Tue Jan 20 07:17:06 1998
+++ testgtk.c	Tue Jan 20 07:16:55 1998
@@ -2277,7 +2277,7 @@
       gtk_widget_show (table);
 
       text = gtk_text_new (NULL, NULL);
-      gtk_text_set_editable (text, TRUE);
+      gtk_text_set_editable (GTK_TEXT (text), TRUE);
       gtk_table_attach_defaults (GTK_TABLE (table), text, 0, 1, 0, 1);
       gtk_widget_show (text); 


3) Running autoconf got some messages:

[cvsroot/gtk+]# autoconf
configure.in:204: warning: AC_TRY_RUN called without default to allow cross compiling
configure.in:222: warning: AC_TRY_RUN called without default to allow cross compiling

[cvsroot/gtk+/glib]# autoconf
configure.in:57: warning: AC_TRY_RUN called without default to allow cross compiling
configure.in:58: warning: AC_TRY_RUN called without default to allow cross compiling
configure.in:59: warning: AC_TRY_RUN called without default to allow cross compiling
configure.in:60: warning: AC_TRY_RUN called without default to allow cross compiling
configure.in:61: warning: AC_TRY_RUN called without default to allow cross compiling

Hope this won't be my last suggestions...

Greetings!

---
Arturo Tena
cbtsra0@andromeda.ulsa.mx
arturo@elweb.com



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]