From 1937b39079021e0ae74f354e0ef2692ccdd5b664 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 10 Apr 2005 18:19:05 +0000 Subject: [PATCH] Drag in relocate unless NORELOCATE is defined, since it's now called only via the initialisation function table. --- src/core/config.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/core/config.c b/src/core/config.c index d85ca242..9407df18 100644 --- a/src/core/config.c +++ b/src/core/config.c @@ -208,3 +208,10 @@ REQUIRE_OBJECT ( btext ); REQUIRE_OBJECT ( pc_kbd ); #endif +/* + * Drag in relocate.o if required + */ + +#ifndef NORELOCATE +REQUIRE_OBJECT ( relocate ); +#endif