From: Paul Brossier Date: Sun, 12 Mar 2017 14:39:48 +0000 (+0100) Subject: src/aubio_setup.c: add a warning if compiling without pthread X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=f6fa7fb8d23719d1bcbf1d3f48751db65ea997d4;p=pd-aubio.git src/aubio_setup.c: add a warning if compiling without pthread --- diff --git a/src/aubio_setup.c b/src/aubio_setup.c index 5b25d03..b932688 100644 --- a/src/aubio_setup.c +++ b/src/aubio_setup.c @@ -6,6 +6,8 @@ #ifdef HAVE_PTHREAD #include pthread_mutex_t aubio_log_mutex; +#else +#warning "Not using thread lock for logging" #endif char aubio_version[] = "aubio external for pd, version " PACKAGE_VERSION;