Differences From Artifact [c7e77ab48c]:
- File src/config.h — part of check-in [3e61ada775] at 2011-05-22 07:53:01 on branch solaris10 — Fix for passwords > 8 chars long on Solaris. getpass() silently truncates to 8 chars, use getpassphrase() instead. (user: ben size: 3840) [more...]
To Artifact [fe538681bc]:
- File src/config.h — part of check-in [8559c781c2] at 2011-06-14 17:09:01 on branch autoconf — Add very basic configure script. It is just checking for zlib, OpenSSL and the USE_PREAD support on the BSDs. (user: joerg size: 3897)
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + + + + | ** some linux distributions, and possibly other unixes as well. */ #define _LARGE_FILE 1 #ifndef _FILE_OFFSET_BITS # define _FILE_OFFSET_BITS 64 #endif #define _LARGEFILE_SOURCE 1 #ifdef HAVE_AUTOCONFIG_H #include "autoconfig.h" #endif #ifndef _RC_COMPILE_ /* ** System header files used by all modules */ #include <unistd.h> |
| ︙ |