diff options
author | naddy <naddy@FreeBSD.org> | 2013-02-14 06:13:23 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2013-02-14 06:13:23 +0800 |
commit | 02df8ae052b8307a762dae5a8a590f633ff120b8 (patch) | |
tree | eac629dc7d848cb7b3e58a9924188834c11d4249 /math/galculator/Makefile | |
parent | c472549844b0e0b2539bbc93e6b427dc19df4500 (diff) | |
download | freebsd-ports-gnome-02df8ae052b8307a762dae5a8a590f633ff120b8.tar.gz freebsd-ports-gnome-02df8ae052b8307a762dae5a8a590f633ff120b8.tar.zst freebsd-ports-gnome-02df8ae052b8307a762dae5a8a590f633ff120b8.zip |
Fix build on systems that happen to have GCC 4.[678] installed.
Submitted by: bf
Diffstat (limited to 'math/galculator/Makefile')
-rw-r--r-- | math/galculator/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/math/galculator/Makefile b/math/galculator/Makefile index d2dde8033289..3484f9c800bb 100644 --- a/math/galculator/Makefile +++ b/math/galculator/Makefile @@ -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> |