# HG changeset patch # User Paul Eggert # Date 1161502337 0 # Node ID eb9d740b1288d6befe1ba92933e391b45ba4d0bb # Parent 8fcc75ae6ab788d3c53ee8c3eed6ba98b1d2837e * lib/canonicalize.c (ELOOP): Define if not already defined. Problem reported by Bruno Haible in . diff -r 8fcc75ae6ab7 -r eb9d740b1288 ChangeLog --- a/ChangeLog Sat Oct 21 22:10:06 2006 +0000 +++ b/ChangeLog Sun Oct 22 07:32:17 2006 +0000 @@ -1,3 +1,9 @@ +2006-10-21 Paul Eggert + + * lib/canonicalize.c (ELOOP): Define if not already defined. + Problem reported by Bruno Haible in + . + b2006-10-21 Paul Eggert * lib/stdint_.h [defined _AIX]: Don't include . diff -r 8fcc75ae6ab7 -r eb9d740b1288 lib/canonicalize.c --- a/lib/canonicalize.c Sat Oct 21 22:10:06 2006 +0000 +++ b/lib/canonicalize.c Sun Oct 22 07:32:17 2006 +0000 @@ -40,6 +40,9 @@ #include "xalloc.h" #include "xgetcwd.h" +#ifndef ELOOP +# define ELOOP 0 +#endif #ifndef __set_errno # define __set_errno(Val) errno = (Val) #endif