Thanks for the pull request. This should already taken care of it in the current
versions:
/*
* Older glibc < 2.25 does not include T_OPT in nameser_compat.h yet.
* On alpine linux musl library it is also not defined. There is no
* musl feature test macro, so we look for glibc instead.
*/
#if (defined __GLIBC__ && __GLIBC__ == 2 && __GLIBC_MINOR__ < 25) ||
!defined __GLIBC__
#ifndef T_OPT
#define T_OPT ns_t_opt
#endif
#endif
~/repositories/kamailio/src/core$ ack ns_t_opt /usr/include/arpa/nameser.h
ns_t_opt = 41,
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/2759#issuecomment-853636302