make "base" depend on "racket-lib"

The "racket-lib" package has dependencies on native libraries
that are useful to the base libraries (currently only on
Windows).
This commit is contained in:
Matthew Flatt 2013-08-18 12:29:18 -06:00
parent d9e226824f
commit 67b37add95

View File

@ -1,14 +1,19 @@
#lang info
;; The "base" package exists only as a way to declare dependencies
;; The "base" package exists mainly as a way to declare dependencies
;; on the current Racket core. If the core gets smaller in the
;; future, then "base" can have new dependencies to cover things
;; moved out of the core, while a new "base2" package can represent
;; the new, smaller core.
;; The "base" package also depends on "raclet-lib", which ensures that
;; any native libraries needed for a platform are installed along with
;; practically any package installation.
(define collection 'multi)
(define deps '())
(define deps '("racket-lib"))
(define implies '(core))
(define pkg-desc "Racket libraries that are currently always available")