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:
parent
25c7d46162
commit
f4fb3cabeb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=335459
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user