1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

* fluids.c: Removed use of assert.h (in order to avoid

__eprintf).

* Makefile.am (libguile_la_LDFLAGS): Added -export-dynamic.

* dynl.c (maybe_drag_in_eprintf): Disabled through #ifdef 0.
This commit is contained in:
Mikael Djurfeldt 1998-05-02 22:26:44 +00:00
parent 680ed4a802
commit 104d453328
4 changed files with 10 additions and 7 deletions

View file

@ -45,6 +45,7 @@
Author: Aubrey Jaffer
Modified for libguile by Marius Vollmer */
#if 0 /* Disabled until we know for sure that it isn't needed */
/* XXX - This is only here to drag in a definition of __eprintf. This
is needed for proper operation of dynamic linking. The real
solution would probably be a shared libgcc. */
@ -57,6 +58,7 @@ maybe_drag_in_eprintf ()
{
assert (!maybe_drag_in_eprintf);
}
#endif
#include <stdio.h>
#include "_scm.h"