mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
adb0fd3a7e
- Update MASTER_SITES - Add LICENSE - Add DESKTOP_ENTRIES - Support staging PR: ports/184825 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
17 lines
430 B
C++
17 lines
430 B
C++
--- team-framework/stdnamespace.h.orig
|
|
+++ team-framework/stdnamespace.h
|
|
@@ -25,9 +25,13 @@
|
|
|
|
**************************************************************************/
|
|
|
|
+#if !defined(_LIBCPP_VERSION)
|
|
#include <iosfwd> // This file contains the forward declaration in particular of std::string
|
|
|
|
namespace std
|
|
{
|
|
template <class _Tp> class auto_ptr; // Origin: The header file <memory>
|
|
}
|
|
+#else
|
|
+#include <memory>
|
|
+#endif
|