comparison src/database.c @ 3072:4c038e89d563

[xemacs-hg @ 2005-11-16 07:22:37 by stephent] Assorted minor fixes. TODO comment in configure.ac: <87irutytzq.fsf@tleepslib.sk.tsukuba.ac.jp> Avoid warning, don't redefine integer types on Mac OS X: <87ek5hytvq.fsf@tleepslib.sk.tsukuba.ac.jp> Fix uninitialized variable: <87acg5yttp.fsf@tleepslib.sk.tsukuba.ac.jp> Eliminate warnings for unused parameters and functions: <8764qtytrp.fsf@tleepslib.sk.tsukuba.ac.jp> Quiet byte-compiler in select.el: <871x1hytow.fsf@tleepslib.sk.tsukuba.ac.jp> Quiet compiler about unused parameters in sound.el: <87wtj9xf16.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Wed, 16 Nov 2005 07:22:46 +0000
parents facf3239ba30
children 6d4dc9ec7240 3742ea8250b5
comparison
equal deleted inserted replaced
3071:a80f978d8342 3072:4c038e89d563
45 /* glibc 2.1 doesn't have this problem with DB 2.x */ 45 /* glibc 2.1 doesn't have this problem with DB 2.x */
46 #if !(defined __GLIBC__ && __GLIBC_MINOR__ >= 1) 46 #if !(defined __GLIBC__ && __GLIBC_MINOR__ >= 1)
47 #ifdef HAVE_INTTYPES_H 47 #ifdef HAVE_INTTYPES_H
48 #define __BIT_TYPES_DEFINED__ 48 #define __BIT_TYPES_DEFINED__
49 #include <inttypes.h> 49 #include <inttypes.h>
50 #if !defined(__FreeBSD__) && !defined(__NetBSD__) 50 #if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__APPLE__)
51 typedef uint8_t u_int8_t; 51 typedef uint8_t u_int8_t;
52 typedef uint16_t u_int16_t; 52 typedef uint16_t u_int16_t;
53 typedef uint32_t u_int32_t; 53 typedef uint32_t u_int32_t;
54 #ifdef WE_DONT_NEED_QUADS 54 #ifdef WE_DONT_NEED_QUADS
55 typedef uint64_t u_int64_t; 55 typedef uint64_t u_int64_t;