diff options
author | brahmajit das <brahmajit.xyz@gmail.com> | 2022-06-21 11:18:08 +0530 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-24 06:26:09 +0100 |
commit | 9923d7331d1189316726fcab47ba89a2623f82ab (patch) | |
tree | 0ef2d5d4bee1999f158a393f7520795895f5a1ed /net-fs/samba/files | |
parent | sys-apps/pciutils: add note re emerge -v1 binutils (diff) | |
download | gentoo-9923d7331d1189316726fcab47ba89a2623f82ab.tar.gz gentoo-9923d7331d1189316726fcab47ba89a2623f82ab.tar.bz2 gentoo-9923d7331d1189316726fcab47ba89a2623f82ab.zip |
net-fs/samba: Apply the netdb defines patch
NETDB_INTERNAL and NETDB_INTERNAL are not defined in musl as a result
the build is failing.
Acked-by: David Seifert <soap@gentoo.org>
Closes: https://bugs.gentoo.org/835017
Closes: https://bugs.gentoo.org/832629
Signed-off-by: brahmajit das <brahmajit.xyz@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26016
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-fs/samba/files')
-rw-r--r-- | net-fs/samba/files/samba-4.16.1-netdb-defines.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-fs/samba/files/samba-4.16.1-netdb-defines.patch b/net-fs/samba/files/samba-4.16.1-netdb-defines.patch new file mode 100644 index 000000000000..40aeaa22bfae --- /dev/null +++ b/net-fs/samba/files/samba-4.16.1-netdb-defines.patch @@ -0,0 +1,21 @@ +# Define NETDB_INTERNAL and NETDB_SUCCESS if they are not defined +# +# Gentoo bug 832629 and 835017 + +--- a/nsswitch/wins.c ++++ b/nsswitch/wins.c +@@ -40,6 +40,14 @@ static pthread_mutex_t wins_nss_mutex = PTHREAD_MUTEX_INITIALIZER; + #define INADDRSZ 4 + #endif + ++#ifndef NETDB_INTERNAL ++#define NETDB_INTERNAL -1 ++#endif ++ ++#ifndef NETDB_SUCCESS ++#define NETDB_SUCCESS 0 ++#endif ++ + _PUBLIC_ON_LINUX_ + NSS_STATUS _nss_wins_gethostbyname_r(const char *hostname, + struct hostent *he, |