posix/tst-rfc3484: Fix compile failure linking to local __stat64
authorStafford Horne <shorne@gmail.com>
Wed, 3 Feb 2021 18:36:47 +0000 (15:36 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 3 Feb 2021 19:12:13 +0000 (16:12 -0300)
commita4efbf44757477717a907078c340386146c7623f
treeeeb906efd15a0326ecf2223c13491f8c1108de12
parentd46c51e9f9d54f1ae097df17391c91aa4408c532
 posix/tst-rfc3484: Fix compile failure linking to local __stat64

After 04986243d1 ("Remove internal usage of extensible stat functions")
linking the __stat64 symbol in getaddrinfo for this test fails with the
below error:

    [...] or1k-smh-linux-gnu/bin/ld: [...]/posix/tst-rfc3484.o: in function `gaiconf_reload':
    [...]/sysdeps/posix/getaddrinfo.c:2136: undefined reference to `__stat64'
    collect2: error: ld returned 1 exit status

This is because __stat64 is a local symbol, the test includes the
getaddrinfo directly and fails to link against the local symbol.  Fix
this by setting up an alias to the global stat64 symbol name like is
done for other local symbol usage.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
posix/tst-rfc3484-2.c
posix/tst-rfc3484-3.c
posix/tst-rfc3484.c