Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the C89-style related declarations; add a gcc warning to flag such issues, in case these slip through again |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
da9f362015a3f7766f9dca2259cd8043 |
| User & Date: | ashepilko 2021-06-16 20:24:31.867 |
| Original User & Date: | developer 2021-06-16 20:24:31.867 |
Context
|
2021-06-17
| ||
| 02:20 | /announce page: add an explicit ACTION value for the form so that a 'to=...' URL parameter does not end up shadowing the 'to' field of the form and causing the announcement to be sent to the URL-provided address even if that form field is edited. check-in: 2fa43ef4fb user: stephan tags: trunk | |
|
2021-06-16
| ||
| 20:24 | Add a test program for MSVC C89 implementations of rint() and snprintf() check-in: c945679735 user: ashepilko tags: test-msc89 | |
| 20:24 | Fix the C89-style related declarations; add a gcc warning to flag such issues, in case these slip through again check-in: da9f362015 user: ashepilko tags: trunk | |
| 13:10 | Update to the "how the download page works" document to talk about how Source Tarball links are now computed on-the-fly. check-in: 8f4fd8c1d8 user: drh tags: trunk | |
Changes
Changes to auto.def.
| ︙ | ︙ | |||
99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
define EXTRA_CFLAGS "-Wall"
define EXTRA_LDFLAGS ""
define USE_SYSTEM_SQLITE 0
define USE_LINENOISE 0
define FOSSIL_ENABLE_MINIZ 0
define USE_MMAN_H 0
define USE_SEE 0
# This procedure is a customized version of "cc-check-function-in-lib",
# that does not modify the LIBS variable. Its use prevents prematurely
# pulling in libraries that will be added later anyhow (e.g. "-ldl").
proc check-function-in-lib {function libs {otherlibs {}}} {
if {[string length $otherlibs]} {
msg-checking "Checking for $function in $libs with $otherlibs..."
| > > > > > > > > | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
define EXTRA_CFLAGS "-Wall"
define EXTRA_LDFLAGS ""
define USE_SYSTEM_SQLITE 0
define USE_LINENOISE 0
define FOSSIL_ENABLE_MINIZ 0
define USE_MMAN_H 0
define USE_SEE 0
# Maintain the C89/C90-style order of variable declarations before statements.
# Check if the compiler supports the respective warning flag.
if {[cctest -cflags -Wdeclaration-after-statement]} {
define-append EXTRA_CFLAGS -Wdeclaration-after-statement
}
# This procedure is a customized version of "cc-check-function-in-lib",
# that does not modify the LIBS variable. Its use prevents prematurely
# pulling in libraries that will be added later anyhow (e.g. "-ldl").
proc check-function-in-lib {function libs {otherlibs {}}} {
if {[string length $otherlibs]} {
msg-checking "Checking for $function in $libs with $otherlibs..."
|
| ︙ | ︙ |
Changes to src/add.c.
| ︙ | ︙ | |||
480 481 482 483 484 485 486 487 488 489 |
/** Check for Windows-reserved names and warn or exit, as
** appopriate. Note that the 'add' internal machinery already
** _silently_ skips over any names for which
** file_is_reserved_name() returns true or which is in the
** fossil_reserved_name() list. We do not need to warn for those,
** as they're outright verboten. */
if(db_exists("SELECT 1 FROM sfile WHERE win_reserved(pathname)")){
Stmt q = empty_Stmt;
db_prepare(&q,"SELECT pathname FROM sfile "
"WHERE win_reserved(pathname)");
| > < | 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
/** Check for Windows-reserved names and warn or exit, as
** appopriate. Note that the 'add' internal machinery already
** _silently_ skips over any names for which
** file_is_reserved_name() returns true or which is in the
** fossil_reserved_name() list. We do not need to warn for those,
** as they're outright verboten. */
if(db_exists("SELECT 1 FROM sfile WHERE win_reserved(pathname)")){
int reservedCount = 0;
Stmt q = empty_Stmt;
db_prepare(&q,"SELECT pathname FROM sfile "
"WHERE win_reserved(pathname)");
while( db_step(&q)==SQLITE_ROW ){
const char * zName = db_column_text(&q, 0);
++reservedCount;
if(allowReservedFlag){
fossil_warning("WARNING: Windows-reserved "
"filename: %s", zName);
}else{
|
| ︙ | ︙ |
Changes to src/finfo.c.
| ︙ | ︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
content_get(rid, &record);
}
blob_write_to_file(&record, "-");
blob_reset(&record);
blob_reset(&fname);
}else if( find_option("id","i",0) ){
Blob fname;
const char *zRevision = find_option("revision", "r", 1);
verify_all_options();
if( zRevision==0 ) usage("-i|--id also requires -r|--revision");
if( g.argc!=3 ) usage("-r|--revision REVISION FILENAME");
file_tree_name(g.argv[2], &fname, 0, 1);
| > | | | | | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
content_get(rid, &record);
}
blob_write_to_file(&record, "-");
blob_reset(&record);
blob_reset(&fname);
}else if( find_option("id","i",0) ){
Blob fname;
int rid;
const char *zRevision = find_option("revision", "r", 1);
verify_all_options();
if( zRevision==0 ) usage("-i|--id also requires -r|--revision");
if( g.argc!=3 ) usage("-r|--revision REVISION FILENAME");
file_tree_name(g.argv[2], &fname, 0, 1);
rid = db_int(0, "SELECT rid FROM blob WHERE uuid ="
" (SELECT uuid FROM files_of_checkin(%Q)"
" WHERE filename=%B %s)",
zRevision, &fname, filename_collation());
if( rid==0 ) {
fossil_fatal("file not found for revision %s: %s",
zRevision, blob_str(&fname));
}
whatis_rid(rid,0);
blob_reset(&fname);
}else{
|
| ︙ | ︙ |
Changes to src/linenoise.c.
| ︙ | ︙ | |||
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 |
* to its standard input. In this case, we want to be able to return the
* line regardless of its length (by default we are limited to 4k). */
static char *linenoiseNoTTY(void) {
char *line = NULL;
size_t len = 0, maxlen = 0;
while(1) {
if (len == maxlen) {
if (maxlen == 0) maxlen = 16;
maxlen *= 2;
| > > < | | 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
* to its standard input. In this case, we want to be able to return the
* line regardless of its length (by default we are limited to 4k). */
static char *linenoiseNoTTY(void) {
char *line = NULL;
size_t len = 0, maxlen = 0;
while(1) {
int c;
if (len == maxlen) {
char *oldval = line;
if (maxlen == 0) maxlen = 16;
maxlen *= 2;
line = realloc(line,maxlen);
if (line == NULL) {
if (oldval) free(oldval);
return NULL;
}
}
c = fgetc(stdin);
if (c == EOF || c == '\n') {
if (c == EOF && len == 0) {
free(line);
return NULL;
} else {
line[len] = '\0';
return line;
|
| ︙ | ︙ |
Changes to src/wiki.c.
| ︙ | ︙ | |||
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 |
** Show the complete change history for a single wiki page.
*/
void whistory_page(void){
Stmt q;
const char *zPageName;
double rNow;
int showRid;
login_check_credentials();
if( !g.perm.RdWiki ){ login_needed(g.anon.RdWiki); return; }
zPageName = PD("name","");
style_set_current_feature("wiki");
style_header("History Of %s", zPageName);
showRid = P("showid")!=0;
db_prepare(&q,
| > | 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 |
** Show the complete change history for a single wiki page.
*/
void whistory_page(void){
Stmt q;
const char *zPageName;
double rNow;
int showRid;
char zAuthor[64];
login_check_credentials();
if( !g.perm.RdWiki ){ login_needed(g.anon.RdWiki); return; }
zPageName = PD("name","");
style_set_current_feature("wiki");
style_header("History Of %s", zPageName);
showRid = P("showid")!=0;
db_prepare(&q,
|
| ︙ | ︙ | |||
1627 1628 1629 1630 1631 1632 1633 |
@ id="wh-collapser"> ♲</span></th>
if( showRid ){
@ <th>RID</th>
}
@ <th> </th>
@ </tr></thead><tbody>
rNow = db_double(0.0, "SELECT julianday('now')");
| | | 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 |
@ id="wh-collapser"> ♲</span></th>
if( showRid ){
@ <th>RID</th>
}
@ <th> </th>
@ </tr></thead><tbody>
rNow = db_double(0.0, "SELECT julianday('now')");
memset( zAuthor, 0, sizeof(zAuthor) );
while( db_step(&q)==SQLITE_ROW ){
double rMtime = db_column_double(&q, 0);
const char *zUuid = db_column_text(&q, 1);
const char *zUser = db_column_text(&q, 2);
int wrid = db_column_int(&q, 3);
const char *zWhen = db_column_text(&q, 4);
/* sqlite3_int64 iMtime = (sqlite3_int64)(rMtime*86400.0); */
|
| ︙ | ︙ |