mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 2/2] lua: Add missing dependency to pthread.
  2018-01-15 11:01 [ptxdist] [PATCH 1/2] lua: Fix dependency to readline Denis OSTERLAND
@ 2018-01-15 11:01 ` Denis OSTERLAND
  0 siblings, 0 replies; 2+ messages in thread
From: Denis OSTERLAND @ 2018-01-15 11:01 UTC (permalink / raw)
  To: ptxdist

liblua depends on pthread.

Signed-off-by: Denis Osterland <Denis.Osterland@diehl.com>
---
 rules/lua.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/rules/lua.in b/rules/lua.in
index 9858002..4491cb3 100644
--- a/rules/lua.in
+++ b/rules/lua.in
@@ -6,6 +6,7 @@ menuconfig LUA
 	select READLINE if BUILDTIME || LUA_INSTALL_LUA
 	select LIBC_M
 	select LIBC_DL
+	select LIBC_PTHREAD
 	help
 	  Lua is a powerful, fast, light-weight, embeddable scripting language.
 	  Lua combines simple procedural syntax with powerful data description
-- 
2.7.4


Diehl AKO Stiftung & Co. KG, Pfannerstraße 75-83, 88239 Wangen im Allgäu
Bereichsvorstand: Dr.-Ing. Michael Siedentop (Sprecher), Josef Fellner (Mitglied)
Sitz der Gesellschaft: Wangen i.A. – Registergericht: Amtsgericht Ulm HRA 620609 – Persönlich haftende Gesellschafterin: Diehl Verwaltungs-Stiftung – Sitz: Nürnberg – Registergericht: Amtsgericht Nürnberg HRA 11756 –
Vorstand: Dr.-Ing. E.h. Thomas Diehl (†) (Vorsitzender), Herr Dipl.-Wirtsch.-Ing. Wolfgang Weggen (stellvertretender Vorsitzender), Dipl.-Kfm. Claus Günther, Dipl.-Kfm. Frank Gutzeit, Dr.-Ing. Heinrich Schunk, Dr.-Ing. Michael Siedentop , Dipl.-Kfm. Dr.-Ing. Martin Sommer, Dipl.-Ing. (FH) Rainer von Borstel, Vorsitzender des Aufsichtsrates: Dr. Klaus Maier
___________________________________________________________________________________________________
Der Inhalt der vorstehenden E-Mail ist nicht rechtlich bindend. Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen.
Informieren Sie uns bitte, wenn Sie diese E-Mail faelschlicherweise erhalten haben. Bitte loeschen Sie in diesem Fall die Nachricht. Jede unerlaubte Form der Reproduktion, Bekanntgabe, Aenderung, Verteilung und/oder Publikation dieser E-Mail ist strengstens untersagt.
The contents of the above mentioned e-mail is not legally binding. This e-mail contains confidential and/or legally protected information. Please inform us if you have received this e-mail by mistake and delete it in such a case. Each unauthorized reproduction, disclosure, alteration, distribution and/or publication of this e-mail is strictly prohibited.

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [ptxdist] [PATCH 1/2] lua: Fix dependency to readline.
@ 2018-01-15 11:01 Denis OSTERLAND
  2018-01-15 11:01 ` [ptxdist] [PATCH 2/2] lua: Add missing dependency to pthread Denis OSTERLAND
  0 siblings, 1 reply; 2+ messages in thread
From: Denis OSTERLAND @ 2018-01-15 11:01 UTC (permalink / raw)
  To: ptxdist

Depend on readline always on build time.
This will not add runtime dependency to lua pkg.
But add runtime dependency, if lua tool gets installed.

Signed-off-by: Denis Osterland <Denis.Osterland@diehl.com>
---
 rules/lua.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/lua.in b/rules/lua.in
index 15c9d71..9858002 100644
--- a/rules/lua.in
+++ b/rules/lua.in
@@ -3,7 +3,7 @@
 menuconfig LUA
 	tristate
 	prompt "lua                           "
-	select READLINE
+	select READLINE if BUILDTIME || LUA_INSTALL_LUA
 	select LIBC_M
 	select LIBC_DL
 	help
-- 
2.7.4


Diehl AKO Stiftung & Co. KG, Pfannerstraße 75-83, 88239 Wangen im Allgäu
Bereichsvorstand: Dr.-Ing. Michael Siedentop (Sprecher), Josef Fellner (Mitglied)
Sitz der Gesellschaft: Wangen i.A. – Registergericht: Amtsgericht Ulm HRA 620609 – Persönlich haftende Gesellschafterin: Diehl Verwaltungs-Stiftung – Sitz: Nürnberg – Registergericht: Amtsgericht Nürnberg HRA 11756 –
Vorstand: Dr.-Ing. E.h. Thomas Diehl (†) (Vorsitzender), Herr Dipl.-Wirtsch.-Ing. Wolfgang Weggen (stellvertretender Vorsitzender), Dipl.-Kfm. Claus Günther, Dipl.-Kfm. Frank Gutzeit, Dr.-Ing. Heinrich Schunk, Dr.-Ing. Michael Siedentop , Dipl.-Kfm. Dr.-Ing. Martin Sommer, Dipl.-Ing. (FH) Rainer von Borstel, Vorsitzender des Aufsichtsrates: Dr. Klaus Maier
___________________________________________________________________________________________________
Der Inhalt der vorstehenden E-Mail ist nicht rechtlich bindend. Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen.
Informieren Sie uns bitte, wenn Sie diese E-Mail faelschlicherweise erhalten haben. Bitte loeschen Sie in diesem Fall die Nachricht. Jede unerlaubte Form der Reproduktion, Bekanntgabe, Aenderung, Verteilung und/oder Publikation dieser E-Mail ist strengstens untersagt.
The contents of the above mentioned e-mail is not legally binding. This e-mail contains confidential and/or legally protected information. Please inform us if you have received this e-mail by mistake and delete it in such a case. Each unauthorized reproduction, disclosure, alteration, distribution and/or publication of this e-mail is strictly prohibited.

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-01-15 11:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-15 11:01 [ptxdist] [PATCH 1/2] lua: Fix dependency to readline Denis OSTERLAND
2018-01-15 11:01 ` [ptxdist] [PATCH 2/2] lua: Add missing dependency to pthread Denis OSTERLAND

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox