Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Nov 2012 15:33:03 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307321 - head/textproc/html2text/files
Message-ID:  <201211111533.qABFX34X015290@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



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