Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
b04e21e0
Commit
b04e21e0
authored
Sep 29, 2021
by
Senthil Prabakaran
Committed by
Mouse
May 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add JER conditions for file deps
parent
efcc3670
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
asn1c/asn1c.c
asn1c/asn1c.c
+5
-1
No files found.
asn1c/asn1c.c
View file @
b04e21e0
...
...
@@ -56,7 +56,7 @@ main(int ac, char **av) {
enum
asn1p_flags
asn1_parser_flags
=
A1P_NOFLAGS
;
enum
asn1f_flags
asn1_fixer_flags
=
A1F_NOFLAGS
;
enum
asn1c_flags
asn1_compiler_flags
=
A1C_NO_C99
|
A1C_GEN_BER
|
A1C_GEN_XER
|
A1C_GEN_OER
|
A1C_GEN_UPER
|
A1C_GEN_APER
|
A1C_GEN_PRINT
|
A1C_GEN_RFILL
|
A1C_GEN_EXAMPLE
;
A1C_NO_C99
|
A1C_GEN_BER
|
A1C_GEN_XER
|
A1C_GEN_OER
|
A1C_GEN_UPER
|
A1C_GEN_APER
|
A1C_GEN_PRINT
|
A1C_GEN_RFILL
|
A1C_GEN_EXAMPLE
|
A1C_GEN_JER
;
enum
asn1print_flags
asn1_printer_flags
=
APF_NOFLAGS
;
int
print_arg__print_out
=
0
;
/* Don't compile, just print parsed */
int
print_arg__fix_n_print
=
0
;
/* Fix and print */
...
...
@@ -154,6 +154,8 @@ main(int ac, char **av) {
asn1_compiler_flags
|=
A1C_GEN_BER
;
}
else
if
(
strcmp
(
optarg
,
"en-XER"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_GEN_XER
;
}
else
if
(
strcmp
(
optarg
,
"en-JER"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_GEN_JER
;
}
else
if
(
strcmp
(
optarg
,
"en-OER"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_GEN_OER
;
}
else
if
(
strcmp
(
optarg
,
"en-UPER"
)
==
0
)
{
...
...
@@ -180,6 +182,8 @@ main(int ac, char **av) {
asn1_compiler_flags
&=
~
A1C_GEN_BER
;
}
else
if
(
strcmp
(
optarg
,
"o-gen-XER"
)
==
0
)
{
asn1_compiler_flags
&=
~
A1C_GEN_XER
;
}
else
if
(
strcmp
(
optarg
,
"o-gen-JER"
)
==
0
)
{
asn1_compiler_flags
&=
~
A1C_GEN_JER
;
}
else
if
(
strcmp
(
optarg
,
"o-gen-OER"
)
==
0
)
{
asn1_compiler_flags
&=
~
A1C_GEN_OER
;
}
else
if
(
strcmp
(
optarg
,
"o-gen-UPER"
)
==
0
)
{
...
...
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