changeset 246:6f3a55d18659 noffle

[svn] * aclocal.m4,configure.in,configure: Bump version to 1.1.2 & re-run aclocal/autoconf. * NEWS: Updates for 1.1.2.
author bears
date Fri, 15 Mar 2002 15:25:46 +0000
parents d6e02253fb76
children 7a830ce3211e
files ChangeLog NEWS aclocal.m4 configure configure.in
diffstat 5 files changed, 28 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Mar 15 15:25:13 2002 +0000
+++ b/ChangeLog	Fri Mar 15 15:25:46 2002 +0000
@@ -8,6 +8,13 @@
 * src/group.c: Make comparison against NULL explicit in an if containing
   an assignment, as I'm sad enough to think it is safer if it is obvious
   that the assignment is meant to be there.
+* Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
+  packages/redhat/noffle-xinetd: Update RPM spec file for RH7.2. Fix up
+  'make install' to work properly with 'make install DESTDIR=nnnn' to
+  enable 'make install' use in spec file. Convert from inetd to xinetd.
+* aclocal.m4,configure.in,configure: Bump version to 1.1.2 & re-run
+  aclocal/autoconf.
+* NEWS: Updates for 1.1.2.	
 
 Wed Mar 13 2002 Mirko Liß <mirko.liss@web.de>
 
--- a/NEWS	Fri Mar 15 15:25:13 2002 +0000
+++ b/NEWS	Fri Mar 15 15:25:46 2002 +0000
@@ -1,6 +1,16 @@
 Current development version:
 ----------------------------
 
+1.1.2
+-----
+
+ * Online mode: fetch overviews in appropriate fetch mode for group,
+   fix bug with articles read not fetching full header info but just
+   showing overview info.
+ * RPM spec file updated for RH7.
+ * Remove more potential sources of corruption if disc fills.
+ * Memory leak and other minor bug fixes.
+
 1.1.1
 -----
 
--- a/aclocal.m4	Fri Mar 15 15:25:13 2002 +0000
+++ b/aclocal.m4	Fri Mar 15 15:25:46 2002 +0000
@@ -1,6 +1,6 @@
-dnl aclocal.m4 generated automatically by aclocal 1.4-p4
+dnl aclocal.m4 generated automatically by aclocal 1.4-p5
 
-dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
+dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -12,7 +12,7 @@
 
 # Like AC_CONFIG_HEADER, but automatically create stamp file.
 
-AC_DEFUN(AM_CONFIG_HEADER,
+AC_DEFUN([AM_CONFIG_HEADER],
 [AC_PREREQ([2.12])
 AC_CONFIG_HEADER([$1])
 dnl When config.status generates a header, we must update the stamp-h file.
@@ -42,7 +42,7 @@
 dnl Usage:
 dnl AM_INIT_AUTOMAKE(package,version, [no-define])
 
-AC_DEFUN(AM_INIT_AUTOMAKE,
+AC_DEFUN([AM_INIT_AUTOMAKE],
 [AC_REQUIRE([AC_PROG_INSTALL])
 PACKAGE=[$1]
 AC_SUBST(PACKAGE)
@@ -70,7 +70,7 @@
 # Check to make sure that the build environment is sane.
 #
 
-AC_DEFUN(AM_SANITY_CHECK,
+AC_DEFUN([AM_SANITY_CHECK],
 [AC_MSG_CHECKING([whether build environment is sane])
 # Just in case
 sleep 1
@@ -111,7 +111,7 @@
 
 dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
 dnl The program must properly implement --version.
-AC_DEFUN(AM_MISSING_PROG,
+AC_DEFUN([AM_MISSING_PROG],
 [AC_MSG_CHECKING(for working $2)
 # Run test in a subshell; some versions of sh will print an error if
 # an executable is not found, even if stderr is redirected.
--- a/configure	Fri Mar 15 15:25:13 2002 +0000
+++ b/configure	Fri Mar 15 15:25:46 2002 +0000
@@ -16,7 +16,7 @@
 NOFFLE options:
   --enable-debug=[no/yes] build with debugging [default=no]"
 ac_help="$ac_help
-  --with-docdir=DIR       other documentation [PREFIX/doc/noffle]"
+  --with-docdir=DIR       other documentation [PREFIX/share/doc/noffle]"
 ac_help="$ac_help
   --with-spooldir=DIR     news spool directory [/var/spool/noffle]"
 ac_help="$ac_help
@@ -2562,7 +2562,7 @@
    else
     noffle_cv_prefix=$prefix
    fi
-   noffle_cv_docdir=$noffle_cv_prefix/doc/noffle
+   noffle_cv_docdir=$noffle_cv_prefix/share/doc/noffle
   
 fi
 
--- a/configure.in	Fri Mar 15 15:25:13 2002 +0000
+++ b/configure.in	Fri Mar 15 15:25:46 2002 +0000
@@ -7,7 +7,7 @@
 AC_PREREQ(2.13)
 
 PACKAGE=noffle
-VERSION=1.1.1
+VERSION=1.1.2
 
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
@@ -141,7 +141,7 @@
 
 # [ This is adapted from mutt. ]
 AC_ARG_WITH(docdir,
-[  --with-docdir=DIR       other documentation [PREFIX/doc/noffle]],
+[  --with-docdir=DIR       other documentation [PREFIX/share/doc/noffle]],
 [noffle_cv_docdir=$withval],
 [ AC_CACHE_CHECK(other documentation directory, noffle_cv_docdir,
   [if test x$prefix = xNONE; then
@@ -149,7 +149,7 @@
    else
     noffle_cv_prefix=$prefix
    fi
-   noffle_cv_docdir=$noffle_cv_prefix/doc/noffle
+   noffle_cv_docdir=$noffle_cv_prefix/share/doc/noffle
   ])
 ])