mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
* Renamed GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
This commit is contained in:
parent
78930a69ee
commit
887dfa7d56
5 changed files with 21 additions and 11 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
|
* acconfig.h, configure.in: Renamed
|
||||||
|
GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
|
||||||
|
|
||||||
2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* acinclude.m4: Removed copy of "libtool.m4".
|
* acinclude.m4: Removed copy of "libtool.m4".
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
#undef SCM_DEBUG_DEPRECATED
|
#undef SCM_DEBUG_DEPRECATED
|
||||||
|
|
||||||
/* Define this to control the default warning level for deprecated features */
|
/* Define this to control the default warning level for deprecated features */
|
||||||
#undef GUILE_WARN_DEPRECATED_DEFAULT
|
#undef SCM_WARN_DEPRECATED_DEFAULT
|
||||||
|
|
||||||
/* Define these two if you want support for debugging of Scheme
|
/* Define these two if you want support for debugging of Scheme
|
||||||
programs. */
|
programs. */
|
||||||
|
|
|
@ -110,7 +110,7 @@ else
|
||||||
warn_default=$enable_deprecated
|
warn_default=$enable_deprecated
|
||||||
fi
|
fi
|
||||||
AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)
|
AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)
|
||||||
AC_DEFINE_UNQUOTED(GUILE_WARN_DEPRECATED_DEFAULT, "$warn_default")
|
AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl The --disable-debug used to control these two. But now they are
|
dnl The --disable-debug used to control these two. But now they are
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
|
* deprecation.c (scm_init_deprecation): Renamed
|
||||||
|
GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
|
||||||
|
|
||||||
2001-05-16 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-05-16 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* Makefile.am (cpp_sig_symbols.c, cpp_err_symbols.c): Make
|
* Makefile.am (cpp_sig_symbols.c, cpp_err_symbols.c): Make
|
||||||
|
|
|
@ -137,7 +137,7 @@ scm_init_deprecation ()
|
||||||
#if SCM_DEBUG_DEPRECATED == 0
|
#if SCM_DEBUG_DEPRECATED == 0
|
||||||
const char *level = getenv ("GUILE_WARN_DEPRECATED");
|
const char *level = getenv ("GUILE_WARN_DEPRECATED");
|
||||||
if (level == NULL)
|
if (level == NULL)
|
||||||
level = GUILE_WARN_DEPRECATED_DEFAULT;
|
level = SCM_WARN_DEPRECATED_DEFAULT;
|
||||||
if (!strcmp (level, "detailed"))
|
if (!strcmp (level, "detailed"))
|
||||||
issued_msgs = scm_permanent_object (scm_c_make_hash_table (17));
|
issued_msgs = scm_permanent_object (scm_c_make_hash_table (17));
|
||||||
else if (!strcmp (level, "no"))
|
else if (!strcmp (level, "no"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue