mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
Clang/libc++ on FreeBSD 10. This fixes a crash caused by the use of libstdc++ while dependencies used libc++. Approved by: maho (maintainer)
11 lines
231 B
Text
11 lines
231 B
Text
--- configure.orig 2013-02-21 21:21:49.000000000 +0100
|
|
+++ configure 2013-11-22 20:34:49.000000000 +0100
|
|
@@ -58248,7 +58248,7 @@
|
|
main ()
|
|
{
|
|
|
|
- std::unordered_map m;
|
|
+ std::unordered_map<int, int> m;
|
|
|
|
;
|
|
return 0;
|