openwrt_archive/net/ipsec-tools/patches/001-no_libfl.patch
Nicolas Thill f122f129a8 [packages] ipsec-tools: update to v0.7.2
SVN-Revision: 16011
2009-05-23 03:51:45 +00:00

23 lines
472 B
Diff

--- a/src/racoon/cftoken.l
+++ b/src/racoon/cftoken.l
@@ -104,6 +104,8 @@ static struct include_stack {
static int incstackp = 0;
static int yy_first_time = 1;
+
+int yywrap(void) { return 1; }
%}
/* common seciton */
--- a/src/setkey/token.l
+++ b/src/setkey/token.l
@@ -86,6 +86,8 @@
#if defined(SADB_X_EALG_AES) && ! defined(SADB_X_EALG_AESCBC)
#define SADB_X_EALG_AESCBC SADB_X_EALG_AES
#endif
+
+int yywrap(void) { return 1; }
%}
/* common section */