mbox series

[v2,0/2] hostapd/wpa_s: fix static build issue with zlib-ng

Message ID 20220916210059.2395129-1-geomatsi@gmail.com
Headers show
Series hostapd/wpa_s: fix static build issue with zlib-ng | expand

Message

Sergey Matyukevich Sept. 16, 2022, 9 p.m. UTC
Hi all,

Both zlib-ng and hostapd/wpa_supplicant define functions with the same
name 'crc32'. Buildroot autobuilder detected configurations that failed
to build due to the naming conflict between hostapd and zlib-ng.

This patch series applies appropriate hostapd upstream fix that renames
'crc32' function to a less generic name, see:
http://w1.fi/cgit/hostap/commit/?id=0c7b3814ca6070a8e930dea09fde08b4058a4ca6

Regards,
Sergey

v1 -> v2
- replace weird Kconfig dependencies by upstream hostapd patch

Sergey Matyukevich (2):
  package/hostapd: fix static build issue with zlib-ng
  package/wpa_supplicant: fix static build issue with zlib-ng

 ...ic-name-for-IEEE802.11-CRC-32-routin.patch | 101 ++++++++++++++++++
 ...se-a-less-generic-name-for-IEEE802.1.patch |  78 ++++++++++++++
 2 files changed, 179 insertions(+)
 create mode 100644 package/hostapd/0001-use-a-less-generic-name-for-IEEE802.11-CRC-32-routin.patch
 create mode 100644 package/wpa_supplicant/0002-wpa_supplicant-use-a-less-generic-name-for-IEEE802.1.patch

Comments

Thomas Petazzoni Oct. 31, 2022, 12:19 p.m. UTC | #1
Hello Sergey,

On Sat, 17 Sep 2022 00:00:57 +0300
Sergey Matyukevich <geomatsi@gmail.com> wrote:

> This patch series applies appropriate hostapd upstream fix that renames
> 'crc32' function to a less generic name, see:
> http://w1.fi/cgit/hostap/commit/?id=0c7b3814ca6070a8e930dea09fde08b4058a4ca6

Thanks for pushing it upstream! This link should have been added in
each patch, so that we know their upstream status.

I fixed that up and applied both patches. Once again, many thanks!

Thomas