mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 20:30:28 +02:00
Remove Totoro kludge.
* Makefile.in, scmconfig.h.in: Regenerated. * init.c, readline.c: Don't check if TOTORO is #defined.
This commit is contained in:
parent
735d4183d7
commit
9623ba323f
4 changed files with 2 additions and 22 deletions
|
@ -77,7 +77,6 @@ MAINT = @MAINT@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
NM = @NM@
|
NM = @NM@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PROG_HOSTNAME = @PROG_HOSTNAME@
|
|
||||||
QTHREAD_LTLIBS = @QTHREAD_LTLIBS@
|
QTHREAD_LTLIBS = @QTHREAD_LTLIBS@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
THREAD_CPPFLAGS = @THREAD_CPPFLAGS@
|
THREAD_CPPFLAGS = @THREAD_CPPFLAGS@
|
||||||
|
|
|
@ -458,9 +458,7 @@ scm_boot_guile_1 (base, closure)
|
||||||
scm_init_unif ();
|
scm_init_unif ();
|
||||||
scm_init_simpos ();
|
scm_init_simpos ();
|
||||||
scm_init_load_path ();
|
scm_init_load_path ();
|
||||||
#if defined (HAVE_RL_GETC_FUNCTION) || defined (TOTORO)
|
#if defined (HAVE_RL_GETC_FUNCTION)
|
||||||
/* The test for TOTORO is a kludge to make totoro.red-bean.com
|
|
||||||
generate snapshots correctly. */
|
|
||||||
scm_init_readline ();
|
scm_init_readline ();
|
||||||
#endif
|
#endif
|
||||||
scm_init_standard_ports ();
|
scm_init_standard_ports ();
|
||||||
|
|
|
@ -43,9 +43,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include "_scm.h"
|
#include "_scm.h"
|
||||||
#if defined (HAVE_RL_GETC_FUNCTION) || defined (TOTORO)
|
#if defined (HAVE_RL_GETC_FUNCTION)
|
||||||
/* The test for TOTORO is a kludge to make totoro.red-bean.com
|
|
||||||
generate snapshots correctly. */
|
|
||||||
#include <libguile.h>
|
#include <libguile.h>
|
||||||
#include <readline.h>
|
#include <readline.h>
|
||||||
#include <gh.h>
|
#include <gh.h>
|
||||||
|
|
|
@ -140,15 +140,6 @@
|
||||||
/* Define if using cooperative multithreading. */
|
/* Define if using cooperative multithreading. */
|
||||||
#undef USE_COOP_THREADS
|
#undef USE_COOP_THREADS
|
||||||
|
|
||||||
/* Define if using "FSU" pthreads. */
|
|
||||||
#undef USE_FSU_PTHREADS
|
|
||||||
|
|
||||||
/* Define if using MIT pthreads. */
|
|
||||||
#undef USE_MIT_PTHREADS
|
|
||||||
|
|
||||||
/* Define if using PCthreads pthreads. */
|
|
||||||
#undef USE_PCTHREADS_PTHREADS
|
|
||||||
|
|
||||||
/* Define if using any sort of threads. */
|
/* Define if using any sort of threads. */
|
||||||
#undef USE_THREADS
|
#undef USE_THREADS
|
||||||
|
|
||||||
|
@ -179,12 +170,6 @@
|
||||||
/* Define if usleep doesn't return a value. */
|
/* Define if usleep doesn't return a value. */
|
||||||
#undef USLEEP_RETURNS_VOID
|
#undef USLEEP_RETURNS_VOID
|
||||||
|
|
||||||
/* Define if configuring on totoro.red-bean.com.
|
|
||||||
This variable is used in a workaround which forces totoro to include
|
|
||||||
readline support regardless. This kludge should obviously be
|
|
||||||
removed as fast as possible. */
|
|
||||||
#undef TOTORO
|
|
||||||
|
|
||||||
/* Define if you have the bzero function. */
|
/* Define if you have the bzero function. */
|
||||||
#undef HAVE_BZERO
|
#undef HAVE_BZERO
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue