mkhash: fix build errors on FreeBSD 13.0
authorGeorgi Valkov <gvalkov@abv.bg>
Thu, 3 Mar 2022 15:04:38 +0000 (17:04 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sat, 5 Mar 2022 17:01:04 +0000 (18:01 +0100)
be64enc, be16dec, and be32dec are declared on FreeBSD 13.0, in
/usr/include/sys/endian.h so we should not declare them.

Fixes the following error during feeds update:
staging_dir/host/bin/mkhash: No such file or directory

gcc scripts/mkhash.c
scripts/mkhash.c:111:1: error: redefinition of 'be64enc'
  111 | be64enc(void *buf, uint64_t u)

Signed-off-by: Georgi Valkov <gvalkov@abv.bg>
scripts/mkhash.c

index ed3d42d4c35c2dc6d8c165fc386c4be8f90d77bf..a28d5fd5372ff396d7c289e64a8a36345b1a05d0 100644 (file)
@@ -105,7 +105,6 @@ be32enc(void *buf, uint32_t u)
        p[2] = ((uint8_t) ((u >> 8) & 0xff));
        p[3] = ((uint8_t) (u & 0xff));
 }
-#endif
 
 static void
 be64enc(void *buf, uint64_t u)
@@ -132,6 +131,7 @@ be32dec(const void *buf)
 
        return (((uint32_t) be16dec(p)) << 16) | be16dec(p + 2);
 }
+#endif
 
 #define MD5_DIGEST_LENGTH      16