robin_hood: Update to version 3.11.3

The only difference with upstream is that we keep std::malloc() as
malloc() to avoid issues with gnulib that sometimes redefine malloc to
rpl_malloc with a macro without defining std::rpl_malloc.

* spot/priv/robin_hood.hh, debian/copyright: Update.
* spot/priv/Makefile.am (update): Rename std::malloc to malloc.
This commit is contained in:
Alexandre Duret-Lutz 2021-09-15 22:05:28 +02:00
parent 42ff02585b
commit 830f68b3b9
3 changed files with 956 additions and 482 deletions

View file

@ -1,6 +1,6 @@
## -*- coding: utf-8 -*-
## Copyright (C) 2013-2019 Laboratoire de Recherche et Développement
## de l'Epita (LRDE).
## Copyright (C) 2013-2019, 2021 Laboratoire de Recherche et
## Développement de l'Epita (LRDE).
##
## This file is part of Spot, a model checking library.
##
@ -41,5 +41,6 @@ GH = https://raw.githubusercontent.com/martinus
RH = $(GH)/robin-hood-hashing/master/src/include/robin_hood.h
.PHONY: update
update:
wget $(RH) -O $(srcdir)/robin_hood.hh || \
curl $(RH) -o $(srcdir)/robin_hood.hh
wget $(RH) -O robin_hood.tmp || curl $(RH) -o robin_hood.tmp
sed 's/std::malloc/malloc/' robin_hood.tmp > $(srcdir)/robin_hood.hh
rm -f robin_hood.tmp

File diff suppressed because it is too large Load diff