1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00

Followup to r335410: use !defined(_LIBCPP_VERSION) instead

of !defined(__clang__).

Submitted by:	tijl@
This commit is contained in:
Vasil Dimov 2013-12-02 08:07:56 +00:00
parent 25c7d46162
commit f4fb3cabeb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=335459

View File

@ -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