aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS14
-rwxr-xr-xbootstrap14
-rw-r--r--configure.ac4
-rw-r--r--lib/Makefile.am2
4 files changed, 20 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index ad80702..aaf93be 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,16 @@
-GNU cpio NEWS -- history of user-visible changes. 2009-06-19
-Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+GNU cpio NEWS -- history of user-visible changes. 2009-06-20
+Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
See the end of file for copying conditions.
Please send cpio bug reports to <bug-cpio@gnu.org>.
-Version 2.9.91 (Git)
+Version 2.10 - Sergey Poznyakoff, 2009-06-20
* Ensure record headers are properly packed (fix builds on ARM).
-* Fix exit codes on errors.
-* Support MinGW builds (thanks to Robert Millan)
+* Fix exit codes to reliably indicate success or failure of the operation.
+* Fix large file support.
+* Support MinGW builds (thanks to Robert Millan).
+* Minor bugfixes.
Version 2.9 - Sergey Poznyakoff, 2007-06-28
@@ -149,7 +151,7 @@ multiple links and of multi-volume archives on floppy disks.
----------------------------------------------------------------------
Copyright information:
-Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 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/bootstrap b/bootstrap
index 58c4a04..14febbb 100755
--- a/bootstrap
+++ b/bootstrap
@@ -660,12 +660,14 @@ done
copy_files ${PAXUTILS_SRCDIR}/paxlib lib
#FIXME:
-#echo "$0: Creating paxlib/system.c"
-#m4 -DMODE=C sysdep.m4 mingw.m4 > paxlib/system.c
-#echo "$0: Updating paxlib/system.h"
-#m4 -DMODE=H sysdep.m4 mingw.m4 >> paxlib/system.h
-#echo "$0: Creating m4/sysdep.m4"
-#m4 -DMODE=AC sysdep.m4 mingw.m4 > m4/sysdep.m4
+echo "$0: Creating lib/sysdep.c"
+m4 -DMODE=C sysdep.m4 mingw.m4 > lib/sysdep.c
+echo "$0: Creating lib/sysdep.h"
+m4 -DMODE=H sysdep.m4 mingw.m4 > lib/sysdep.h
+echo "$0: Updating lib/system.h"
+echo '#include "sysdep.h"' >> lib/system.h
+echo "$0: Creating am/sysdep.m4"
+m4 -DMODE=AC sysdep.m4 mingw.m4 > am/sysdep.m4
# Reconfigure, getting other files.
diff --git a/configure.ac b/configure.ac
index 198ea12..a5da3c7 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, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+dnl Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 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
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software Foundation,
dnl Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-AC_INIT([GNU cpio], [2.9.91], [bug-cpio@gnu.org])
+AC_INIT([GNU cpio], [2.10], [bug-cpio@gnu.org])
AC_CONFIG_SRCDIR(src/cpio.h)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE
diff --git a/lib/Makefile.am b/lib/Makefile.am
index a05f855..63234e2 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -33,6 +33,8 @@ libpax_a_SOURCES = \
exit.c\
paxlib.h\
rtapelib.c\
+ sysdep.h\
+ sysdep.c\
system.h\
error.c\
names.c

Return to:

Send suggestions and report system problems to the System administrator.