Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the build for mingw: do not translate command-line options from unicode to utf8 because mingw has already done that for us. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f1a82cf34f1c89e31cc9d20b388f990f |
| User & Date: | drh 2012-11-29 18:21:26.411 |
Context
|
2012-11-29
| ||
| 18:31 | Fix harmless compiler warnings on windows. ... (check-in: 9eb2df37ef user: drh tags: trunk) | |
| 18:21 | Fix the build for mingw: do not translate command-line options from unicode to utf8 because mingw has already done that for us. ... (check-in: f1a82cf34f user: drh tags: trunk) | |
| 16:54 | Fix a missing </ul> on object descriptions. ... (check-in: 7e609e0e50 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
490 491 492 493 494 495 496 497 498 499 | g.argc = argc; g.argv = argv; #if defined(_WIN32) && !defined(__MINGW32__) parse_windows_command_line(&g.argc, &g.argv); GetModuleFileNameW(NULL, buf, MAX_PATH); g.nameOfExe = fossil_filename_to_utf8(buf); #else g.nameOfExe = g.argv[0]; #endif | > > > < | 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
g.argc = argc;
g.argv = argv;
#if defined(_WIN32) && !defined(__MINGW32__)
parse_windows_command_line(&g.argc, &g.argv);
GetModuleFileNameW(NULL, buf, MAX_PATH);
g.nameOfExe = fossil_filename_to_utf8(buf);
for(i=0; i<g.argc; i++) g.argv[i] = fossil_filename_to_utf8(g.argv[i]);
#elif defined(__APPLE__)
for(i=0; i<g.argc; i++) g.argv[i] = fossil_filename_to_utf8(g.argv[i]);
#else
g.nameOfExe = g.argv[0];
#endif
for(i=1; i<g.argc-1; i++){
z = g.argv[i];
if( z[0]!='-' ) continue;
z++;
if( z[0]=='-' ) z++;
if( z[0]==0 ) return; /* Stop searching at "--" */
if( fossil_strcmp(z, "args")==0 ) break;
|
| ︙ | ︙ |