Re: [PATCH v2 13/22] libtasn1: changes for grub compatibility

2022-04-21 Thread Daniel Axtens
Stefan Berger writes: > On 6/30/21 4:40 AM, Daniel Axtens wrote: >> Do a few things to make libtasn1 compile as part of grub: >> >> - redefine _asn1_strcat. grub removed strcat so replace it with the >> appropriate calls to memcpy and strlen. Use this internally where >> strcat was

Re: [PATCH v2 13/22] libtasn1: changes for grub compatibility

2021-07-12 Thread Stefan Berger
On 6/30/21 4:40 AM, Daniel Axtens wrote: Do a few things to make libtasn1 compile as part of grub: - redefine _asn1_strcat. grub removed strcat so replace it with the appropriate calls to memcpy and strlen. Use this internally where strcat was used. - replace c_isdigit with

[PATCH v2 13/22] libtasn1: changes for grub compatibility

2021-06-30 Thread Daniel Axtens
Do a few things to make libtasn1 compile as part of grub: - redefine _asn1_strcat. grub removed strcat so replace it with the appropriate calls to memcpy and strlen. Use this internally where strcat was used. - replace c_isdigit with grub_isdigit (and don't import c-ctype from gnulib)