#| -*-Scheme-*-
-$Id: make.scm,v 15.27 1998/02/01 05:17:17 cph Exp $
+$Id: make.scm,v 15.28 1998/02/12 04:36:10 cph Exp $
Copyright (c) 1991-98 Massachusetts Institute of Technology
(string-ci=? "HP-UX" microcode-id/operating-system-variant))
(load "floppy" edwin)))))))
((access initialize-package! (->environment '(student scode-rewriting))))
-(add-system! (make-system "6.001" 15 23 '()))
+(add-identification! "6.001" 15 28)
;;; Customize the runtime system:
(set! repl:allow-restart-notifications? false)
#| -*-Scheme-*-
-$Id: load.scm,v 1.3 1995/11/19 19:33:24 adams Exp $
+$Id: load.scm,v 1.4 1998/02/12 04:36:43 cph Exp $
-Copyright (c) 1995 Massachusetts Institute of Technology
+Copyright (c) 1995-98 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
compiled-code-block/filename))))
(package/system-loader "pcs" '() 'QUERY)
-(add-system! (make-system "PC Sampler" 1 0 '()))
+(add-identification! "PC Sampler" 1 0)
(let ()
(define (package-initialize package-name
#| -*-Scheme-*-
-$Id: version.scm,v 14.174 1997/10/22 05:18:12 cph Exp $
+$Id: version.scm,v 14.175 1998/02/12 04:33:28 cph Exp $
-Copyright (c) 1988-97 Massachusetts Institute of Technology
+Copyright (c) 1988-98 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
(declare (usual-integrations))
(define (initialize-package!)
- (set! microcode-system
- (make-system "Microcode"
- microcode-id/version
- microcode-id/modification
- '()))
- (add-system! microcode-system)
+ (snarf-microcode-version!)
(add-event-receiver! event:after-restore snarf-microcode-version!)
(add-identification! "Runtime" 14 174))
-(define microcode-system)
-
(define (snarf-microcode-version!)
- (set-system/version! microcode-system microcode-id/version)
- (set-system/modification! microcode-system microcode-id/modification))
\ No newline at end of file
+ (add-identification! "Microcode"
+ microcode-id/version
+ microcode-id/modification))
\ No newline at end of file
;;; -*-Scheme-*-
;;;
-;;; $Id: load.scm,v 1.3 1997/06/16 09:01:25 cph Exp $
+;;; $Id: load.scm,v 1.4 1998/02/12 04:38:36 cph Exp $
;;;
-;;; Copyright (c) 1995-97 Massachusetts Institute of Technology
+;;; Copyright (c) 1995-98 Massachusetts Institute of Technology
;;;
;;; This material was developed by the Scheme project at the
;;; Massachusetts Institute of Technology, Department of Electrical
(install 'DEFINE-COMPUTED-EMP 'TRANSFORM:DEFINE-COMPUTED-EMP)
;;(install 'METHOD 'TRANSFORM:METHOD)
)
-(add-system! (make-system "SOS" 1 3 '()))
\ No newline at end of file
+(add-identification! "SOS" 1 4)
\ No newline at end of file
(pathname-as-directory "lib/swat")
(lambda ()
(package/system-loader "swat" '() 'QUERY)))
- (add-system! (make-system "SWAT" 1 0 '()))))
+ (add-identification! "SWAT" 1 0)))
|#
#| -*-Scheme-*-
-$Id: load.scm,v 1.1 1995/07/11 02:03:43 ziggy Exp $
+$Id: load.scm,v 1.2 1998/02/12 04:38:00 cph Exp $
-Copyright (c) 1994 Massachusetts Institute of Technology
+Copyright (c) 1994-98 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
'ok)
(else
(package/system-loader "wabbit" '() 'QUERY)
- (add-system! (make-system "Wabbit Hunting / Headhunting GC" 1 0 '()))
+ (add-identification! "Wabbit Hunting / Headhunting GC" 1 0)
(let ()
(define (package-initialize package-name
#| -*-Scheme-*-
-$Id: make.scm,v 1.3 1998/02/01 05:17:47 cph Exp $
+$Id: make.scm,v 1.4 1998/02/12 04:35:20 cph Exp $
Copyright (c) 1993-98 Massachusetts Institute of Technology
;;;; Win32 subsystem: System Construction
(declare (usual-integrations))
-
+\f
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
((access with-directory-rewriting-rule
;((package/reference (find-package '(WIN32))
; 'INITIALIZE-PACKAGE!))
-(add-system! (make-system "Win32" 1 0 '()))
+(add-identification! "Win32" 1 4)
(define (package-initialize package-name procedure-name mandatory?)
(package-initialize '(win32) 'initialize-package! #t)
(package-initialize '(win32) 'init-wf_user! #t)
(package-initialize '(win32 scheme-graphics) 'initialize-package! #t)
-(package-initialize '(win32 dib) 'initialize-package! #t)
+(package-initialize '(win32 dib) 'initialize-package! #t)
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 1.1 1994/11/19 02:02:36 adams Exp $
+$Id: make.scm,v 1.2 1998/02/12 04:43:09 cph Exp $
-Copyright (c) 1988-1994 Massachusetts Institute of Technology
+Copyright (c) 1988-98 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
'INITIALIZE-PACKAGE!)))))
(initialize-package! '(COMPILER MACROS))
(initialize-package! '(COMPILER DECLARATIONS)))
- (add-system!
- (make-system (string-append "Liar ("
- (if (procedure? architecture-name)
- (architecture-name)
- architecture-name)
- ")")
- 5 0
- '()))))
\ No newline at end of file
+ (add-identification! (string-append "Liar ("
+ (if (procedure? architecture-name)
+ (architecture-name)
+ architecture-name)
+ ")")
+ 5 0)))
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 4.32 1997/07/15 18:32:04 adams Exp $
+$Id: make.scm,v 4.33 1998/02/12 04:42:26 cph Exp $
-Copyright (c) 1988-1997 Massachusetts Institute of Technology
+Copyright (c) 1988-98 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
'USUAL-INTEGRATIONS/INITIALIZE-EXPANDERS!))
((package/reference (find-package '(SCODE-OPTIMIZER))
'USUAL-INTEGRATIONS/CACHE!))))
-(add-system! (make-system "SF" 4 32 '()))
\ No newline at end of file
+(add-identification! "SF" 4 33)
\ No newline at end of file