pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/guile guile's configure script is buggy as it ass...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/da580079d40c
branches:  trunk
changeset: 529917:da580079d40c
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Jun 12 19:49:28 2007 +0000

description:
guile's configure script is buggy as it assumes that cexp and clog
are present if the complex.h header exists. csqrt on the contrary
is actively checked. For now, disable complex double handling on
DragonFly to work around this.

diffstat:

 lang/guile/Makefile |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 90a936e4b635 -r da580079d40c lang/guile/Makefile
--- a/lang/guile/Makefile       Tue Jun 12 19:14:10 2007 +0000
+++ b/lang/guile/Makefile       Tue Jun 12 19:49:28 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2007/06/12 03:02:33 dmcmahill Exp $
+# $NetBSD: Makefile,v 1.74 2007/06/12 19:49:28 joerg Exp $
 
 DISTNAME=              guile-1.8.1
 CATEGORIES=            lang
@@ -41,6 +41,9 @@
        echo "(define-module (ice-9 slib))" > ${WRKSRC}/ice-9/slib.scm
        echo "(load-from-path \"slib/guile.init\")" >> ${WRKSRC}/ice-9/slib.scm 
 
+.if ${OPSYS} == "DragonFly"
+CONFIGURE_ARGS+=       ac_cv_type_complex_double=no
+.endif
 
 .if ${OPSYS} == "Darwin"
 CPPFLAGS+=             -Dmacosx



Home | Main Index | Thread Index | Old Index