added glib_gettext (in use by gio) also try building gio

2007-12-03  Hans Breuer  <hans@breuer.org>

	* glib/glib.symbols : added glib_gettext (in use by gio)
	* makefile.msc : also try building gio
	
	* glib/gmarkup.c : use G_GUINT64_CONSTANT() to avoid 
	'bad suffix on number'
	* glib/gtestutils.c : declare cariable at the beginning of the block,
	include <io.h> for G_OS_WIN32
	* makefile.msc.in : add gurifuncs and gtestutils


svn path=/trunk/; revision=6028
This commit is contained in:
Hans Breuer
2007-12-03 22:46:17 +00:00
committed by Hans Breuer
parent 43ae389211
commit 27cb515443
6 changed files with 32 additions and 10 deletions

View File

@@ -2496,7 +2496,7 @@ g_markup_collect_attributes (const gchar *element_name,
mandatory = FALSE;
for (i = 0; attribute_names[i]; i++)
if (i >= 40 || !(collected & (1ull << i)))
if (i >= 40 || !(collected & (G_GUINT64_CONSTANT(1) << i)))
if (!strcmp (attribute_names[i], attr))
break;
@@ -2514,7 +2514,7 @@ g_markup_collect_attributes (const gchar *element_name,
* what error it is, so just continue...
*/
if (i < 40)
collected |= (1ull << i);
collected |= (G_GUINT64_CONSTANT(1) << i);
value = attribute_values[i];