aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--NEWS10
-rw-r--r--THANKS4
-rw-r--r--configure.ac18
-rw-r--r--po/.cvsignore3
5 files changed, 35 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index dfed969..3a97b5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2004-02-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
+ * src/makepath.c: Remove unneded typedefs
+
+ * src/copyin.c: Remove __MSDOS__ conditionals
+ * src/copyout.c: Likewise
+ * src/copypass.c: Likewise
+ * src/main.c: Likewise
+ * src/tar.c: Likewise
+ * src/util.c: Likewise
+
+2004-02-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
+
Changed from flat to deep package layout. Added the framework
for NLS support.
diff --git a/NEWS b/NEWS
index 2aefe72..b56a9aa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,13 @@
-GNU cpio NEWS -- history of user-visible changes. 2003-11-21
-Copyright (C) 2003 Free Software Foundation, Inc.
+GNU cpio NEWS -- history of user-visible changes. 2004-02-27
+Copyright (C) 2003, 2004 Free Software Foundation, Inc.
See the end of file for copying conditions.
-Please send mailutils bug reports to <bug-mailutils@gnu.org>.
+Please send cpio bug reports to <bug-cpio@gnu.org>.
Version 2.5.90
+* Added NLS support
+
Major changes in version 2.5:
@@ -79,7 +81,7 @@ multiple links and of multi-volume archives on floppy disks.
----------------------------------------------------------------------
Copyright information:
-Copyright (C) 2003 Free Software Foundation, Inc.
+Copyright (C) 2003, 2004 Free Software Foundation, Inc.
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/THANKS b/THANKS
index 0bfaf68..e7b0c18 100644
--- a/THANKS
+++ b/THANKS
@@ -5,8 +5,8 @@ and David MacKenzie <djm@gnu.ai.mit.edu>. It was further modified
by John Oleynick <juo@gnu.org> and Sergey Poznyakoff <gray@gnu.org>
who currently maintains it.
-The following is a list of people who contributed to GNU mailutils by
+The following is a list of people who contributed to GNU cpio by
reporting problems, suggesting various improvements or submitting actual
code. Help us keep it complete and exempt of errors.
-Mitsuru Chinen <mchinen@yamato.ibm.com> \ No newline at end of file
+Mitsuru Chinen <mchinen@yamato.ibm.com>
diff --git a/configure.ac b/configure.ac
index 57bff6f..6aaa94a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
dnl This file is part of GNU cpio
-dnl Copyright (C) 2003 Free Software Foundation, Inc.
+dnl Copyright (C) 2003, 2004 Free Software Foundation, Inc.
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -17,7 +17,8 @@ dnl with this program; if not, write to the Free Software Foundation, Inc.,
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
AC_INIT([GNU cpio], [2.5.90], [bug-cpio@gnu.org], [cpio])
-AC_CONFIG_SRCDIR(cpio.h)
+AC_CONFIG_SRCDIR(src/cpio.h)
+AC_CONFIG_AUX_DIR([scripts])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])
@@ -63,7 +64,7 @@ else
AC_DEFINE(NO_REMOTE,1,[Define if rmt is not needed]))
fi
-AC_CHECK_HEADERS(unistd.h stdlib.h string.h fcntl.h sys/io/trioctl.h utmp.h getopt.h locale.h)
+AC_CHECK_HEADERS(unistd.h stdlib.h string.h fcntl.h sys/io/trioctl.h utmp.h getopt.h locale.h libintl.h)
AC_REPLACE_FUNCS(bcopy mkdir strdup strerror)
AC_MSG_CHECKING(for sys_errlist and sys_nerr)
@@ -139,5 +140,14 @@ if test x"$cpio_cv_have_gnu_getopt" != xyes ; then
AC_LIBOBJ(getopt1)
fi
+# Gettext.
+AM_GNU_GETTEXT([external], [need-ngettext])
+AM_GNU_GETTEXT_VERSION(0.13)
-AC_OUTPUT(Makefile)
+AH_BOTTOM([
+#include "gettext.h"
+#define _(s) gettext(s)
+#define N_(s) gettext_noop(s)
+])
+
+AC_OUTPUT(Makefile doc/Makefile src/Makefile po/Makefile.in)
diff --git a/po/.cvsignore b/po/.cvsignore
index 1f9694b..351bf9c 100644
--- a/po/.cvsignore
+++ b/po/.cvsignore
@@ -1,13 +1,14 @@
Makefile
Makefile.in
Makefile.in.in
+Makevars.template
POTFILES
Rules-quot
boldquot.sed
en@boldquot.header
en@quot.header
insert-header.sin
-mailutils.pot
+cpio.pot
quot.sed
remove-potcdate.sin
remove-potcdate.sed

Return to:

Send suggestions and report system problems to the System administrator.