svn commit: r307321 - head/textproc/html2text/files

Eitan Adler eadler at FreeBSD.org
Sun Nov 11 15:33:18 UTC 2012


Author: eadler
Date: Sun Nov 11 15:33:02 2012
New Revision: 307321
URL: http://svnweb.freebsd.org/changeset/ports/307321

Log:
  Make html2text play nice with CXX.
  
  This is a build only fix, so no PORTREVISION bump.
  
  Reported by:	peter
  Feature safe:	yes

Added:
  head/textproc/html2text/files/
  head/textproc/html2text/files/patch-configure   (contents, props changed)

Added: head/textproc/html2text/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/html2text/files/patch-configure	Sun Nov 11 15:33:02 2012	(r307321)
@@ -0,0 +1,12 @@
+--- ./configure.orig	2012-11-11 09:42:22.000000000 -0500
++++ ./configure	2012-11-11 09:46:01.000000000 -0500
+@@ -38,8 +38,7 @@
+   return 0;
+ }
+ EOF
+-CXX=unknown;
+-for i in "CC" "g++" "cc" "$CC"; do
++for i in "$CXX" "c++"; do
+   if $i -c $tmp_file.C 2>/dev/null; then
+     CXX="$i";
+     break;


More information about the svn-ports-head mailing list