summaryrefslogtreecommitdiffstats
path: root/mkimpcat.scm
blob: 2f6c13ab0822d764e560e8ff67b59a30cd154ad3 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
;; Copyright (C) 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this software; see the file COPYING.  If not, write to
;; the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111, USA.
;;
;; As a special exception, the Free Software Foundation gives permission
;; for additional uses of the text contained in its release of GUILE.
;;
;; The exception is that, if you link the GUILE library with other files
;; to produce an executable, this does not by itself cause the
;; resulting executable to be covered by the GNU General Public License.
;; Your use of that executable is in no way restricted on account of
;; linking the GUILE library code into it.
;;
;; This exception does not however invalidate any other reasons why
;; the executable file might be covered by the GNU General Public License.
;;
;; This exception applies only to the code released by the
;; Free Software Foundation under the name GUILE.  If you copy
;; code from other Free Software Foundation releases into a copy of
;; GUILE, as the General Public License permits, the exception does
;; not apply to the code that you add in this way.  To avoid misleading
;; anyone as to the status of such modified files, you must delete
;; this exception notice from them.
;;
;; If you write modifications of your own for GUILE, it is your choice
;; whether to permit this exception to apply to your modifications.
;; If you do not wish that, delete this exception notice.

;;;; "mkimpcat.scm" Build SCM-specific catalog for SLIB.
;;; Author: Aubrey Jaffer.

(define (installation-vicinity) "/usr/lib/scm/")

