[Glade-devel] Glade 2.0.1 available

Arnaud Charlet charlet@ACT-Europe.FR
Fri, 7 Nov 2003 15:29:30 +0100


--9jxsPFA5p3P2qPhR
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

> I've put Glade 2.0.1 up at:
> 
>    http://ftp.gnome.org/pub/GNOME/sources/glade/2.0/
> 
> I'll announce it in a few days, unless someone spots a problem.

Great.

BTW, GtkAda 2.2 fully supports Glade 2.0, so would you mind applying the
attached patch (this is a patch against 2.0.0, but it should be straightforward
to apply it to 2.0.1) ? It may be too late for 2.0.1, but at least for
CVS and the next release, that'd be great.

Arno

--9jxsPFA5p3P2qPhR
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="glade-ada.diff"

Tue Jun 17 14:28:40 CEST 2003	Arnaud Charlet	<charlet@act-europe.fr>

	glade/utils.c: Remove wrong/unneeded Win32 specific code.

Thu Jun 12 12:05:57 CEST 2003	Nicolas Setton	<setton@act-europe.fr>

	glade/glade_project.c: Generate Ada as well as C and C++.

--- glade/glade_project.c.old	Mon Jun 16 16:02:15 2003
+++ glade/glade_project.c	Mon Jun 16 16:11:07 2003
@@ -46,7 +46,7 @@
 /* The order must match the GladeLanguageType enum in glade_project.h. */
 gchar *GladeLanguages[] = { "C", "C++" , "Ada 95", "Perl", "Eiffel" };
 #if 1
-gint GladeNumLanguages = 2; /* Only C and C++ for now. */
+gint GladeNumLanguages = 3; /* Only C, C++ and Ada for now. */
 #else
 gint GladeNumLanguages = sizeof (GladeLanguages) / sizeof (GladeLanguages[0]);
 #endif
--- glade/utils.c.old	2003-06-17 14:26:50.000000000 +0100
+++ glade/utils.c	2003-06-17 14:26:57.000000000 +0100
@@ -21,13 +21,8 @@
 #include <string.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#ifdef _WIN32
-#include <ctype.h>
-#include <direct.h>
-#else
 #include <unistd.h>
 #include <dirent.h>
-#endif
 #include <errno.h>
 
 #include <gtk/gtk.h>

--9jxsPFA5p3P2qPhR--