* [Buildroot] [PATCH 1/1] package/php: Add -lpthread to detect unixodbc for static build
@ 2015-05-30 20:51 Bernd Kuhls
2015-05-31 8:33 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2015-05-30 20:51 UTC (permalink / raw)
To: buildroot
Fixes
http://autobuild.buildroot.net/results/157/157749f8b44bc02fbed0232a2b33137aba495134/
http://autobuild.buildroot.net/results/df4/df4e2ea098b0126867455af1891837c6d7d99a92/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/php/php.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/php/php.mk b/package/php/php.mk
index 9be07d5..8e79c49 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -225,6 +225,9 @@ 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),y)
+PHP_CONF_ENV += LIBS='-lpthread'
+endif
endif
endif
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] package/php: Add -lpthread to detect unixodbc for static build
2015-05-30 20:51 [Buildroot] [PATCH 1/1] package/php: Add -lpthread to detect unixodbc for static build Bernd Kuhls
@ 2015-05-31 8:33 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2015-05-31 8:33 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 30 May 2015 22:51:33 +0200, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/157/157749f8b44bc02fbed0232a2b33137aba495134/
> http://autobuild.buildroot.net/results/df4/df4e2ea098b0126867455af1891837c6d7d99a92/
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/php/php.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/php/php.mk b/package/php/php.mk
> index 9be07d5..8e79c49 100644
> --- a/package/php/php.mk
> +++ b/package/php/php.mk
> @@ -225,6 +225,9 @@ 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),y)
> +PHP_CONF_ENV += LIBS='-lpthread'
What happens if you have multiple of such occurrences? You will pass
LIBS='-lfoo' LIBS='-lbar', etc.
Shouldn't we instead do:
PHP_LIBS += -lpthread
and then later, a single PHP_CONF_ENV += LIBS=$(PHP_LIBS)
Also, it's a shame unixodbc doesn't use pkg-config. It installs its own
odbc-config, but I guess it's compiled for the target, and most likely
returns results that are inappropriate for cross compilation.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-05-31 8:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-30 20:51 [Buildroot] [PATCH 1/1] package/php: Add -lpthread to detect unixodbc for static build Bernd Kuhls
2015-05-31 8:33 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox