summaryrefslogtreecommitdiff
path: root/package/gauche
diff options
context:
space:
mode:
authorkei-k@ca2.so-net.ne.jp <kei-k@ca2.so-net.ne.jp>2015-11-18 18:30:23 +0900
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-11-18 21:56:58 +0100
commite9b415ace06b416a5743c97e13f4fd7df9666d85 (patch)
tree55e5e8980ff634ced6a03847ace4728699dfeef0 /package/gauche
parentb59169d1744bd8ead6481deb48cea55850870c00 (diff)
package/gauche: fix build error on BR2_STATIC_LIBS
Building gauche depends on dynamic link, so add dependency on !BR2_STATIC_LIBS. Fix: http://autobuild.buildroot.org/results/da5/da5b9605552d4914c5e6f0d890367b92536419c1 Signed-off-by: Hiroshi Kawashima <kei-k@ca2.so-net.ne.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gauche')
-rw-r--r--package/gauche/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/gauche/Config.in b/package/gauche/Config.in
index 54a0be243..fd0617acc 100644
--- a/package/gauche/Config.in
+++ b/package/gauche/Config.in
@@ -13,6 +13,7 @@ config BR2_PACKAGE_GAUCHE
depends on BR2_USE_MMU # fork()
depends on BR2_ARCH_HAS_ATOMICS
depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS
+ depends on !BR2_STATIC_LIBS
help
Gauche is an R7RS Scheme implementation developed to be a
handy script interpreter, which allows programmers and
@@ -23,8 +24,8 @@ config BR2_PACKAGE_GAUCHE
http://practical-scheme.net/gauche/
-comment "gauche needs a toolchain w/ NPTL"
+comment "gauche needs a toolchain w/ NPTL, dynamic library"
depends on BR2_USE_MMU
depends on BR2_ARCH_HAS_ATOMICS
depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS
- depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
+ depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS