diff --git a/libguile/Makefile.in b/libguile/Makefile.in index 574ad748b..6e68c9959 100644 --- a/libguile/Makefile.in +++ b/libguile/Makefile.in @@ -67,7 +67,6 @@ DLLTOOL = @DLLTOOL@ GUILE_LIBS = @GUILE_LIBS@ GUILE_MAJOR_VERSION = @GUILE_MAJOR_VERSION@ GUILE_MINOR_VERSION = @GUILE_MINOR_VERSION@ -GUILE_STAMP = @GUILE_STAMP@ GUILE_VERSION = @GUILE_VERSION@ LD = @LD@ LIBLOBJS = @LIBLOBJS@ diff --git a/libguile/version.c b/libguile/version.c index e70382010..74aa556e0 100644 --- a/libguile/version.c +++ b/libguile/version.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996, 1999 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -76,16 +76,6 @@ scm_version () return scm_makfrom0str (GUILE_VERSION); } -/* Return a Scheme string containing Guile's configuration stamp. */ - -SCM_PROC(s_libguile_config_stamp, "libguile-config-stamp", 0, 0, 0, scm_libguile_config_stamp); - -SCM -scm_libguile_config_stamp () -{ - return scm_makfrom0str (GUILE_STAMP); -} - diff --git a/libguile/version.h b/libguile/version.h index b8b12abb8..4519b1e5c 100644 --- a/libguile/version.h +++ b/libguile/version.h @@ -2,7 +2,7 @@ #ifndef VERSIONH #define VERSIONH -/* Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -51,7 +51,6 @@ extern SCM scm_major_version SCM_P ((void)); extern SCM scm_minor_version SCM_P ((void)); extern SCM scm_version SCM_P ((void)); -extern SCM scm_libguile_config_stamp SCM_P ((void)); extern void scm_init_version SCM_P ((void)); #endif /* VERSIONH */