svn commit: r335459 - head/graphics/hugin/files
Vasil Dimov
vd at FreeBSD.org
Mon Dec 2 08:07:57 UTC 2013
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
More information about the svn-ports-all
mailing list