Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
builder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Ben Avison
builder
Commits
31623394
Commit
31623394
authored
Oct 21, 2010
by
Steve Revill
⚽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for reading the CLI command line on RO 4.02 and 6.20.
Author: Willi Theiss Version 0.20. Tagged as 'builder-0_20'
parent
b92b4d03
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
15 deletions
+16
-15
VersionNum
VersionNum
+10
-10
c/main
c/main
+6
-5
No files found.
VersionNum
View file @
31623394
/* (0.
19
)
/* (0.
20
)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 0.
19
#define Module_MajorVersion_CMHG 0.
20
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG
07 Jun 2009
#define Module_Date_CMHG
21 Oct 2010
#define Module_MajorVersion "0.
19
"
#define Module_Version
19
#define Module_MajorVersion "0.
20
"
#define Module_Version
20
#define Module_MinorVersion ""
#define Module_Date "
07 Jun 2009
"
#define Module_Date "
21 Oct 2010
"
#define Module_ApplicationDate "
07-Jun-09
"
#define Module_ApplicationDate "
21-Oct-10
"
#define Module_ComponentName "builder"
#define Module_ComponentPath "castle/RiscOS/Utilities/Release/builder"
#define Module_FullVersion "0.
19
"
#define Module_HelpVersion "0.
19 (07 Jun 2009
)"
#define Module_LibraryVersionInfo "0:
19
"
#define Module_FullVersion "0.
20
"
#define Module_HelpVersion "0.
20 (21 Oct 2010
)"
#define Module_LibraryVersionInfo "0:
20
"
c/main
View file @
31623394
...
...
@@ -786,6 +786,12 @@ int main(void)
debug_set_area_level_prefix
(
FALSE
);
debug_set_device
(
DEBUGIT_OUTPUT
);
/* read CLI commandline (before it is reused by toolbox initialisation RO 4.42,6.xx) */
_kernel_swi
(
OS_GetEnv
,
&
reg
,
&
reg
);
if
(
strstr
((
char
*
)
reg
.
r
[
0
],
"-quit"
))
{
quiting
=
TRUE
;
}
read_builds
();
read_defaults
();
...
...
@@ -842,11 +848,6 @@ int main(void)
toolbox_get_sys_info
(
3
,
&
reg
);
/* Obtain wimp task handle */
task_handle
=
reg
.
r
[
0
];
_kernel_swi
(
OS_GetEnv
,
&
reg
,
&
reg
);
if
(
strstr
((
char
*
)
reg
.
r
[
0
],
"-quit"
))
{
quiting
=
TRUE
;
}
ERR_GOTO
(
err
,
env_source
());
if
(
!
quiting
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment