]> git.pld-linux.org Git - packages/bird.git/blob - bird-64bit.patch
- up to 1.0.12
[packages/bird.git] / bird-64bit.patch
1 diff -dur -x '*~' bird-1.0.11.orig/conf/conf.h bird-1.0.11/conf/conf.h
2 --- bird-1.0.11.orig/conf/conf.h        2000-06-04 21:30:13.000000000 +0200
3 +++ bird-1.0.11/conf/conf.h     2005-07-22 15:30:41.000000000 +0200
4 @@ -75,7 +75,7 @@
5    struct symbol *next;
6    struct sym_scope *scope;
7    int class;
8 -  int aux;
9 +  long aux;
10    void *aux2; 
11    void *def;
12    char name[1];
13 diff -dur -x '*~' bird-1.0.11.orig/conf/confbase.Y bird-1.0.11/conf/confbase.Y
14 --- bird-1.0.11.orig/conf/confbase.Y    2005-02-12 23:27:55.000000000 +0100
15 +++ bird-1.0.11/conf/confbase.Y 2005-07-22 15:29:02.000000000 +0200
16 @@ -25,7 +25,7 @@
17  CF_DECLS
18  
19  %union {
20 -  int i;
21 +  long i;
22    u32 i32;
23    ip_addr a;
24    struct symbol *s;
25 diff -dur -x '*~' bird-1.0.11.orig/filter/config.Y bird-1.0.11/filter/config.Y
26 --- bird-1.0.11.orig/filter/config.Y    2004-05-31 19:44:39.000000000 +0200
27 +++ bird-1.0.11/filter/config.Y 2005-07-22 15:29:16.000000000 +0200
28 @@ -97,7 +97,7 @@
29  decls: /* EMPTY */ { $$ = NULL; }
30   | one_decl ';' decls {
31       $$ = $1;
32 -     $$->aux = (int) $3;
33 +     $$->aux = (long) $3;
34     }
35   ;
36  
37 @@ -105,7 +105,7 @@
38  declsn: one_decl { $$ = $1; }
39   | declsn ';' one_decl {
40       $$ = $1;
41 -     $$->aux = (int) $3;
42 +     $$->aux = (long) $3;
43     }
44   ;
45  
46 @@ -168,7 +168,7 @@
47       cf_push_scope($2);
48     } function_params function_body {
49       $2->def = $5;
50 -     $2->aux = (int) $4;
51 +     $2->aux = (long) $4;
52       $2->aux2 = $5;
53       DBG("Hmm, we've got one function here - %s\n", $2->name); 
54       cf_pop_scope();
55 diff -dur -x '*~' bird-1.0.11.orig/filter/filter.h bird-1.0.11/filter/filter.h
56 --- bird-1.0.11.orig/filter/filter.h    2000-05-30 12:42:39.000000000 +0200
57 +++ bird-1.0.11/filter/filter.h 2005-07-22 15:30:18.000000000 +0200
58 @@ -18,11 +18,11 @@
59    u16 code;
60    u16 aux;
61    union {
62 -    int i;
63 +    long i;
64      void *p;
65    } a1;
66    union {
67 -    int i;
68 +    long i;
69      void *p;
70    } a2;
71    int lineno;
72 @@ -44,7 +44,7 @@
73  struct f_val {
74    int type;
75    union {
76 -    int i;
77 +    long i;
78      /*    ip_addr ip; Folded into prefix */    
79      struct f_prefix px;
80      char *s;
This page took 0.033951 seconds and 3 git commands to generate.