Differences From Artifact [ca3f2e3bd3]:
- File auto.def — part of check-in [5610dc4edf] at 2014-06-05 08:05:19 on branch trunk — Remove the Cygwin-specific Makefile, as the option --disable-internal-sqlite has the same effect. Document this. (user: jan.nijtmans size: 8990) [more...]
To Artifact [821b311634]:
- File auto.def — part of check-in [1dc9b7cbb0] at 2014-07-09 22:04:00 on branch branch-1.29 — If the system knows about utime() and/or usleep(), allow the built-in SQLite to use those functions. e.g. for executing delays which are not a multiple of 1 second. (user: jan.nijtmans size: 9041) [more...]
| ︙ | |||
246 247 248 249 250 251 252 253 254 255 256 257 258 259 | 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | + + |
if {![cc-check-function-in-lib socket {socket network}]} {
# Last resort, may be Windows
if {[string match *mingw* [get-define host]]} {
define-append LIBS -lwsock32
}
}
cc-check-function-in-lib iconv iconv
cc-check-functions utime
cc-check-functions usleep
# Check for getloadavg(), and if it doesn't exist, define FOSSIL_OMIT_LOAD_AVERAGE
if {![cc-check-functions getloadavg]} {
define FOSSIL_OMIT_LOAD_AVERAGE 1
}
# Check for getpassphrase() for Solaris 10 where getpass() truncates to 10 chars
|
| ︙ |