The MinGW.org Installation Manager Tool
修订版 | b7f59886dc76c9db6ce5ccbc7719f5707123eb33 (tree) |
---|---|
时间 | 2011-08-31 02:49:11 |
作者 | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Make --download-only and --print-uris imply --reinstall.
@@ -1,3 +1,10 @@ | ||
1 | +2011-08-30 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Make --download-only and --print-uris imply --reinstall. | |
4 | + | |
5 | + * src/pkgopts.h (OPTION_PRINT_URIS): Adjust definition. | |
6 | + (OPTION_DNLOAD_ONLY, OPTION_DOWNLOAD_ONLY): Likewise. | |
7 | + | |
1 | 8 | 2011-08-07 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 9 | |
3 | 10 | Implement --download-only and --print-uris options. |
@@ -85,9 +85,9 @@ struct pkgopts | ||
85 | 85 | #define OPTION_VERBOSE_MAX (0x00000003) |
86 | 86 | |
87 | 87 | #define OPTION_REINSTALL (0x00000010) |
88 | -#define OPTION_DNLOAD_ONLY (0x00000020) | |
89 | -#define OPTION_DOWNLOAD_ONLY (0x00000020) | |
90 | -#define OPTION_PRINT_URIS (0x00000060) | |
88 | +#define OPTION_DNLOAD_ONLY (0x00000030) | |
89 | +#define OPTION_DOWNLOAD_ONLY (0x00000030) | |
90 | +#define OPTION_PRINT_URIS (0x00000070) | |
91 | 91 | |
92 | 92 | #if __cplusplus |
93 | 93 | /* |