freebsd-ports/lang/schemetoc/files
Andreas Schulz 98809741d2 Add a -L/usr/X11R6/lib in all the places wheres -lX11 is used. I have
not found a quick way to do that with a environment variable in
string constant. So this ports works in the moment only with XFree3.x
(X11R6) and not with XFree2.x (X11R5 <-> X386).
1995-03-30 17:03:48 +00:00
..
main.c Add a -L/usr/X11R6/lib in all the places wheres -lX11 is used. I have 1995-03-30 17:03:48 +00:00
Makefile Reviewed by: 1995-01-30 09:13:52 +00:00
makefile-head Add a -L/usr/X11R6/lib in all the places wheres -lX11 is used. I have 1995-03-30 17:03:48 +00:00
options-server.h Scheme to C compiler and interpreter - 15mar93 1994-12-29 23:35:47 +00:00
options.h Scheme to C compiler and interpreter - 15mar93 1994-12-29 23:35:47 +00:00
README.FreeBSD Reviewed by: 1995-01-30 09:13:52 +00:00
x86.s Scheme to C compiler and interpreter - 15mar93 1994-12-29 23:35:47 +00:00

Notes for Scheme-to-C port for FreeBSD:

The documentation provided on the X library interface for Scheme-to-C
was very limited and as a result I'm not sure if I've got it right.
Instead of using having the compiler link the library archives libsc.a
(the standard schemetoc library) or scxl.a (the x library), two shared
libraries are included, libsc.so.1.0 and libscxl.so.1.0.  

The syntax of the scc compiler has been extended to automatically
use dynamic linking unless the -static flag is specified on the scc
command line.

For compiling exectables on the command line from only object files
it has no method of knowing if you need the X library linked in,
and will by default not.  So, if you are building an application 
written for scheme->c which needs X support (such as ezd), you
will need to supply a -lX11 flag on the command line.  If you are
compiling a single scheme file(not an object file) which has the
(with xlib) line in the module statement it is not neccesary to 
include -lX11.

Those not wishing to use the X library support can delete the following
files:  

libscxl.so.1.0 		The shared lib.
schemetoc/scxl.a	The library archive.
bin/scixl		The X lib interpreter.

Each is about 1.4 megabytes.