+2006-09-28  Bruno Haible  <bruno@clisp.org>
+
+       * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
+       * modules/linkedhash-list (Depends-on): Likewise.
+       * modules/rbtreehash-list (Depends-on): Likewise.
+
 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
 
        * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
 
+2006-09-28  Bruno Haible  <bruno@clisp.org>
+
+       * gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
+       * gl_linkedhash_list.c: Likewise.
+       * gl_rbtreehash_list.c: Likewise.
+
 2006-09-28  Jim Meyering  <jim@meyering.net>
 
        * mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
 
 /* Specification.  */
 #include "gl_avltreehash_list.h"
 
+#include <stdint.h> /* for SIZE_MAX */
 #include <stdlib.h>
 
 #include "gl_avltree_oset.h"
 #include "xalloc.h"
 #include "xsize.h"
-#include "size_max.h"
 
 #ifndef uintptr_t
 # define uintptr_t unsigned long
 
 /* Specification.  */
 #include "gl_linkedhash_list.h"
 
+#include <stdint.h> /* for SIZE_MAX */
 #include <stdlib.h>
 
 #include "xalloc.h"
 #include "xsize.h"
-#include "size_max.h"
 
 #ifndef uintptr_t
 # define uintptr_t unsigned long
 
 /* Specification.  */
 #include "gl_rbtreehash_list.h"
 
+#include <stdint.h> /* for SIZE_MAX */
 #include <stdlib.h>
 
 #include "gl_rbtree_oset.h"
 #include "xalloc.h"
 #include "xsize.h"
-#include "size_max.h"
 
 #ifndef uintptr_t
 # define uintptr_t unsigned long
 
 Depends-on:
 list
 avltree-oset
-size_max
+stdint
 xalloc
 xsize
 
 
 
 Depends-on:
 list
-size_max
+stdint
 xalloc
 xsize
 
 
 Depends-on:
 list
 rbtree-oset
-size_max
+stdint
 xalloc
 xsize