From 729e4ecbf82ce0302ddd52eee37d8e2b52473a7a Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 31 Jul 2007 11:13:29 +0000 Subject: [PATCH] fix mxdemo module svn: r6986 --- collects/mysterx/info.ss | 1 - collects/mysterx/mxdemo.ss | 7 ++++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/mysterx/info.ss b/collects/mysterx/info.ss index 804944c5e5..1268c8a41f 100644 --- a/collects/mysterx/info.ss +++ b/collects/mysterx/info.ss @@ -10,5 +10,4 @@ "ActiveX controls and other COM components under Windows. " "MysterX also has a programmable Web browser with support for " "Dynamic HTML.")) - (define compile-omit-files '("mxdemo.ss")) (define post-install-collection "installer.ss")) diff --git a/collects/mysterx/mxdemo.ss b/collects/mysterx/mxdemo.ss index dec99ea985..29acbcd1a8 100644 --- a/collects/mysterx/mxdemo.ss +++ b/collects/mysterx/mxdemo.ss @@ -11,10 +11,11 @@ (require (lib "mysterx.ss" "mysterx")) (require (lib "runtime-path.ss") - (lib "system.ss")) + (lib "process.ss")) + ;; Ensure that DLLs are included with the distibution: - (define-runtime-path myspage-dll (so "myspage")) - (define-runtime-path myssink-dll (so "myssink")) + (define-runtime-path myspage-dll '(so "myspage")) + (define-runtime-path myssink-dll '(so "myssink")) ;; Register them every time we start: (system* "regsvr32.exe" "/s" myspage-dll) (system* "regsvr32.exe" "/s" myssink-dll)