1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

heimdal:lib/asn1: try to fix the build on IRIX

cc-1028 cc: ERROR File = ../source4/heimdal/lib/asn1/gen_template.c, Line = 548
  The expression used must have a constant value.

  struct templatehead template = { 0L, &(template). tqh_first };
                                         ^
If this really fixes the IRIX build, we'll propose this for heimdal upstream.

metze
This commit is contained in:
Stefan Metzmacher 2012-06-10 16:21:12 +02:00
parent c48e307de4
commit 0eeaf10fd0

View File

@ -545,13 +545,15 @@ template_members(struct templatehead *temp, const char *basetype, const char *na
case TNull:
break;
case TBitString: {
struct templatehead template = ASN1_TAILQ_HEAD_INITIALIZER(template);
struct templatehead template;
struct template *q;
Member *m;
size_t count = 0, i;
char *bname = NULL;
FILE *f = get_code_file();
ASN1_TAILQ_INIT(&template);
if (ASN1_TAILQ_EMPTY(t->members)) {
add_line(temp, "{ A1_PARSE_T(A1T_HEIM_BIT_STRING), %s, NULL }", poffset);
break;
@ -681,7 +683,7 @@ template_members(struct templatehead *temp, const char *basetype, const char *na
break;
}
case TChoice: {
struct templatehead template = ASN1_TAILQ_HEAD_INITIALIZER(template);
struct templatehead template;
struct template *q;
size_t count = 0, i;
char *tname = NULL;
@ -690,6 +692,8 @@ template_members(struct templatehead *temp, const char *basetype, const char *na
int ellipsis = 0;
char *e;
ASN1_TAILQ_INIT(&template);
if (asprintf(&tname, "asn1_choice_%s_%s%x",
basetype, name ? name : "", (unsigned int)(uintptr_t)t) < 0 || tname == NULL)
errx(1, "malloc");