Re: [mpg123-devel] mpg123 1.31.0 released
Brought to you by:
sobukus
From: Dave Y. <dav...@gm...> - 2023-01-12 02:37:52
|
On 01/09/23 03:14 PM, Thomas Orgis wrote: > Thanks, > > to clarify: > Hi, > Am Sun, 8 Jan 2023 20:06:11 -0800 > schrieb Dave Yeo <dav...@gm...>: > >> OS/2 needs this patch to find getaddrinfo() and friends. No ipv6 support. > > You mean no IPv6 support before or still after this change? Do you have > a complete build failure without libcx/net.h? > OK, it seems that getaddrinfo() is expected to support ipv6. Perhaps something like this would be better, it compiles and works. Dave Index: configure.ac =================================================================== --- configure.ac (revision 5205) +++ configure.ac (working copy) @@ -1977,6 +1977,7 @@ fi ;; os2) + have_ipv6=no OS2_LIBS="-lcx -lmmpm2" OS2_CFLAGS="-idirafter /@unixroot/usr/include/os2tk45" oldcflags="$CFLAGS" |