Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch long-double-bug Excluding Merge-Ins
This is equivalent to a diff from fa6311a507 to 7872db8516
|
2013-06-10
| ||
| 07:07 | A typo in help screen (reported by Sergei Gavrikov) check-in: b894afad3d user: jan.nijtmans tags: trunk | |
|
2013-06-08
| ||
| 02:37 | Merge updates from trunk. Closed-Leaf check-in: b8919a557a user: edward tags: berner-nt | |
| 01:34 | Merge updates from trunk. Closed-Leaf check-in: 7872db8516 user: edward tags: long-double-bug | |
|
2013-06-06
| ||
| 12:16 | merge trunk check-in: cf3d716e2f user: jan.nijtmans tags: cleanX-no-clean-glob | |
| 06:31 | Teach config.h to recognize Sun's C compiler. Closed-Leaf check-in: 57b585276b user: edward tags: sun-compiler | |
|
2013-06-05
| ||
| 08:12 | make "fossil rm FOO" work as expected on case-insensitive file systems, where committed files "foo/*" exist. check-in: fa6311a507 user: jan.nijtmans tags: trunk | |
|
2013-05-31
| ||
| 17:41 | Avoid SQL errors when the "fossil ticket" command is misused to try to append icomment text. Ticket [d4378c258d9fc6b] check-in: 878f7008ab user: drh tags: trunk | |
|
2013-05-02
| ||
| 07:01 | Proposed workaround for long double compiler bug on OpenBSD/sparc64. check-in: c11d1444e6 user: edward tags: long-double-bug | |
Changes to auto.def.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # System autoconfiguration. Try: ./configure --help |
| ︙ | |||
230 231 232 233 234 235 236 237 238 239 | 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | + + + + + + + + + + + + + + + + + + + + + + + + + + |
# Check for getpassphrase() for Solaris 10 where getpass() truncates to 10 chars
if {![cc-check-functions getpassphrase]} {
# Haiku needs this
cc-check-function-in-lib getpass bsd
}
cc-check-function-in-lib dlopen dl
# Check for long double bug
# See test/long-double.test for more information.
set code {
volatile long long n; volatile long double ld;
n = 2147483648L; ld = n;
if (ld < 0) return 1;
}
switch -glob -- [get-define host] {
sparc64-*-openbsd* {
msg-checking "Checking for long double bug..."
# If we're cross compiling we won't be able to run
# binaries at all, so first check and see if a trivial
# program runs okay.
if {[cc-run -code {return 0;}]} {
if {[cc-run -code $code]} {
msg-result "not found"
} else {
msg-result "found"
define-append EXTRA_CFLAGS -DLONGDOUBLE_TYPE=double
}
} else {
msg-result "Unable to test, assuming bug not present"
}
}
}
make-template Makefile.in
make-config-header autoconfig.h -auto {USE_* FOSSIL_*}
|
Added autosetup/cc-run.tcl.