summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gio/tests/live-g-file.c4
-rw-r--r--gio/xdgmime/xdgmimeglob.c1
-rw-r--r--glib/garray.c2
-rw-r--r--glib/gbase64.c2
-rw-r--r--glib/pcre/pcre_ucp_searchfuncs.c4
-rw-r--r--glib/pcre/pcre_valid_utf8.c1
-rw-r--r--glib/update-pcre/pcre_ucp_searchfuncs.c4
-rw-r--r--glib/update-pcre/pcre_valid_utf8.c1
-rw-r--r--tests/Makefile.am9
-rw-r--r--tests/regex-test.c2
10 files changed, 17 insertions, 13 deletions
diff --git a/gio/tests/live-g-file.c b/gio/tests/live-g-file.c
index fe11d3188..0b074df27 100644
--- a/gio/tests/live-g-file.c
+++ b/gio/tests/live-g-file.c
@@ -458,8 +458,8 @@ test_initial_structure (gconstpointer test_data)
PATTERN_FILE_SIZE, NULL, &error);
g_assert_no_error (error);
total_read += read;
- log (" read %d bytes, total = %d of %d.\n", read, total_read,
- PATTERN_FILE_SIZE);
+ log (" read %d bytes, total = %d of %d.\n", (int) read,
+ (int) total_read, PATTERN_FILE_SIZE);
}
g_assert_cmpint (total_read, ==, PATTERN_FILE_SIZE);
diff --git a/gio/xdgmime/xdgmimeglob.c b/gio/xdgmime/xdgmimeglob.c
index 22acd3e0e..d7c79b17f 100644
--- a/gio/xdgmime/xdgmimeglob.c
+++ b/gio/xdgmime/xdgmimeglob.c
@@ -375,7 +375,6 @@ _xdg_glob_hash_lookup_file_name (XdgGlobHash *glob_hash,
int i, n;
MimeWeight mimes[10];
int n_mimes = 10;
- xdg_unichar_t *ucs4;
int len;
/* First, check the literals */
diff --git a/glib/garray.c b/glib/garray.c
index 64f70e77a..8cb6e1d84 100644
--- a/glib/garray.c
+++ b/glib/garray.c
@@ -181,7 +181,7 @@ g_array_free (GArray *farray,
segment = NULL;
}
else
- segment = array->data;
+ segment = (gchar*) array->data;
if (preserve_wrapper)
{
diff --git a/glib/gbase64.c b/glib/gbase64.c
index bfdc76aa5..bebff76e4 100644
--- a/glib/gbase64.c
+++ b/glib/gbase64.c
@@ -415,7 +415,7 @@ g_base64_decode_inplace (gchar *text,
*out_len = g_base64_decode_step (text, input_length, (guchar *) text, &state, &save);
- return text;
+ return (guchar *) text;
}
diff --git a/glib/pcre/pcre_ucp_searchfuncs.c b/glib/pcre/pcre_ucp_searchfuncs.c
index 9060fbccd..3e1ed38f1 100644
--- a/glib/pcre/pcre_ucp_searchfuncs.c
+++ b/glib/pcre/pcre_ucp_searchfuncs.c
@@ -43,6 +43,10 @@ POSSIBILITY OF SUCH DAMAGE.
/* This module contains code for searching the table of Unicode character
properties. */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "pcre_internal.h"
#include "ucp.h" /* Category definitions */
diff --git a/glib/pcre/pcre_valid_utf8.c b/glib/pcre/pcre_valid_utf8.c
index a5766b454..b7671a96e 100644
--- a/glib/pcre/pcre_valid_utf8.c
+++ b/glib/pcre/pcre_valid_utf8.c
@@ -1,3 +1,4 @@
+#include "config.h"
#include "pcre_internal.h"
/*
diff --git a/glib/update-pcre/pcre_ucp_searchfuncs.c b/glib/update-pcre/pcre_ucp_searchfuncs.c
index b95d2794c..77ec8d14b 100644
--- a/glib/update-pcre/pcre_ucp_searchfuncs.c
+++ b/glib/update-pcre/pcre_ucp_searchfuncs.c
@@ -43,6 +43,10 @@ POSSIBILITY OF SUCH DAMAGE.
/* This module contains code for searching the table of Unicode character
properties. */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "pcre_internal.h"
#include "ucp.h" /* Category definitions */
diff --git a/glib/update-pcre/pcre_valid_utf8.c b/glib/update-pcre/pcre_valid_utf8.c
index a5766b454..b7671a96e 100644
--- a/glib/update-pcre/pcre_valid_utf8.c
+++ b/glib/update-pcre/pcre_valid_utf8.c
@@ -1,3 +1,4 @@
+#include "config.h"
#include "pcre_internal.h"
/*
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 57f1555f7..da1397643 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -2,18 +2,11 @@ include $(top_srcdir)/Makefile.decl
SUBDIRS=gobject refcount
-if ENABLE_REGEX
-enable_regex = -DENABLE_REGEX
-else
-enable_regex =
-endif
-
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/glib \
-I$(top_srcdir)/gmodule \
- $(GLIB_DEBUG_FLAGS) \
- $(enable_regex)
+ $(GLIB_DEBUG_FLAGS)
AM_CFLAGS = -g
diff --git a/tests/regex-test.c b/tests/regex-test.c
index 2e0005131..6ad9ceb7d 100644
--- a/tests/regex-test.c
+++ b/tests/regex-test.c
@@ -20,6 +20,8 @@
#undef G_DISABLE_ASSERT
#undef G_LOG_DOMAIN
+#include "config.h"
+
#include <string.h>
#include <locale.h>
#include "glib.h"