From e5ca6cc2bf166eca6e433a78e29e7fd5eedcb9db Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Wed, 27 Nov 2013 00:07:27 -0500 Subject: [PATCH] Minimize xrepl-lib dependencies XREPL already doesn't declare dependencies on its optional features such as launching DrRacket or opening the docs. The consensus seems to be that it's best not to declare these and to gracefully degrade if they're missing. For XREPL, the error message could be better, but it currently lets the user keep going when the `dynamic-require` fails. --- pkgs/xrepl-pkgs/xrepl-lib/info.rkt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/xrepl-pkgs/xrepl-lib/info.rkt b/pkgs/xrepl-pkgs/xrepl-lib/info.rkt index c5b0f5dfae..3169742b72 100644 --- a/pkgs/xrepl-pkgs/xrepl-lib/info.rkt +++ b/pkgs/xrepl-pkgs/xrepl-lib/info.rkt @@ -4,9 +4,7 @@ (define deps '("base" "readline-lib" - "scribble-lib" - "scribble-text-lib" - "macro-debugger-text-lib")) + "scribble-text-lib")) (define pkg-desc "implementation (no documentation) part of \"xrepl\"")