diff options
author | Pedro J. Ruiz Lopez <holzplatten@es.gnu.org> | 2007-02-18 23:27:30 +0000 |
---|---|---|
committer | Pedro J. Ruiz Lopez <holzplatten@es.gnu.org> | 2007-02-18 23:27:30 +0000 |
commit | 9f64ef6bcd017fec9b6815ac00cad80a11922029 (patch) | |
tree | 5cbb32faddb7c341d9eed0543b9e253125b69608 | |
parent | d49b34302a70ad948ce9cbf5778b1b39adb4286d (diff) | |
download | idutils-9f64ef6bcd017fec9b6815ac00cad80a11922029.tar.gz idutils-9f64ef6bcd017fec9b6815ac00cad80a11922029.tar.bz2 idutils-9f64ef6bcd017fec9b6815ac00cad80a11922029.zip |
* Fix warning for redefined cpp macros
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | lib/regex_internal.h | 9 |
2 files changed, 17 insertions, 1 deletions
@@ -1,6 +1,13 @@ +2007-02-19 Pedro J. Ruiz Lopez <holzplatten@es.gnu.org> + + * Upgraded gnulib. + * Upgraded gettext. + + * lib/regex_internal.h: fix warnings about redefined cpp macros. + 2007-01-19 Jim Meyering <jim@meyering.net> - Temporary fix simply to avoid the infloop. + temporary fix simply to avoid the infloop. * libidu/scanners.c (get_token_lisp): Disable the code that treats '[]' as part of a kawa identifier. It could call ungetc two or three times in a row. One is the maximum. diff --git a/lib/regex_internal.h b/lib/regex_internal.h index a19c9a7..b7a8d22 100644 --- a/lib/regex_internal.h +++ b/lib/regex_internal.h @@ -40,8 +40,17 @@ #if defined _LIBC # include <bits/libc-lock.h> #else +# if defined __libc_lock_init +# undef __libc_lock_init +# endif # define __libc_lock_init(NAME) do { } while (0) +# if defined __libc_lock_lock +# undef __libc_lock_lock +# endif # define __libc_lock_lock(NAME) do { } while (0) +# if defined __libc_lock_unlock +# undef __libc_lock_unlock +# endif # define __libc_lock_unlock(NAME) do { } while (0) #endif |