svn commit: r312185 - head/math/galculator

Christian Weisgerber naddy at FreeBSD.org
Wed Feb 13 22:13:24 UTC 2013


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>


More information about the svn-ports-head mailing list