Index: trunk/src/samhain_hide.c
===================================================================
--- trunk/src/samhain_hide.c	(revision 90)
+++ trunk/src/samhain_hide.c	(revision 91)
@@ -119,5 +119,8 @@
 /* The configure options (#defines) for the Kernel
  */
-#if SH_KERNEL_NUMERIC >= 206019
+/* 2.6.19 (((2) << 16) + ((6) << 8) + (19)) */
+#define SH_KERNEL_MIN 132627 
+
+#if SH_KERNEL_NUMERIC >= SH_KERNEL_MIN
 #include <linux/autoconf.h>
 #else
@@ -169,5 +172,5 @@
 #include <linux/smp_lock.h>
 
-#if SH_KERNEL_NUMERIC >= 206019
+#if SH_KERNEL_NUMERIC >= SH_KERNEL_MIN
 #include <linux/mutex.h>
 #endif
@@ -783,5 +786,5 @@
     spinlock_t * modlist_lock = (spinlock_t * ) SH_MODLIST_LOCK;
 #endif
-#if SH_KERNEL_NUMERIC >= 206019
+#if SH_KERNEL_NUMERIC >= SH_KERNEL_MIN
     struct mutex * module_mutex = (struct mutex *) SH_MODLIST_MUTEX;
 #endif
@@ -789,5 +792,5 @@
     struct module *mod;
 
-#if SH_KERNEL_NUMERIC >= 206019
+#if SH_KERNEL_NUMERIC >= SH_KERNEL_MIN
     mutex_lock(module_mutex);
 #endif
@@ -807,5 +810,5 @@
 #endif
     }
-#if SH_KERNEL_NUMERIC >= 206019
+#if SH_KERNEL_NUMERIC >= SH_KERNEL_MIN
       mutex_unlock(module_mutex);
 #endif