(let ((catname "implcat"))
  (call-with-output-file (in-vicinity (implementation-vicinity) catname)
    (lambda (op)
      (define (display* . args)
	(for-each (lambda (arg) (display arg op)) args)
	(newline op))
      (define wb:vicinity (string-append (installation-vicinity) "../wb/"))
      (define x-scm:vicinity
	(string-append (installation-vicinity) "../xscm-2.01/"))
      (define (add-link feature ofile . libs)
	(cond ((file-exists? ofile)
	       ;; remove #f from libs list
	       (set! libs (let rem ((l libs))
			    (cond ((null? l) l)
				  ((car l) (cons (car l) (rem (cdr l))))
				  (else (rem (cdr l))))))
	       (display " " op)
	       (write (cons feature (cons 'compiled (cons ofile libs))) op)
	       (newline op)
	       #t)
	      (else #f)))
      (define (add-alias from to)
	(display " " op)
	(write (cons from to) op)
	(newline op))
      (define (add-source feature filename) (add-alias feature filename))
      (define (add-links feature usr:lib x:lib link:able-suffix)
	(display* "#+" feature)
	(display* "(")
	(begin
	  (cond ((add-link 'i/o-extensions
			   (in-vicinity (installation-vicinity) "ioext"
					link:able-suffix)
			   (usr:lib "c"))
		 (add-alias 'directory-for-each 'i/o-extensions)
		 (add-alias 'line-i/o 'i/o-extensions)
		 (add-alias 'pipe 'i/o-extensions)))
	  (cond ((add-link 'rev2-procedures
			   (in-vicinity (installation-vicinity) "sc2"
					link:able-suffix))
		 (add-alias  'rev3-procedures 'rev2-procedures)))
	  (cond ((or
		  (add-link 'db
			    (in-vicinity wb:vicinity "db.so"))
		  (add-link 'db
			    (in-vicinity wb:vicinity "db" link:able-suffix)
			    (in-vicinity wb:vicinity "handle" link:able-suffix)
			    (in-vicinity wb:vicinity "blink" link:able-suffix)
			    (in-vicinity wb:vicinity "prev" link:able-suffix)
			    (in-vicinity wb:vicinity "ent" link:able-suffix)
			    (in-vicinity wb:vicinity "sys" link:able-suffix)
			    (in-vicinity wb:vicinity "del" link:able-suffix)
			    (in-vicinity wb:vicinity "stats" link:able-suffix)
			    (in-vicinity wb:vicinity "blkio" link:able-suffix)
			    (in-vicinity wb:vicinity "scan" link:able-suffix)
			    (usr:lib "c")))
		 (add-source 'wb-table
			     (in-vicinity wb:vicinity "wbtab"))
		 (add-alias 'wb 'db)))
	  (cond ((add-link 'stringvector
			   (in-vicinity x-scm:vicinity "strvec" link:able-suffix))
		 (add-source 'x11   (in-vicinity x-scm:vicinity "x11"))
		 (add-source 'xevent(in-vicinity x-scm:vicinity "xevent"))
		 (add-source 'xt    (in-vicinity x-scm:vicinity "xt"))
		 (add-source 'xm    (in-vicinity x-scm:vicinity "xm"))
		 (add-source 'xmsubs(in-vicinity x-scm:vicinity "xmsubs"))
		 (add-source 'xaw   (in-vicinity x-scm:vicinity "xaw"))
		 (add-source 'xpm   (in-vicinity x-scm:vicinity "xpm"))))

	  (add-link 'turtle-graphics
		    (in-vicinity (installation-vicinity) "turtlegr"
				 link:able-suffix)
		    (x:lib "X11")
		    (usr:lib "m")
		    (usr:lib "c"))
	  (add-link 'Xlib
		    (in-vicinity (installation-vicinity) "x"
				 link:able-suffix)
		    (x:lib "X11")
		    (usr:lib "c"))
	  (add-link 'curses
		    (in-vicinity (installation-vicinity) "crs"
				 link:able-suffix)
		    (usr:lib "ncurses")
		    ;;(usr:lib "curses")
		    ;;(usr:lib "termcap")
		    (usr:lib "c"))
	  (add-link 'edit-line
		    (in-vicinity (installation-vicinity) "edline"
				 link:able-suffix)
		    (usr:lib "readline")
		    (usr:lib "termcap")
		    (usr:lib "c"))
	  (add-link 'regex
		    (in-vicinity (installation-vicinity) "rgx"
				 link:able-suffix)
		    (usr:lib "c"))
	  (add-link 'unix
		    (in-vicinity (installation-vicinity) "unix"
				 link:able-suffix)
		    (in-vicinity (installation-vicinity) "ioext"
				 link:able-suffix)
		    (usr:lib "c"))
	  (add-link 'posix
		    (in-vicinity (installation-vicinity) "posix"
				 link:able-suffix)
		    (usr:lib "c"))
	  (add-link 'socket
		    (in-vicinity (installation-vicinity) "socket"
				 link:able-suffix)
		    (usr:lib "c"))
	  (add-link 'record
		    (in-vicinity (installation-vicinity) "record"
				 link:able-suffix))
	  (add-link 'generalized-c-arguments
		    (in-vicinity (installation-vicinity) "gsubr"
				 link:able-suffix))
	  (add-link 'array-for-each
		    (in-vicinity (installation-vicinity) "ramap"
				 link:able-suffix))
	  )
	(display* ")")
	)

      (begin
	(display* ";\"" catname "\" Implementation-specific SLIB catalog for "
		  (scheme-implementation-type) (scheme-implementation-version)
		  ".  -*-scheme-*-")
	(display* ";")
	(display* ";			DO NOT EDIT THIS FILE")
	(display* "; it is automagically generated by \"" *load-pathname* "\"")
	(newline op)
	)

      ;; Output association lists to file "implcat"

      (begin
	;; Simple associations -- OK for all modes of dynamic-linking
	(display* "(")
	(add-alias 'hobbit (in-vicinity (installation-vicinity) "hobbit"))
	(add-alias 'scmhob (in-vicinity (installation-vicinity) "scmhob"))
	(add-alias 'regex-case
		    (in-vicinity (installation-vicinity) "rgxcase"))
	(add-alias 'url-filename
		    (in-vicinity (installation-vicinity) "urlfile"))
	(add-source 'disarm (in-vicinity
			     (installation-vicinity)
			     (string-append "disarm" (scheme-file-suffix))))
	(add-source 'build (in-vicinity
			    (implementation-vicinity)
			    (string-append "build" (scheme-file-suffix))))

	;; (add-alias 'impl:callback '(identity))

	(display* ")")
	)

      (begin
	;; Messy because this trait has no C-installed feature name
	(display* "#.(if (defined? renamed-identifier)")
	(display* "      '(")
	(display "       " op)
	(add-source 'macro (in-vicinity (installation-vicinity) "Macro"))
	(display* "        )")
	(display* "      '())")
	)

      (add-links 'dld
		 (lambda (lib) (string-append "/usr/lib/lib" lib ".a"))
		 (lambda (lib) (string-append "/usr/X11/lib/lib" lib ".sa"))
		 ".o")
      (add-links 'dld:dyncm
		 (lambda (lib)
		   (or (and (member lib '("c" "m"))
			    (let ((sa (string-append "/usr/lib/lib" lib ".sa")))
			      (and (file-exists? sa) sa)))
		       (string-append "/usr/lib/lib" lib ".a")))
		 (lambda (lib) (string-append "/usr/X11/lib/lib" lib ".sa"))
		 ".o")
      (add-links 'shl
		 (lambda (lib)
		   (if (member lib '("c" "m"))
		       (string-append "/lib/lib" lib ".sl")
		       (string-append "/usr/lib/lib" lib ".sl")))
		 (lambda (lib)
		   (string-append "/usr/X11R5/lib/lib" lib ".sl"))
		 ".sl")
      (add-links 'sun-dl
		 ;; These libraries are (deferred) linked in conversion to ".so"
		 (lambda (lib) #f)
		 (lambda (lib) #f)
		 ".so")
      )))