guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core configure.in TODO INSTALL Chan...


From: Martin Grabmueller
Subject: guile/guile-core configure.in TODO INSTALL Chan...
Date: Thu, 19 Jul 2001 13:56:55 -0700

CVSROOT:        /cvs
Module name:    guile
Branch:         branch_release-1-6
Changes by:     Martin Grabmueller <address@hidden>     01/07/19 13:56:55

Modified files:
        guile-core     : configure.in TODO INSTALL ChangeLog Makefile.am 

Log message:
        * INSTALL, Makefile.am, configure.in: Updated copyright notice.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/configure.in.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.157.2.1&tr2=1.157.2.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/TODO.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.18.2.7&tr2=1.18.2.8&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/INSTALL.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.33.2.1&tr2=1.33.2.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/ChangeLog.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.281.2.5&tr2=1.281.2.6&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/Makefile.am.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.26&tr2=1.26.2.1&r1=text&r2=text

Patches:
Index: guile/guile-core/ChangeLog
diff -u guile/guile-core/ChangeLog:1.285 guile/guile-core/ChangeLog:1.286
--- guile/guile-core/ChangeLog:1.285    Sun Jul 15 14:52:25 2001
+++ guile/guile-core/ChangeLog  Thu Jul 19 10:47:08 2001
@@ -1,3 +1,8 @@
+2001-07-19  Rob Browning  <address@hidden>
+
+       * configure.in: add checks for setitimer and getitimer.
+       Add --enable-error-on-warning.
+
 2001-07-15  Thien-Thi Nguyen  <address@hidden>
 
        * HACKING: Remove onerous authorship-info deletion clause.
Index: guile/guile-core/INSTALL
diff -u guile/guile-core/INSTALL:1.33 guile/guile-core/INSTALL:1.34
--- guile/guile-core/INSTALL:1.33       Tue Jul  3 10:42:11 2001
+++ guile/guile-core/INSTALL    Tue Jul 10 08:09:59 2001
@@ -83,7 +83,7 @@
   If you have automake, autoconf, and libtool installed on your
   system, this switch causes configure to generate Makefiles which
   know how to automatically regenerate configure scripts, makefiles,
-  and headers, when they are out of date.  The README file says which
+  and headers, when they are out of date.  The HACKING file says which
   versions of those tools you will need.
 
 
Index: guile/guile-core/Makefile.am
diff -u guile/guile-core/Makefile.am:1.25 guile/guile-core/Makefile.am:1.26
--- guile/guile-core/Makefile.am:1.25   Thu May 31 08:54:25 2001
+++ guile/guile-core/Makefile.am        Wed Jun 27 03:05:27 2001
@@ -29,7 +29,7 @@
 
 # automake sometimes forgets to distribute acconfig.h,
 # apparently depending on the phase of the moon.
-EXTRA_DIST = qthreads.m4 HACKING GUILE-VERSION ANON-CVS SNAPSHOTS \
+EXTRA_DIST = qthreads.m4 HACKING GUILE-VERSION ANON-CVS SNAPSHOTS TODO \
             test-suite $(ACLOCAL) acconfig.h
 
 TESTS = check-guile
Index: guile/guile-core/TODO
diff -u guile/guile-core/TODO:1.19 guile/guile-core/TODO:1.20
--- guile/guile-core/TODO:1.19  Sun Jul  8 14:04:03 2001
+++ guile/guile-core/TODO       Sun Jul  8 16:16:04 2001
@@ -1,4 +1,4 @@
-[ID: $Id: TODO,v 1.19 2001/07/08 21:04:03 mvo Exp $]
+-*-text-*-
 
 These TODO items are grouped by target release version.  The first group is
 the "Eventually" group, which is not associated w/ any particular version.
@@ -61,13 +61,17 @@
 - eliminate argument checking for closures
 - Implement a thread-safe alternative to SCM's environment caches
 
+=== Before releasing 1.8.0:
 
-=== In release 1.6.0:
+- Make sure we have appropriate interface numbers for shared
+  libraries, and that we document and use the libtool
+  conventions. [rlb].
 
-- Make sure that the deprecation mechanism explained in INSTALL and
-  README is completed and works.
+- Update the version numbers in GUILE-VERSION and README. [rlb]
 
-=== In release 1.8.0:
+- Start a new section of the NEWS file.
+
+- Start a new THANKS file.
 
 - remove deprecated functions scm_read_0str, scm_eval_0str.
 
Index: guile/guile-core/configure.in
diff -u guile/guile-core/configure.in:1.157 guile/guile-core/configure.in:1.158
--- guile/guile-core/configure.in:1.157 Tue Jun 26 10:53:08 2001
+++ guile/guile-core/configure.in       Thu Jul 19 10:46:42 2001
@@ -43,6 +43,14 @@
 #
 #--------------------------------------------------------------------
 
+AC_ARG_ENABLE(error-on-warning,
+  [  --enable-error-on-warning    treat compile warnings as errors],
+  [case "${enableval}" in
+     yes | y) CFLAGS="${CFLAGS} -Werror"; enable_compile_warnings=no ;;
+     no | n)  ;;
+     *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
+   esac])
+
 AC_ARG_ENABLE(debug-freelist,
   [  --enable-debug-freelist include garbage collector freelist debugging 
code],
   if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; 
then
@@ -232,7 +240,7 @@
 AC_SUBST(LIBLTDL)
 AC_SUBST(DLPREOPEN)
 
-AC_CHECK_FUNCS(ctermid ftime fchown getcwd geteuid gettimeofday lstat mkdir 
mknod nice readlink rename rmdir select setegid seteuid setlocale setpgid 
setsid sigaction siginterrupt strftime strptime symlink sync tcgetpgrp 
tcsetpgrp times uname waitpid strdup system usleep atexit on_exit chown link 
fcntl ttyname getpwent getgrent kill getppid getpgrp fork)
+AC_CHECK_FUNCS(ctermid ftime fchown getcwd geteuid gettimeofday lstat mkdir 
mknod nice readlink rename rmdir select setegid seteuid setlocale setpgid 
setsid sigaction siginterrupt strftime strptime symlink sync tcgetpgrp 
tcsetpgrp times uname waitpid strdup system usleep atexit on_exit chown link 
fcntl ttyname getpwent getgrent kill getppid getpgrp fork setitimer getitimer)
 
 AC_CHECK_HEADERS(crypt.h sys/resource.h sys/file.h)
 AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass 
sethostname gethostname)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]