From: Bernd Kuhls Date: Sun, 29 Nov 2015 13:55:51 +0000 (+0100) Subject: package/php: Always link with libpthread for static builds X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aee53f8b6f29916ca5d322f793828c24874459d5;p=buildroot.git package/php: Always link with libpthread for static builds Fixes http://autobuild.buildroot.net/results/c9f/c9fb2b4a25817d6455472767819018a62281d5f9/ http://autobuild.buildroot.net/results/a75/a757edcfce00d3e52c6787f28dc31cbaf8d2d2ab/ http://autobuild.buildroot.net/results/8df/8df836b6c241954449544c7b4c74a1cb19e7ff7b/ http://autobuild.buildroot.net/results/1b6/1b6e571e307c2b190116601bade382c43e8d3858/ http://autobuild.buildroot.net/results/aa3/aa34b2326a0702093162eb1f9d7bdf9c7cf45311/ http://autobuild.buildroot.net/results/74a/74ae21d78f7ea9d71407accd3e43900af6766e68/ http://autobuild.buildroot.net/results/7ec/7ec28c23b3f12e5b7e2376c7913329d2a38dd232/ Signed-off-by: Bernd Kuhls Acked-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/php/php.mk b/package/php/php.mk index 5f87d0799c..5bdd04ee6e 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -29,6 +29,10 @@ ifeq ($(BR2_STATIC_LIBS),y) PHP_CONF_ENV += LIBS="$(PHP_STATIC_LIBS)" endif +ifeq ($(BR2_STATIC_LIBS)$(BR2_TOOLCHAIN_HAS_THREADS),yy) +PHP_STATIC_LIBS += -lpthread +endif + ifeq ($(BR2_TARGET_LOCALTIME),) PHP_LOCALTIME = UTC else @@ -209,9 +213,6 @@ endif ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_UNIXODBC),y) PHP_CONF_OPTS += --with-pdo-odbc=unixODBC,$(STAGING_DIR)/usr PHP_DEPENDENCIES += unixodbc -ifeq ($(BR2_STATIC_LIBS)$(BR2_TOOLCHAIN_HAS_THREADS),yy) -PHP_STATIC_LIBS += -lpthread -endif endif endif