Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Dec 2013 08:07:57 +0000 (UTC)
From:      Vasil Dimov <vd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r335459 - head/graphics/hugin/files
Message-ID:  <201312020807.rB287v4T017385@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vd
Date: Mon Dec  2 08:07:56 2013
New Revision: 335459
URL: http://svnweb.freebsd.org/changeset/ports/335459

Log:
  Followup to r335410: use !defined(_LIBCPP_VERSION) instead
  of !defined(__clang__).
  
  Submitted by:	tijl@

Modified:
  head/graphics/hugin/files/patch-src__hugin1__icpfind__AutoCtrlPointCreator.cpp

Modified: head/graphics/hugin/files/patch-src__hugin1__icpfind__AutoCtrlPointCreator.cpp
==============================================================================
--- head/graphics/hugin/files/patch-src__hugin1__icpfind__AutoCtrlPointCreator.cpp	Mon Dec  2 08:05:23 2013	(r335458)
+++ head/graphics/hugin/files/patch-src__hugin1__icpfind__AutoCtrlPointCreator.cpp	Mon Dec  2 08:07:56 2013	(r335459)
@@ -5,7 +5,7 @@
  
  #include <fstream>
 -#ifdef __GNUC__
-+#if defined(__GNUC__) && !defined(__clang__)
++#if defined(__GNUC__) && !defined(_LIBCPP_VERSION)
  #include <ext/stdio_filebuf.h>
  #endif
  



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