]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Avoid a warning on Tru64.
authorBruno Haible <bruno@clisp.org>
Fri, 9 May 2003 10:13:47 +0000 (10:13 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:28 +0000 (12:10 +0200)
gettext-tools/lib/ChangeLog
gettext-tools/lib/canonicalize.c

index 5026db2a3f6dff9ef0fa274794f7599a2aab23a0..b4569f74fa95b9fa06c92717b12df868a0940616 100644 (file)
@@ -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.
index 35b114e6c5fb14eefd47cbcb103bf9e82aca7342..d31600b9f67033cc7a7e241b688f2c106b7f6085 100644 (file)
@@ -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)