diff --git a/inline_conditions.module b/inline_conditions.module
index 4d82b89..5f6bcfb 100644
--- a/inline_conditions.module
+++ b/inline_conditions.module
@@ -736,6 +736,14 @@ function inline_conditions_get_info($condition_name = NULL) {
           // Remember the providing module.
           'module' => $module,
         );
+        // Provide default callbacks based on condition name when they are using
+        // the MODULE_CONDITION condition name's naming pattern.
+        if (strpos($condition, $module . '_') === 0) {
+          $condition_info['callbacks'] += array(
+            'configure' => $condition . '_configure',
+            'build' => $condition . '_build',
+          );
+        }
         $conditions[$condition] = $condition_info;
       }
     }
