1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/games/rtb/files/patch-team-framework__stdnamespace.h
Pawel Pekala adb0fd3a7e - Fix build on -current
- Update MASTER_SITES
- Add LICENSE
- Add DESKTOP_ENTRIES
- Support staging

PR:		ports/184825
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-12-19 18:36:43 +00:00

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