This file is indexed.

/usr/share/racket/collects/compiler/option.rkt is in racket-common 6.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#lang racket/base

(provide somewhat-verbose 
	 ;; default = #f
	 verbose 
	 ;; default = #f
	 
	 setup-prefix 
	 ;; string to embed in public names;
	 ;; used mainly for compiling extensions
	 ;; with the collection name so that 
	 ;; cross-extension conflicts are less
	 ;; likely in architectures that expose
	 ;; the public names of loaded extensions
	 ;; default = ""

	 3m 
	 ;; #t => build for 3m
	 ;; default = #f
	 
	 compile-subcollections
	 ;; #t => compile collection subdirectories
	 ;; default = #t
	 )

(define somewhat-verbose (make-parameter #f))
(define verbose (make-parameter #f))
(define 3m (make-parameter (eq? '3m (system-type 'gc))))

(define setup-prefix (make-parameter ""))

(define compile-subcollections (make-parameter #t))