diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-10-25 17:44:19 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-10-26 17:21:02 +0800 |
commit | e13f9d39a868176022b9fba9e1c17a560937e7a5 (patch) | |
tree | 4c38f1ec41928044b25540f9c736dc45646d0979 | |
parent | 4d4547dd8d04c8f0a3bd2b7a267bf063e73bdc52 (diff) | |
download | gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar.gz gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar.bz2 gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar.lz gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar.xz gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.tar.zst gsoc2013-empathy-e13f9d39a868176022b9fba9e1c17a560937e7a5.zip |
Include config.h in a bunch of files
They use deprecated API (g_mutex_new) but we still want to use it for now so
they need to have GLIB_DISABLE_DEPRECATION_WARNINGS defined.
-rw-r--r-- | src/empathy-audio-src.c | 1 | ||||
-rw-r--r-- | src/empathy-call-window.c | 1 | ||||
-rw-r--r-- | src/empathy-streamed-media-window.c | 1 | ||||
-rw-r--r-- | src/empathy-video-widget.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy-audio-src.c b/src/empathy-audio-src.c index 6378dd009..cce038088 100644 --- a/src/empathy-audio-src.c +++ b/src/empathy-audio-src.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 386ba11b4..28e6577e2 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/empathy-streamed-media-window.c b/src/empathy-streamed-media-window.c index d60c0753b..7741c7d91 100644 --- a/src/empathy-streamed-media-window.c +++ b/src/empathy-streamed-media-window.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/empathy-video-widget.c b/src/empathy-video-widget.c index 492e192fa..ec26f1949 100644 --- a/src/empathy-video-widget.c +++ b/src/empathy-video-widget.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include <stdio.h> #include <stdlib.h> |