Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: Makefile.plugins

Issue 5338008: flimflam: Enable -Wimplicit-function-declaration. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 plugin_cflags = -Werror -fvisibility=hidden -I$(srcdir)/gdbus \ 2 plugin_cflags = -Wimplicit-function-declaration -Werror -fvisibility=hidden \
Jason Glasgow 2010/11/29 20:11:30 Why not -Wall ?
Elly Fong-Jones 2010/11/29 20:40:29 Too many warnings to fix in this CL.
3 » » » » » @DBUS_CFLAGS@ @GLIB_CFLAGS@ 3 » » » » » -I$(srcdir)/gdbus @DBUS_CFLAGS@ \
4 » » » » » @GLIB_CFLAGS@
4 plugin_ldflags = -no-undefined -module -avoid-version 5 plugin_ldflags = -no-undefined -module -avoid-version
5 6
6 7
7 if LOOPBACK 8 if LOOPBACK
8 if LOOPBACK_BUILTIN 9 if LOOPBACK_BUILTIN
9 builtin_modules += loopback 10 builtin_modules += loopback
10 builtin_sources += plugins/loopback.c 11 builtin_sources += plugins/loopback.c
11 else 12 else
12 plugin_LTLIBRARIES += plugins/loopback.la 13 plugin_LTLIBRARIES += plugins/loopback.la
13 plugin_objects += $(plugins_loopback_la_OBJECTS) 14 plugin_objects += $(plugins_loopback_la_OBJECTS)
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 endif 332 endif
332 endif 333 endif
333 endif 334 endif
334 335
335 EXTRA_DIST += plugins/polkit.policy scripts/dhclient.conf 336 EXTRA_DIST += plugins/polkit.policy scripts/dhclient.conf
336 337
337 plugins/flimflam.policy: plugins/polkit.policy 338 plugins/flimflam.policy: plugins/polkit.policy
338 if POLKIT 339 if POLKIT
339 $(AM_V_GEN)cp $< $@ 340 $(AM_V_GEN)cp $< $@
340 endif 341 endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698