fix mxdemo module

svn: r6986
This commit is contained in:
Matthew Flatt 2007-07-31 11:13:29 +00:00
parent 85225f5ac8
commit 729e4ecbf8
2 changed files with 4 additions and 4 deletions

View File

@ -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"))

View File

@ -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)