diff options
author | Jim Blandy <jimb@red-bean.com> | 1997-04-19 13:25:21 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1997-04-19 13:25:21 +0000 |
commit | 0487b82f9fcee628c2482e14df38e5a7ff71149c (patch) | |
tree | 4f9fb545632d25387a47fcbbdffd46d071c7340a /libguile/libguile.h | |
parent | 5ac58d89abcc7b6c00be2280de5bcceca8f7a00a (diff) | |
download | guile-0487b82f9fcee628c2482e14df38e5a7ff71149c.tar.gz |
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.
Diffstat (limited to 'libguile/libguile.h')
-rw-r--r-- | libguile/libguile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/libguile.h b/libguile/libguile.h index a35a09b11..b3db2ec51 100644 --- a/libguile/libguile.h +++ b/libguile/libguile.h @@ -99,6 +99,7 @@ #include "libguile/read.h" #include "libguile/root.h" #include "libguile/scmsigs.h" +#include "libguile/script.h" #include "libguile/sequences.h" #include "libguile/simpos.h" #include "libguile/snarf.h" |