diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index bc6af1f..1369eaa 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -6,6 +6,41 @@
  */
 
 /**
+ * The current system version.
+ */
+define('VERSION', '6.23-dev');
+
+/**
+ * Core API compatibility.
+ */
+define('DRUPAL_CORE_COMPATIBILITY', '6.x');
+
+/**
+ * Minimum supported version of PHP.
+ */
+define('DRUPAL_MINIMUM_PHP',    '4.3.5');
+
+/**
+ * Minimum recommended value of PHP memory_limit.
+ */
+define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT',    '16M');
+
+/**
+ * Minimum supported version of MySQL, if it is used.
+ */
+define('DRUPAL_MINIMUM_MYSQL',  '4.1.1');
+
+/**
+ * Minimum supported version of PostgreSQL, if it is used.
+ */
+define('DRUPAL_MINIMUM_PGSQL',  '7.4');
+
+/**
+ * Maximum age of temporary files in seconds.
+ */
+define('DRUPAL_MAXIMUM_TEMP_FILE_AGE', 21600);
+
+/**
  * Indicates that the item should never be removed unless explicitly told to
  * using cache_clear_all() with a cache ID.
  */
diff --git a/modules/system/system.module b/modules/system/system.module
index 5ad849b..3f88dbf 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -6,41 +6,6 @@
  */
 
 /**
- * The current system version.
- */
-define('VERSION', '6.23-dev');
-
-/**
- * Core API compatibility.
- */
-define('DRUPAL_CORE_COMPATIBILITY', '6.x');
-
-/**
- * Minimum supported version of PHP.
- */
-define('DRUPAL_MINIMUM_PHP',    '4.3.5');
-
-/**
- * Minimum recommended value of PHP memory_limit.
- */
-define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT',    '16M');
-
-/**
- * Minimum supported version of MySQL, if it is used.
- */
-define('DRUPAL_MINIMUM_MYSQL',  '4.1.1');
-
-/**
- * Minimum supported version of PostgreSQL, if it is used.
- */
-define('DRUPAL_MINIMUM_PGSQL',  '7.4');
-
-/**
- * Maximum age of temporary files in seconds.
- */
-define('DRUPAL_MAXIMUM_TEMP_FILE_AGE', 21600);
-
-/**
  * Implementation of hook_help().
  */
 function system_help($path, $arg) {
