From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Vollmer To: John Fremlin Cc: guile-gtk@sourceware.cygnus.com Subject: Re: compile error with gtk-1.2.7 Date: Sun, 12 Mar 2000 11:43:00 -0000 Message-id: <871z5gezxp.fsf@zagadka.ping.de> References: X-SW-Source: 2000-q1/msg00045.html John Fremlin writes: > guile-gtk.h:235: conflicting types for `gdk_color_copy' > /usr/local/include/gdk/gdk.h:556: previous declaration of `gdk_color_copy' Current CVS versions of guile-gtk should have this code in guile-gtk.h: #ifndef HAVE_GDK_COLOR_COPY GdkColor* gdk_color_copy (GdkColor *); void gdk_color_free (GdkColor *); #endif Thus, when Gtk+ contains gdk_color_copy itself, guile-gtk should not declare its own prototype. This is a fairly recent change, from 2000-02-27. What version of guile-gtk are you using?