mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
allow -Cno-v6only to work when defaulting to traditional
This commit is contained in:
parent
762aefc9b1
commit
aa6265859a
1 changed files with 4 additions and 2 deletions
|
@ -174,7 +174,6 @@ DecodeArgs (int argc, char **argv)
|
|||
add_cpp_def ("-D__QFCC__=1");
|
||||
add_cpp_def ("-D__QUAKEC__=1");
|
||||
|
||||
options.code.progsversion = PROG_VERSION;
|
||||
options.code.short_circuit = -1;
|
||||
options.code.fast_float = true;
|
||||
options.warnings.uninited_variable = true;
|
||||
|
@ -431,10 +430,13 @@ DecodeArgs (int argc, char **argv)
|
|||
// progs.src mode without --advanced implies --traditional
|
||||
options.traditional = true;
|
||||
options.advanced = false;
|
||||
options.code.progsversion = PROG_ID_VERSION;
|
||||
if (!options.code.progsversion)
|
||||
options.code.progsversion = PROG_ID_VERSION;
|
||||
if (options.code.short_circuit == (qboolean) -1)
|
||||
options.code.short_circuit = false;
|
||||
}
|
||||
if (!options.code.progsversion)
|
||||
options.code.progsversion = PROG_VERSION;
|
||||
if (!options.traditional) {
|
||||
options.advanced = true;
|
||||
add_cpp_def ("-D__RUAMOKO__=1");
|
||||
|
|
Loading…
Reference in a new issue