ports/comms/hamlib/files/patch-configure.ac
Diane Bruce 67953da928 As stated by Kyle Evans <bsdports@kyle-evans.net>
"As in PR 196937, comms/hamlib fails to detect C++ compiler under emulation.
A patch for this was introduced in r377901 and then removed in r398432,
but I suspect it was still needed. I think the proper solution is to
re-introduce the patch that was removed, but I can't properly test it
myself because I'm failing to rebuild my arm.armv6 poudriere jail."

re-introduce missing diff
portlint again
redo checksum

PR:		ports/217972
Reported by:	Kyle Evans <bsdports@kyle-evans.net>
Reviewed by:	mikael.urankar@gmail.com
2017-03-25 13:21:49 +00:00

11 lines
332 B
Text

--- configure.ac.orig 2016-12-31 20:01:25 UTC
+++ configure.ac
@@ -87,7 +87,7 @@ AC_PROG_INSTALL
AC_PROG_LN_S
# TODO: check whether CXX is functional
-AC_CHECK_PROG([cf_with_cxx], ["${CXX}"], [yes], [no])
+AC_PATH_PROG([cf_with_cxx], ["${CXX}"], [yes], [no])
AM_CONDITIONAL([ENABLE_CXX], [test x"${cf_with_cxx}" = "xyes"])