diff options
author | Bruno Haible <bruno@clisp.org> | 2003-05-09 10:13:47 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:28 +0200 |
commit | a82b4e84b0d6634a199839a467ec5ab346d2da25 (patch) | |
tree | 6d305088eb104c7c5f5e7674854873df53404899 /gettext-tools | |
parent | 1f68309dc62be678a70a78060669f520702338d3 (diff) | |
download | external_gettext-a82b4e84b0d6634a199839a467ec5ab346d2da25.zip external_gettext-a82b4e84b0d6634a199839a467ec5ab346d2da25.tar.gz external_gettext-a82b4e84b0d6634a199839a467ec5ab346d2da25.tar.bz2 |
Avoid a warning on Tru64.
Diffstat (limited to 'gettext-tools')
-rw-r--r-- | gettext-tools/lib/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/lib/canonicalize.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index 5026db2..b4569f7 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,8 @@ +2003-05-09 Bruno Haible <bruno@clisp.org> + + * canonicalize.c: Add #ifdef around versioned_symbol. Avoids an + "extraneous semicolon" warning from Tru64 cc. + 2003-05-06 Bruno Haible <bruno@clisp.org> * Makefile.am (DEFS): Fix spelling of DEPENDS_ON_LIBICONV. diff --git a/gettext-tools/lib/canonicalize.c b/gettext-tools/lib/canonicalize.c index 35b114e..d31600b 100644 --- a/gettext-tools/lib/canonicalize.c +++ b/gettext-tools/lib/canonicalize.c @@ -274,7 +274,9 @@ error: free (rpath); return NULL; } +#ifdef _LIBC versioned_symbol (libc, __realpath, realpath, GLIBC_2_3); +#endif #if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_3) |