Move most of the guts of shell command processing into libguile,
authorJim Blandy <jimb@red-bean.com>
Sun, 20 Apr 1997 19:58:45 +0000 (19:58 +0000)
committerJim Blandy <jimb@red-bean.com>
Sun, 20 Apr 1997 19:58:45 +0000 (19:58 +0000)
commit224c49f96a62505285bb92e1ba7151d3a78ab6b8
tree7441da5bb17e983f7bf35d635e77b56e03ee9bb6
parentdab94cac68a1e5935e9b481a4ac10b76f3a6de70
Move most of the guts of shell command processing into libguile,
so guile.c can be very small (and eventuallly auto-generated.  (I
mean, generated mechanically, not self-generated.  Hmm.))
* guile.c, script.c, script.h: New source files.
* init.c (scm_boot_guile_1): Call scm_init_script.
* libguile.h: #include "script.h".
* Makefile.am (bin_PROGRAMS, guile_SOURCES, guile_LDADD): New
targets, for new executable.
(libguile_la_SOURCES): Mention script.c.
(modinclude_HEADERS): Add script.h.
* configure.in: Always check for -lm, -lsocket, -lnsl, whether or
not dynamic linking is enabled.  This is because we're generating
executables now.  Move CY_AC_WITH_THREADS call after those, so the
values of cy_cv_threads_libs captures the libs chosen above.
* Makefile.in, configure, aclocal.m4: Regenerated.
libguile/script.c [new file with mode: 0644]
libguile/script.h [new file with mode: 0644]