From b9025808065edbc4cae9660e24fc60af009bf150 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 27 Nov 1997 18:05:28 +0000 Subject: [PATCH] Updated --- libguile/Makefile.in | 28 ++++++++++++++-------------- libguile/scmconfig.h.in | 9 +++++++++ 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/libguile/Makefile.in b/libguile/Makefile.in index dda23db67..74e3e65ba 100644 --- a/libguile/Makefile.in +++ b/libguile/Makefile.in @@ -111,7 +111,7 @@ EXTRA_libguile_la_SOURCES = _scm.h \ backtrace.c stacks.c debug.c srcprop.c \ strerror.c inet_aton.c putenv.c \ threads.c alloca.c \ - regex-posix.c + regex-posix.c iselect.c noinst_HEADERS = coop-threads.c coop-threads.h coop.c @@ -137,7 +137,7 @@ modinclude_HEADERS = \ simpos.h smob.h socket.h srcprop.h stackchk.h stacks.h stime.h \ strings.h strop.h strorder.h strports.h struct.h symbols.h tag.h \ tags.h throw.h unif.h variable.h vectors.h version.h vports.h \ - weaks.h snarf.h threads.h coop-defs.h fluids.h + weaks.h snarf.h threads.h coop-defs.h fluids.h iselect.h modinclude_DATA = scmconfig.h @@ -227,18 +227,18 @@ DEP_FILES = .deps/alist.P .deps/alloca.P .deps/appinit.P \ .deps/gh_init.P .deps/gh_io.P .deps/gh_list.P .deps/gh_predicates.P \ .deps/gh_test_c.P .deps/gh_test_repl.P .deps/gsubr.P .deps/guile.P \ .deps/hash.P .deps/hashtab.P .deps/inet_aton.P .deps/init.P \ -.deps/ioext.P .deps/kw.P .deps/list.P .deps/load.P .deps/mallocs.P \ -.deps/markers.P .deps/net_db.P .deps/numbers.P .deps/objects.P \ -.deps/objprop.P .deps/options.P .deps/pairs.P .deps/ports.P \ -.deps/posix.P .deps/print.P .deps/procprop.P .deps/procs.P \ -.deps/putenv.P .deps/ramap.P .deps/read.P .deps/readline.P \ -.deps/regex-posix.P .deps/root.P .deps/scmsigs.P .deps/script.P \ -.deps/simpos.P .deps/smob.P .deps/socket.P .deps/srcprop.P \ -.deps/stackchk.P .deps/stacks.P .deps/stime.P .deps/strerror.P \ -.deps/strings.P .deps/strop.P .deps/strorder.P .deps/strports.P \ -.deps/struct.P .deps/symbols.P .deps/tag.P .deps/threads.P \ -.deps/throw.P .deps/unif.P .deps/variable.P .deps/vectors.P \ -.deps/version.P .deps/vports.P .deps/weaks.P +.deps/ioext.P .deps/iselect.P .deps/kw.P .deps/list.P .deps/load.P \ +.deps/mallocs.P .deps/markers.P .deps/net_db.P .deps/numbers.P \ +.deps/objects.P .deps/objprop.P .deps/options.P .deps/pairs.P \ +.deps/ports.P .deps/posix.P .deps/print.P .deps/procprop.P \ +.deps/procs.P .deps/putenv.P .deps/ramap.P .deps/read.P \ +.deps/readline.P .deps/regex-posix.P .deps/root.P .deps/scmsigs.P \ +.deps/script.P .deps/simpos.P .deps/smob.P .deps/socket.P \ +.deps/srcprop.P .deps/stackchk.P .deps/stacks.P .deps/stime.P \ +.deps/strerror.P .deps/strings.P .deps/strop.P .deps/strorder.P \ +.deps/strports.P .deps/struct.P .deps/symbols.P .deps/tag.P \ +.deps/threads.P .deps/throw.P .deps/unif.P .deps/variable.P \ +.deps/vectors.P .deps/version.P .deps/vports.P .deps/weaks.P SOURCES = $(libguile_la_SOURCES) $(EXTRA_libguile_la_SOURCES) $(guile_SOURCES) $(gh_test_c_SOURCES) $(gh_test_repl_SOURCES) OBJECTS = $(libguile_la_OBJECTS) $(guile_OBJECTS) $(gh_test_c_OBJECTS) $(gh_test_repl_OBJECTS) diff --git a/libguile/scmconfig.h.in b/libguile/scmconfig.h.in index 0f17790bd..4aba9b394 100644 --- a/libguile/scmconfig.h.in +++ b/libguile/scmconfig.h.in @@ -134,6 +134,9 @@ the Guile library itself. */ #undef GUILE_DEBUG +/* Define to implement scm_internal_select */ +#undef GUILE_ISELECT + /* Define if using cooperative multithreading. */ #undef USE_COOP_THREADS @@ -152,6 +155,9 @@ /* Define if you want support for dynamic linking. */ #undef DYNAMIC_LINKING +/* Define if dlsym automatically supplies a leading underscore. */ +#undef DLSYM_ADDS_USCORE + /* Define if the operating system can restart system calls. */ #undef HAVE_RESTARTS @@ -161,6 +167,9 @@ /* This is included as part of a workaround for a autoheader bug. */ #undef HAVE_REGCOMP +/* Define if you have the bzero function. */ +#undef HAVE_BZERO + /* Define if you have the ctermid function. */ #undef HAVE_CTERMID