aboutsummaryrefslogtreecommitdiffstats
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation issue on OS X 10.9Brian Jensen2013-11-181-0/+10
| | | | | | | | | | | | Starting with OS X 10.9 the system toolchain defaults to libc++. This is a problem with the current sparse hash config as it defaults to using c++11 functionality under the std::tr1 namespace instead of std, which fails for libc++ since it does not implement the tr1 namespace. This change allows libc++ based systems to use the correct namespace. Change-Id: Ia8dd49fb5fad2915f41e44240e45a7af9d6453a8 Reviewed-by: John Ehresman <jpe@wingware.com>
* Fix bug 801 - "Shiboken doesn't compile with G++ 4.6.0"Hugo Parente Lima2012-03-081-3/+3
|
* use MSVC flag to detect the compiler on hash library.Renato Filho2010-08-191-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Used the define MSVC in goggle hash to compile with native windows API.Renato Filho2010-08-191-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix location of tr1's hash functions and namespace on msvc.Hugo Lima2009-11-241-8/+15
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Use google dense hash table instead of std::map in BindingManager.Hugo Lima2009-11-187-0/+1967
Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>