diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-11-16 18:10:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-11-16 18:10:04 +0000 |
commit | 07de4cbbbb7c3f5ef9728342a35efc12f6d6080b (patch) | |
tree | 4d71e8b93652855ec8f209f8a9e868f5820d435e /src | |
parent | 1ca717f377c71ff593d5d944133ef8939c1d4aee (diff) |
Add configure result checks on odbc, per Peter E.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/odbc/md5.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/odbc/md5.h b/src/interfaces/odbc/md5.h index b8b29d98e31..9cdd04458ab 100644 --- a/src/interfaces/odbc/md5.h +++ b/src/interfaces/odbc/md5.h @@ -39,11 +39,12 @@ typedef char bool; #endif /* not C++ */ #endif /* __BEOS__ */ -/* #if SIZEOF_UINT8 == 0 Can't get this from configure */ +/* Also defined in include/c.h */ +#if SIZEOF_UINT8 == 0 typedef unsigned char uint8; /* == 8 bits */ typedef unsigned short uint16; /* == 16 bits */ typedef unsigned int uint32; /* == 32 bits */ -/* #endif */ +#endif /* SIZEOF_UINT8 == 0 */ extern bool EncryptMD5(const char *passwd, const char *salt, size_t salt_len, char *buf); |