diff options
author | Koen Kooi <koen@openembedded.org> | 2006-04-28 10:11:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-28 10:11:30 +0000 |
commit | 8b3e60e790a45fb4ce6be5399442e4c17835d2c1 (patch) | |
tree | e3ad350d8614f7eba66d36cca0c540136987be9d /packages/quagga/quagga-0.99.2 | |
parent | 4b0e628158e8fc23584fa792a207993bf6f2a8af (diff) |
quagga: add 0.99.2 and 0.99.3, closes #476
Diffstat (limited to 'packages/quagga/quagga-0.99.2')
-rw-r--r-- | packages/quagga/quagga-0.99.2/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/quagga/quagga-0.99.2/ospfd-no-opaque-lsa-fix.patch | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/quagga/quagga-0.99.2/.mtn2git_empty b/packages/quagga/quagga-0.99.2/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/quagga/quagga-0.99.2/.mtn2git_empty diff --git a/packages/quagga/quagga-0.99.2/ospfd-no-opaque-lsa-fix.patch b/packages/quagga/quagga-0.99.2/ospfd-no-opaque-lsa-fix.patch new file mode 100644 index 0000000000..3c9972988a --- /dev/null +++ b/packages/quagga/quagga-0.99.2/ospfd-no-opaque-lsa-fix.patch @@ -0,0 +1,16 @@ +If you try to build without opaque LSA support you'll hit this error. I now +turn this on in the makefile so this isn't really needed but it's here just +because I fixed it before changing the configuration. + +--- quagga-0.99.2/ospfd/ospfd.c.orig 2005-11-13 13:28:39.000000000 +1100 ++++ quagga-0.99.2/ospfd/ospfd.c 2005-11-13 13:28:57.000000000 +1100 +@@ -466,7 +466,9 @@ + OSPF_TIMER_OFF (ospf->t_lsa_refresher); + OSPF_TIMER_OFF (ospf->t_read); + OSPF_TIMER_OFF (ospf->t_write); ++#ifdef HAVE_OPAQUE_LSA + OSPF_TIMER_OFF (ospf->t_opaque_lsa_self); ++#endif + + close (ospf->fd); + stream_free(ospf->ibuf); |