diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-04-20 08:25:43 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-04-20 08:25:43 +0000 |
commit | d30a0f25f353dd56746c922b50bc1bed59d29cfb (patch) | |
tree | d4a304d372bd0d38185c5ec6495e3644cb3deaea | |
parent | b86eca23b9bb47893e395057885e9e30e431afcf (diff) | |
download | libfuse-d30a0f25f353dd56746c922b50bc1bed59d29cfb.tar.gz |
fix
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | kernel/compat/parser.c | 9 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2004-04-20 Miklos Szeredi <mszeredi@inf.bme.hu> + + * Fixed parser with modversions (Mattias Wadman) + 2004-04-19 Miklos Szeredi <mszeredi@inf.bme.hu> * Added mount option parser to 2.4 build diff --git a/kernel/compat/parser.c b/kernel/compat/parser.c index 5527c33..fa1d63e 100644 --- a/kernel/compat/parser.c +++ b/kernel/compat/parser.c @@ -5,9 +5,16 @@ * Version 2. See the file COPYING for more details. */ +#include <linux/config.h> +#ifdef CONFIG_MODVERSIONS +#define MODVERSIONS +#include <linux/modversions.h> +#endif + +#include "parser.h" + #include <linux/ctype.h> #include <linux/module.h> -#include <linux/parser.h> #include <linux/slab.h> #include <linux/string.h> |