From d5dfe7d457b559bd9c53d65d0315c55611cc6a79 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 15 Dec 2013 12:32:15 +0100 Subject: configure.ac: add option "--disable-glib" Allows building without GLib. This fails to compile currently, because GLib is still used in the MPD core. --- test/run_decoder.cxx | 4 ++++ test/run_input.cxx | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'test') diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index 7db8dde22..56ef2068d 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -29,7 +29,9 @@ #include "Log.hxx" #include "stdbin.h" +#ifdef HAVE_GLIB #include +#endif #include #include @@ -192,8 +194,10 @@ int main(int argc, char **argv) decoder_name = argv[1]; decoder.uri = argv[2]; +#ifdef HAVE_GLIB #if !GLIB_CHECK_VERSION(2,32,0) g_thread_init(NULL); +#endif #endif g_log_set_default_handler(my_log_func, NULL); diff --git a/test/run_input.cxx b/test/run_input.cxx index 3817ed418..23316b7c6 100644 --- a/test/run_input.cxx +++ b/test/run_input.cxx @@ -33,7 +33,9 @@ #include "ArchiveList.hxx" #endif +#ifdef HAVE_GLIB #include +#endif #include #include @@ -120,8 +122,10 @@ int main(int argc, char **argv) /* initialize GLib */ +#ifdef HAVE_GLIB #if !GLIB_CHECK_VERSION(2,32,0) g_thread_init(NULL); +#endif #endif g_log_set_default_handler(my_log_func, NULL); -- cgit v1.2.3