diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/main.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bc12d0900..8678e6f98 100644 --- a/configure.ac +++ b/configure.ac @@ -274,7 +274,7 @@ AC_CHECK_LIB(nsl,gethostbyname,MPD_LIBS="$MPD_LIBS -lnsl",) AC_CHECK_LIB(m,exp,MPD_LIBS="$MPD_LIBS -lm",) AC_CHECK_FUNCS(setenv) -PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4],, +PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4 gthread-2.0],, [AC_MSG_ERROR([glib-2.4 is required])]) dnl doesn't work for systems that don't have CODESET like OpenBSD diff --git a/src/main.c b/src/main.c index 79b17cda5..e1fc96bdc 100644 --- a/src/main.c +++ b/src/main.c @@ -382,6 +382,9 @@ int main(int argc, char *argv[]) Options options; clock_t start; + /* enable GLib's thread safety code */ + g_thread_init(NULL); + initConf(); parseOptions(argc, argv, &options); |