Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] freetype: add some dependencies
@ 2014-12-14  0:07 Steve Kenton
  2014-12-17 13:07 ` Gustavo Zacarias
  0 siblings, 1 reply; 3+ messages in thread
From: Steve Kenton @ 2014-12-14  0:07 UTC (permalink / raw)
  To: buildroot

freetype needs fenv.h which is not available on uClibc except for x86, add dependencies

Signed-off-by Stephen M. Kenton <skenton@ou.edu>
---
Modeled on the python-numpy solution to the same fenv.h problem
diff -ru buildroot/package/freetype/Config.in buildroot.modified/package/freetype/Config.in
--- buildroot/package/freetype/Config.in	2014-12-13 17:45:34.547751176 -0600
+++ buildroot.modified/package/freetype/Config.in	2014-12-13 17:43:32.723748839 -0600
@@ -1,5 +1,8 @@
 config BR2_PACKAGE_FREETYPE
 	bool "freetype"
+	# freetype needs fenv.h. Available for all architectures in
+	# glibc, but only for x86 and x86-64 in uClibc.
+	depends on !BR2_TOOLCHAIN_USES_UCLIBC || BR2_i386 || BR2_x86_64
 	help
 	  a free, high-quality and portable font engine.

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

end of thread, other threads:[~2014-12-17 15:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-14  0:07 [Buildroot] [PATCH] freetype: add some dependencies Steve Kenton
2014-12-17 13:07 ` Gustavo Zacarias
2014-12-17 15:15   ` Steve Kenton

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