Skip to content

Commit 8d9c0f7

Browse files
committed
Avoid using mzlib when not needed.
1 parent d9b8fe5 commit 8d9c0f7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

web-server-doc/info.rkt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
(define build-deps '("net-doc"
66
"net-cookies-doc"
77
"rackunit-doc"
8-
"compatibility-doc"
98
"db-doc"
109
"scribble-doc"
11-
"compatibility-lib"
1210
"db-lib"
1311
"net-lib"
1412
"net-cookies-lib"

web-server-doc/web-server/scribblings/server-faq.scrbl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Using @exec{exec} will reuse the same process, and therefore, the PID
4343
file will be accurate.
4444

4545
Second, if you want to make your own Racket start-up script, you can write:
46-
@(require (for-label mzlib/os))
46+
@(require (for-label racket/os))
4747
@racketblock[
48-
(require mzlib/os)
48+
(require racket/os)
4949
(with-output-to-file _your-pid-file (lambda () (write (getpid))))
5050
(_start-server)
5151
]

0 commit comments

Comments
 (0)