Makefile.flags: survive a build system which has no pthread
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 4 Sep 2015 02:20:51 +0000 (04:20 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 4 Sep 2015 02:20:51 +0000 (04:20 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Makefile.flags

index bb90a08decf9473d16fcfda103d22084f3ebf2e7..b29b06839f82fae3b0d657201ef1ed4e2a827520 100644 (file)
@@ -121,11 +121,16 @@ endif
 # fall back to using a temp file:
 CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >crypttest.c; $(CC) $(CFLAGS) -lcrypt -o /dev/null crypttest.c >/dev/null 2>&1 && echo "y"; rm crypttest.c)
 ifeq ($(CRYPT_AVAILABLE),y)
-LDLIBS += m crypt pthread
+LDLIBS += m crypt
 else
 LDLIBS += m
 endif
 
+PTHREAD_AVAILABLE := $(shell echo 'int main(void){return 0;}' >pthreadtest.c; $(CC) $(CFLAGS) -lpthread -o /dev/null pthreadtest.c >/dev/null 2>&1 && echo "y"; rm pthreadtest.c)
+ifeq ($(PTHREAD_AVAILABLE),y)
+LDLIBS += pthread
+endif
+
 ifeq ($(CONFIG_PAM),y)
 # libpam uses libpthread, libdl and libaudit, so for static builds busybox
 # must be linked to libpthread, libdl and libaudit. On some platforms that