Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Feb 2013 22:13:23 +0000 (UTC)
From:      Christian Weisgerber <naddy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312185 - head/math/galculator
Message-ID:  <201302132213.r1DMDNI1042137@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: naddy
Date: Wed Feb 13 22:13:23 2013
New Revision: 312185
URL: http://svnweb.freebsd.org/changeset/ports/312185

Log:
  Fix build on systems that happen to have GCC 4.[678] installed.
  
  Submitted by:	bf

Modified:
  head/math/galculator/Makefile

Modified: head/math/galculator/Makefile
==============================================================================
--- head/math/galculator/Makefile	Wed Feb 13 22:08:34 2013	(r312184)
+++ head/math/galculator/Makefile	Wed Feb 13 22:13:23 2013	(r312185)
@@ -17,6 +17,10 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 CONFIGURE_ARGS=	--disable-gtk3
 MAKE_JOBS_SAFE=	yes
 
+# The existence of libquadmath with sinhq() on a system does not
+# guarantee that the compiler actually supports GCC libquadmath.
+CONFIGURE_ENV=	ac_cv_lib_quadmath_sinhq=no
+
 MAN1=		galculator.1
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302132213.r1DMDNI1042137>