diff --git a/dumux/geomechanics/el2p/el2ppropertydefaults.hh b/dumux/geomechanics/el2p/el2ppropertydefaults.hh
index 3acc64680672ca1ff0ef78fc2fa8cf8d2a0ccc5d..b20bee511847b025abe3c3118925513403b24d08 100644
--- a/dumux/geomechanics/el2p/el2ppropertydefaults.hh
+++ b/dumux/geomechanics/el2p/el2ppropertydefaults.hh
@@ -122,7 +122,12 @@ public:
 
 
 // use the SuperLU linear solver by default
+#if HAVE_SUPERLU
 SET_TYPE_PROP(BoxElasticTwoP, LinearSolver, Dumux::SuperLUBackend<TypeTag> );
+#else
+#warning no SuperLU detected, defaulting to ILU0BiCGSTAB. For many problems, the el2p model requires a direct solver.
+SET_TYPE_PROP(BoxElasticTwoP, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> );
+#endif
 
 // set the grid operator
 SET_PROP(BoxElasticTwoP, GridOperator)
diff --git a/test/geomechanics/el1p2c/el1p2cproblem.hh b/test/geomechanics/el1p2c/el1p2cproblem.hh
index 9c68051e44600177664547011622a5c1eadab905..9819b194c1ee6eefdf4cfafd747b9a604c555e25 100644
--- a/test/geomechanics/el1p2c/el1p2cproblem.hh
+++ b/test/geomechanics/el1p2c/el1p2cproblem.hh
@@ -82,8 +82,9 @@ namespace Dumux
     SET_BOOL_PROP(El1P2CProblem, ImplicitWithStabilization, true);
 
     // Apply superlu as linear solver
+#if HAVE_SUPERLU
     SET_TYPE_PROP(El1P2CProblem, LinearSolver, Dumux::SuperLUBackend<TypeTag> );
-
+#endif
 }
 
 /*!