summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2012-07-08 22:01:03 -0400
committerRyan Lortie <desrt@desrt.ca>2012-07-08 22:45:03 -0400
commit571918ab8d3147861e5525d4dee869024099af02 (patch)
tree693b921b4ff4fdfad7b9d4c32739b5c448a91770 /bin
parentd56a9ce678101d6dc66e0d322d5f33e04bbc98fc (diff)
downloaddconf-571918ab8d3147861e5525d4dee869024099af02.tar.gz
clean up C compiler warnings
Disable C compiler warnings entirely while building Vala code. Fix-up a couple of legitimate issues plus one false-positive (in service.c).
Diffstat (limited to 'bin')
-rw-r--r--bin/Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/Makefile.am b/bin/Makefile.am
index b500f7a..d246cdd 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -6,7 +6,9 @@ bin_PROGRAMS = dconf
dconf_VALAFLAGS = --vapidir ../client --pkg=gio-2.0 --pkg=posix --pkg=dconf
-dconf_CFLAGS = $(gio_CFLAGS)
+dconf_CFLAGS = \
+ $(gio_CFLAGS) \
+ -w
dconf_LDADD = \
../client/libdconf.so.0 \