fix
authorMiklos Szeredi <miklos@szeredi.hu>
Tue, 20 Apr 2004 08:25:43 +0000 (08:25 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Tue, 20 Apr 2004 08:25:43 +0000 (08:25 +0000)
ChangeLog
kernel/compat/parser.c

index 05121a9b516ffae8ddc1726772563ded1faa1046..f1d3d0d4568462ae0299be2c2694c89ef8878e57 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 5527c337130137716f5f165153b7d03c9d9e4fc5..fa1d63e38c2f8796ac5fe1f1ffea4100088e3961 100644 (file)
@@ -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>