]> git.tdb.fi Git - pmount-gui.git/commitdiff
Pass -Wno-variadic-macros to the compiler
authorMikko Rasa <tdb@tdb.fi>
Thu, 25 Feb 2016 20:13:46 +0000 (22:13 +0200)
committerMikko Rasa <tdb@tdb.fi>
Thu, 25 Feb 2016 20:13:46 +0000 (22:13 +0200)
Glib headers contain variadic macros, which are not allowed by the C90
standard.

Makefile

index 1632770d0e08e7a6358236989f962422d6ff1d5c..46143131d830182bc478ae0bc15ccf6b3dcb9272 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,2 @@
 pmount-gui: main.c
-       $(CC) -Wall -Wextra -std=c90 -pedantic -o $@ $^ $(shell pkg-config --cflags --libs gtk+-2.0)
+       $(CC) -Wall -Wextra -std=c90 -pedantic -Wno-variadic-macros -ggdb -o $@ $^ $(shell pkg-config --cflags --libs gtk+-2.0)