The source project of this merge request has been removed.
nsswitch/wscript: don't build wins.c with musl
Avoid building wins.c with musl to avoid the following build failure:
../../nsswitch/wins.c: Dans la fonction « _nss_wins_gethostbyname_r »:
../../nsswitch/wins.c:274:15: error: « NETDB_INTERNAL » non déclaré (première utilisation dans cette fonction); vouliez-vous utiliser « BROWSE_INTERVAL » ?
*h_errnop = NETDB_INTERNAL;
^~~~~~~~~~~~~~
BROWSE_INTERVAL
../../nsswitch/wins.c:274:15: note: chaque identificateur non déclaré est rapporté une seule fois pour chaque fonction dans laquelle il apparaît
../../nsswitch/wins.c:351:14: error: « NETDB_SUCCESS » non déclaré (première utilisation dans cette fonction); vouliez-vous utiliser « EXIT_SUCCESS » ?
*h_errnop = NETDB_SUCCESS;
^~~~~~~~~~~~~
EXIT_SUCCESS
Signed-off-by: Fabrice Fontaine fontaine.fabrice@gmail.com
Edited by Fabrice Fontaine