Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Typo fixes from Edward Berner. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0421c136f2979ddcf2a31d1f7408c9a0 |
| User & Date: | stephan 2013-01-27 11:24:02.944 |
Context
|
2013-01-27
| ||
| 19:03 | Building with mingw32-make fixes from Edward Berner. Mention "FreeBSD" as well, as possible build platform. ... (check-in: 28c3674785 user: jan.nijtmans tags: trunk) | |
| 11:24 | Typo fixes from Edward Berner. ... (check-in: 0421c136f2 user: stephan tags: trunk) | |
|
2013-01-26
| ||
| 17:56 | don't let fossil choke any more (syntax error) when a card contains a backslash in a filename. This doesn't mean that a backslash is now allowed in a filename, only that fossil can handle the card, and show what's wrong. ... (check-in: b178bcb897 user: jan.nijtmans tags: trunk) | |
Changes
Changes to auto.def.
| ︙ | ︙ | |||
191 192 193 194 195 196 197 |
}
}
if {$found} {
define FOSSIL_ENABLE_SSL
define-append EXTRA_CFLAGS $cflags
define-append EXTRA_LDFLAGS $ldflags
define-append LIBS -lssl -lcrypto
| | | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
}
}
if {$found} {
define FOSSIL_ENABLE_SSL
define-append EXTRA_CFLAGS $cflags
define-append EXTRA_LDFLAGS $ldflags
define-append LIBS -lssl -lcrypto
msg-result "HTTPS support enabled"
# Silence OpenSSL deprecation warnings on Mac OS X 10.7.
if {[string match *-darwin* [get-define host]]} {
if {[cctest -cflags {-Wdeprecated-declarations}]} {
define-append EXTRA_CFLAGS -Wdeprecated-declarations
}
}
|
| ︙ | ︙ |
Changes to src/main.c.
| ︙ | ︙ | |||
961 962 963 964 965 966 967 | ** Usage: %fossil help COMMAND ** or: %fossil COMMAND -help ** ** Display information on how to use COMMAND. To display a list of ** available commands one of: ** ** %fossil help Show common commands | | | 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 |
** Usage: %fossil help COMMAND
** or: %fossil COMMAND -help
**
** Display information on how to use COMMAND. To display a list of
** available commands one of:
**
** %fossil help Show common commands
** %fossil help --all Show both common and auxiliary commands
** %fossil help --test Show test commands only
** %fossil help --aux Show auxiliary commands only
*/
void help_cmd(void){
int rc, idx;
const char *z;
if( g.argc<3 ){
|
| ︙ | ︙ |
Changes to src/printf.c.
| ︙ | ︙ | |||
846 847 848 849 850 851 852 | #endif assert( toStdErr==0 || toStdErr==1 ); fwrite(z, 1, n, toStdErr ? stderr : stdout); fflush(toStdErr ? stderr : stdout); } /* | | | 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 |
#endif
assert( toStdErr==0 || toStdErr==1 );
fwrite(z, 1, n, toStdErr ? stderr : stdout);
fflush(toStdErr ? stderr : stdout);
}
/*
** Force the standard output cursor to move to the beginning
** of a line, if it is not there already.
*/
void fossil_force_newline(void){
if( g.cgiOutput==0 && stdoutAtBOL==0 ) fossil_puts("\n", 0);
}
/*
|
| ︙ | ︙ |