aboutsummaryrefslogtreecommitdiffstats
path: root/site
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2009-08-14 15:42:21 -0700
committerKhem Raj <raj.khem@gmail.com>2009-08-14 15:42:21 -0700
commitad9bb3dc5afecf1f4bacff640bfc012f3e761aea (patch)
treef9c340f4990105803edf9b8e145a7cf891d4816c /site
parent068abe84a77017a3af8e6d32916e6971fbb9a958 (diff)
downloadopenembedded-ad9bb3dc5afecf1f4bacff640bfc012f3e761aea.tar.gz
common-uclibc: Unset guile_cv_use_csqrt for guile
guile's configure is not smart to guess if csqrt works in a cross compile environment so it ends up assuming that it works and fails to link. Anyways for uclibc complex functions are unimplemented so we help configure by unsetting here in site file for uclibc. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'site')
-rw-r--r--site/common-uclibc3
1 files changed, 3 insertions, 0 deletions
diff --git a/site/common-uclibc b/site/common-uclibc
index c304add38e..4a8557bced 100644
--- a/site/common-uclibc
+++ b/site/common-uclibc
@@ -23,3 +23,6 @@ ac_cv___va_copy=${ac_cv___va_copy=yes}
ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=yes}
ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes}
+
+# guile
+guile_cv_use_csqrt=${guile_cv_use_csqrt=no}