From 749b004e4bb5830a6246a30ebe0a158e448327c5 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Mon, 26 Dec 2011 01:02:16 -0700 Subject: [PATCH] Imported Upstream version 2.13 --- NEWS | 6 +- config.guess | 139 ++++++++++++++------------------------ config.sub | 23 +++++-- configure | 179 +++++++++++++++++++++++++++++-------------------- configure.in | 4 +- cpm.5 | 2 +- cpmchattr.1 | 4 +- cpmchattr.1.in | 2 +- cpmchattr.c | 1 + cpmchmod.1 | 4 +- cpmchmod.1.in | 2 +- cpmchmod.c | 1 + cpmcp.1 | 4 +- cpmcp.1.in | 2 +- cpmfs.c | 84 +++++++++++------------ cpmfs.h | 1 + cpmls.1 | 4 +- cpmls.1.in | 2 +- cpmrm.1 | 4 +- cpmrm.1.in | 2 +- cpmrm.c | 1 + fsck.cpm.1 | 4 +- fsck.cpm.1.in | 2 +- fsed.cpm.1 | 4 +- fsed.cpm.1.in | 2 +- mkfs.cpm.1 | 4 +- mkfs.cpm.1.in | 2 +- 27 files changed, 248 insertions(+), 241 deletions(-) diff --git a/NEWS b/NEWS index 2429bf8..fa40457 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,3 @@ -Changes since 2.12: +Changes since 2.13: -o Fix for cpmcp to open files as "rb" -o Fixes for MinGW -o Skew table generation bugfix +o Avoid unneccessary directory writes diff --git a/config.guess b/config.guess index e3a2116..d53e309 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-06-10' +timestamp='2009-11-19' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -27,16 +27,16 @@ timestamp='2009-06-10' # the same distribution terms that you use for the rest of that program. -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` @@ -807,12 +807,12 @@ EOF i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - *:Interix*:[3456]*) + *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; - EM64T | authenticamd | genuineintel) + authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) @@ -854,6 +854,20 @@ EOF i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -876,6 +890,17 @@ EOF frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -901,39 +926,18 @@ EOF #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -942,8 +946,11 @@ EOF *) echo hppa-unknown-linux-gnu ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux @@ -966,58 +973,6 @@ EOF xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1247,6 +1202,16 @@ EOF *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} diff --git a/config.sub b/config.sub index eb0389a..17c9145 100755 --- a/config.sub +++ b/config.sub @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-06-11' +timestamp='2009-11-07' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -32,13 +32,16 @@ timestamp='2009-06-11' # Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -149,7 +152,7 @@ case $os in -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; @@ -284,6 +287,7 @@ case $basic_machine in | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ + | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ @@ -291,13 +295,14 @@ case $basic_machine in | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ + | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none @@ -340,7 +345,7 @@ case $basic_machine in | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -368,7 +373,7 @@ case $basic_machine in | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | romp-* | rs6000-* \ + | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ @@ -377,6 +382,7 @@ case $basic_machine in | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | tron-* \ + | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ @@ -726,6 +732,9 @@ case $basic_machine in basic_machine=ns32k-utek os=-sysv ;; + microblaze) + basic_machine=microblaze-xilinx + ;; mingw32) basic_machine=i386-pc os=-mingw32 @@ -1290,7 +1299,7 @@ case $os in | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) diff --git a/configure b/configure index 11c395a..d8149b0 100755 --- a/configure +++ b/configure @@ -1,10 +1,12 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.64. +# Generated by GNU Autoconf 2.65. +# # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software -# Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -524,7 +526,8 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -exec 7<&0 &1 +test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, @@ -1303,7 +1306,7 @@ Some influential environment variables: LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor @@ -1374,7 +1377,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure -generated by GNU Autoconf 2.64 +generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation @@ -1421,7 +1424,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_compile @@ -1458,7 +1461,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_cpp @@ -1504,7 +1507,7 @@ fi # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_link @@ -1633,7 +1636,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_run @@ -1793,7 +1796,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was -generated by GNU Autoconf 2.64. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2046,7 +2049,7 @@ fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue - if test -r "$ac_site_file"; then + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 @@ -2055,9 +2058,9 @@ $as_echo "$as_me: loading site script $ac_site_file" >&6;} done if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in @@ -2235,8 +2238,8 @@ IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac -VERSION=2.12 -UPDATED='December 20, 2009' +VERSION=2.13 +UPDATED='March 30, 2010' DEVICE="posix" @@ -2573,32 +2576,30 @@ $as_echo "$ac_try_echo"; } >&5 ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err fi + rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include + int main () { -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out" +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: @@ -2660,10 +2661,10 @@ test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } if test -z "$ac_file"; then : - $as_echo "$as_me: failed program was:" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 @@ -2671,51 +2672,18 @@ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { as_fn_set_status 77 as_fn_error "C compiler cannot create executables See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" @@ -2748,13 +2716,72 @@ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." "$LINENO" 5; } fi -rm -f conftest$ac_cv_exeext +rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if test "${ac_cv_objext+set}" = set; then : @@ -4909,7 +4936,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # values after options handling. ac_log=" This file was extended by $as_me, which was -generated by GNU Autoconf 2.64. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -4948,6 +4975,7 @@ Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit + --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files @@ -4967,10 +4995,11 @@ Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status -configured by $0, generated by GNU Autoconf 2.64, - with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation @@ -5006,6 +5035,8 @@ do ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) @@ -5195,7 +5226,7 @@ s/'"$ac_delim"'$// t delim :nl h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p @@ -5209,7 +5240,7 @@ s/.\{148\}// t nl :delim h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p diff --git a/configure.in b/configure.in index f0bff7a..3a9b985 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,8 @@ AC_INIT(cpmfs.c) AC_CONFIG_HEADER(config.h) AC_CANONICAL_HOST -VERSION=2.12 -UPDATED='December 20, 2009' +VERSION=2.13 +UPDATED='March 30, 2010' DEVICE="posix" diff --git a/cpm.5 b/cpm.5 index d844e48..8a9e1c4 100644 --- a/cpm.5 +++ b/cpm.5 @@ -1,7 +1,7 @@ .\" Believe it or not, reportedly there are nroffs which do not know \(en .if n .ds en - .if t .ds en \(en -.TH CPM 5 "December 20, 2009" "CP/M tools" "File formats" +.TH CPM 5 "March 30, 2010" "CP/M tools" "File formats" .SH NAME \"{{{roff}}}\"{{{ cpm \- CP/M disk and file system format .\"}}} diff --git a/cpmchattr.1 b/cpmchattr.1 index 3ce7e5f..39a37c1 100644 --- a/cpmchattr.1 +++ b/cpmchattr.1 @@ -1,4 +1,4 @@ -.TH CPMCHATTR 1 "December 20, 2009" "CP/M tools" "User commands" +.TH CPMCHATTR 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ cpmchattr \- change file attributes on CP/M files .\"}}} @@ -61,7 +61,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt and copyright 2000, 2001 John Elliott . .PP diff --git a/cpmchattr.1.in b/cpmchattr.1.in index ea18596..77c2b4c 100644 --- a/cpmchattr.1.in +++ b/cpmchattr.1.in @@ -61,7 +61,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt and copyright 2000, 2001 John Elliott . .PP diff --git a/cpmchattr.c b/cpmchattr.c index aaecdc7..cf337e2 100644 --- a/cpmchattr.c +++ b/cpmchattr.c @@ -106,6 +106,7 @@ int main(int argc, char *argv[]) /*{{{*/ exitcode=1; } } + cpmUmount(&drive); exit(exitcode); } /*}}}*/ diff --git a/cpmchmod.1 b/cpmchmod.1 index 278a89b..8cc605c 100644 --- a/cpmchmod.1 +++ b/cpmchmod.1 @@ -1,4 +1,4 @@ -.TH CPMCHMOD 1 "December 20, 2009" "CP/M tools" "User commands" +.TH CPMCHMOD 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ cpmchmod \- change file mode on CP/M files .\"}}} @@ -32,7 +32,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt and copyright 2000, 2001 John Elliott . .PP diff --git a/cpmchmod.1.in b/cpmchmod.1.in index 12c5c69..05a4224 100644 --- a/cpmchmod.1.in +++ b/cpmchmod.1.in @@ -32,7 +32,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt and copyright 2000, 2001 John Elliott . .PP diff --git a/cpmchmod.c b/cpmchmod.c index 0ad1ce6..701d3b3 100644 --- a/cpmchmod.c +++ b/cpmchmod.c @@ -78,6 +78,7 @@ int main(int argc, char *argv[]) /*{{{*/ exitcode=1; } } + cpmUmount(&drive); exit(exitcode); } /*}}}*/ diff --git a/cpmcp.1 b/cpmcp.1 index 755a8b9..310f339 100644 --- a/cpmcp.1 +++ b/cpmcp.1 @@ -1,4 +1,4 @@ -.TH CPMCP 1 "December 20, 2009" "CP/M tools" "User commands" +.TH CPMCP 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ cpmcp \- copy files from and to CP/M disks .\"}}} @@ -68,7 +68,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmcp.1.in b/cpmcp.1.in index 8e62fa0..2d7dec8 100644 --- a/cpmcp.1.in +++ b/cpmcp.1.in @@ -68,7 +68,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmfs.c b/cpmfs.c index 4fef183..1d4524e 100644 --- a/cpmfs.c +++ b/cpmfs.c @@ -324,36 +324,6 @@ static int writeBlock(const struct cpmSuperBlock *d, int blockno, const char *bu /*}}}*/ /* directory management */ -/* readPhysDirectory -- read directory from drive */ /*{{{*/ -static int readPhysDirectory(const struct cpmSuperBlock *drive) -{ - int i,blocks,entry; - - blocks=(drive->maxdir*32+drive->blksiz-1)/drive->blksiz; - entry=0; - for (i=0; idir+entry),0,-1)==-1) return -1; - entry+=(drive->blksiz/32); - } - return 0; -} -/*}}}*/ -/* writePhysDirectory -- write directory to drive */ /*{{{*/ -static int writePhysDirectory(const struct cpmSuperBlock *drive) -{ - int i,blocks,entry; - - blocks=(drive->maxdir*32+drive->blksiz-1)/drive->blksiz; - entry=0; - for (i=0; idir+entry),0,-1)==-1) return -1; - entry+=(drive->blksiz/32); - } - return 0; -} -/*}}}*/ /* findFileExtent -- find first/next extent for a file */ /*{{{*/ static int findFileExtent(const struct cpmSuperBlock *sb, int user, const char *name, const char *ext, int start, int extno) { @@ -396,6 +366,7 @@ static void updateTimeStamps(const struct cpmInode *ino, int extent) unix2cpm_time(ino->mtime,&u_days,&u_hour,&u_min); if ((ino->sb->type==CPMFS_P2DOS || ino->sb->type==CPMFS_DR3) && (date=ino->sb->dir+(extent|3))->status==0x21) { + ino->sb->dirtyDirectory=1; switch (extent&3) { case 0: /* first entry */ /*{{{*/ @@ -735,8 +706,24 @@ int cpmReadSuper(struct cpmSuperBlock *d, struct cpmInode *root, const char *for return -1; } /*}}}*/ - if (d->dev.opened==0) memset(d->dir,0xe5,d->maxdir*32); - else if (readPhysDirectory(d)==-1) return -1; + if (d->dev.opened==0) /* create empty directory in core */ /*{{{*/ + { + memset(d->dir,0xe5,d->maxdir*32); + } + /*}}}*/ + else /* read directory in core */ /*{{{*/ + { + int i,blocks,entry; + + blocks=(d->maxdir*32+d->blksiz-1)/d->blksiz; + entry=0; + for (i=0; idir+entry),0,-1)==-1) return -1; + entry+=(d->blksiz/32); + } + } + /*}}}*/ alvInit(d); if (d->type==CPMFS_DR3) /* read additional superblock information */ /*{{{*/ { @@ -1064,12 +1051,12 @@ int cpmUnlink(const struct cpmInode *dir, const char *fname) drive=dir->sb; if (splitFilename(fname,dir->sb->type,name,extension,&user)==-1) return -1; if ((extent=findFileExtent(drive,user,name,extension,0,-1))==-1) return -1; + drive->dirtyDirectory=1; drive->dir[extent].status=(char)0xe5; do { drive->dir[extent].status=(char)0xe5; } while ((extent=findFileExtent(drive,user,name,extension,extent+1,-1))>=0); - if (writePhysDirectory(drive)==-1) return -1; alvInit(drive); return 0; } @@ -1100,11 +1087,11 @@ int cpmRename(const struct cpmInode *dir, const char *old, const char *new) } do { + drive->dirtyDirectory=1; drive->dir[extent].status=newuser; memcpy7(drive->dir[extent].name, newname, 8); memcpy7(drive->dir[extent].ext, newext, 3); } while ((extent=findFileExtent(drive,olduser,oldname,oldext,extent+1,-1))!=-1); - if (writePhysDirectory(drive)==-1) return -1; return 0; } /*}}}*/ @@ -1402,6 +1389,7 @@ int cpmWrite(struct cpmFile *file, const char *buf, int count) } /*}}}*/ /* fill block and write it */ /*{{{*/ + file->ino->sb->dirtyDirectory=1; while (file->pos!=nextblockpos && count) { buffer[file->pos%blocksize]=*buf++; @@ -1436,14 +1424,12 @@ int cpmWrite(struct cpmFile *file, const char *buf, int count) if (file->pos==nextextpos) findext=1; else if (file->pos==nextblockpos) findblock=1; } - writePhysDirectory(file->ino->sb); return got; } /*}}}*/ /* cpmClose -- close */ /*{{{*/ int cpmClose(struct cpmFile *file) { - if (file->mode&O_WRONLY) return (writePhysDirectory(file->ino->sb)); return 0; } /*}}}*/ @@ -1469,6 +1455,7 @@ int cpmCreat(struct cpmInode *dir, const char *fname, struct cpmInode *ino, mode drive=dir->sb; if ((extent=findFreeExtent(dir->sb))==-1) return -1; ent=dir->sb->dir+extent; + drive->dirtyDirectory=1; memset(ent,0,32); ent->status=user; memcpy(ent->name,name,8); @@ -1481,15 +1468,14 @@ int cpmCreat(struct cpmInode *dir, const char *fname, struct cpmInode *ino, mode time(&ino->ctime); ino->sb=dir->sb; updateTimeStamps(ino,extent); - writePhysDirectory(dir->sb); return 0; } /*}}}*/ /* cpmAttrGet -- get CP/M attributes */ /*{{{*/ int cpmAttrGet(struct cpmInode *ino, cpm_attr_t *attrib) { - *attrib = ino->attr; - return 0; + *attrib = ino->attr; + return 0; } /*}}}*/ /* cpmAttrSet -- set CP/M attributes */ /*{{{*/ @@ -1505,6 +1491,7 @@ int cpmAttrSet(struct cpmInode *ino, cpm_attr_t attrib) drive = ino->sb; extent = ino->ino; + drive->dirtyDirectory=1; /* Strip off existing attribute bits */ memcpy7(name, drive->dir[extent].name, 8); memcpy7(extension, drive->dir[extent].ext, 3); @@ -1524,7 +1511,6 @@ int cpmAttrSet(struct cpmInode *ino, cpm_attr_t attrib) memcpy(drive->dir[extent].name, name, 8); memcpy(drive->dir[extent].ext, extension, 3); } while ((extent=findFileExtent(drive, user,name,extension,extent+1,-1))!=-1); - if (writePhysDirectory(drive)==-1) return -1; /* Update the stored (inode) copies of the file attributes and mode */ ino->attr=attrib; @@ -1545,14 +1531,28 @@ int cpmChmod(struct cpmInode *ino, mode_t mode) } /*}}}*/ /* cpmSync -- write directory back */ /*{{{*/ -int cpmSync(struct cpmSuperBlock *sb) +int cpmSync(struct cpmSuperBlock *d) { - return (writePhysDirectory(sb)); + if (d->dirtyDirectory) + { + int i,blocks,entry; + + blocks=(d->maxdir*32+d->blksiz-1)/d->blksiz; + entry=0; + for (i=0; idir+entry),0,-1)==-1) return -1; + entry+=(d->blksiz/32); + } + d->dirtyDirectory=0; + } + return 0; } /*}}}*/ /* cpmUmount -- free super block */ /*{{{*/ void cpmUmount(struct cpmSuperBlock *sb) { + cpmSync(sb); free(sb->alv); free(sb->skewtab); free(sb->dir); diff --git a/cpmfs.h b/cpmfs.h index 2393bc9..acf050f 100644 --- a/cpmfs.h +++ b/cpmfs.h @@ -127,6 +127,7 @@ struct cpmSuperBlock char *passwd; size_t passwdLength; struct cpmInode *root; + int dirtyDirectory; }; struct cpmStatFS diff --git a/cpmls.1 b/cpmls.1 index 2691415..8084a3c 100644 --- a/cpmls.1 +++ b/cpmls.1 @@ -1,4 +1,4 @@ -.TH CPMLS 1 "December 20, 2009" "CP/M tools" "User commands" +.TH CPMLS 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ cpmls \- list sorted contents of directory .\"}}} @@ -43,7 +43,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmls.1.in b/cpmls.1.in index 4835e66..f57c3bf 100644 --- a/cpmls.1.in +++ b/cpmls.1.in @@ -43,7 +43,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmrm.1 b/cpmrm.1 index 69dfc78..7ebf973 100644 --- a/cpmrm.1 +++ b/cpmrm.1 @@ -1,4 +1,4 @@ -.TH CPMRM 1 "December 20, 2009" "CP/M tools" "User commands" +.TH CPMRM 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ cpmrm \- remove files on CP/M disks .\"}}} @@ -29,7 +29,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmrm.1.in b/cpmrm.1.in index 27900ef..46c0d18 100644 --- a/cpmrm.1.in +++ b/cpmrm.1.in @@ -29,7 +29,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/cpmrm.c b/cpmrm.c index 0749235..d663953 100644 --- a/cpmrm.c +++ b/cpmrm.c @@ -66,6 +66,7 @@ int main(int argc, char *argv[]) /*{{{*/ exitcode=1; } } + cpmUmount(&drive); exit(exitcode); } /*}}}*/ diff --git a/fsck.cpm.1 b/fsck.cpm.1 index 7e9a0aa..ab39ead 100644 --- a/fsck.cpm.1 +++ b/fsck.cpm.1 @@ -1,4 +1,4 @@ -.TH FSCK.CPM 1 "December 20, 2009" "CP/M tools" "User commands" +.TH FSCK.CPM 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME ..\"{{{roff}}}\"{{{ fsck.cpm \- check a CP/M file system .\"}}} @@ -49,7 +49,7 @@ The number of used blocks includes the blocks used for system tracks and the directory. .\"}}} .SH AUTHORS .\"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/fsck.cpm.1.in b/fsck.cpm.1.in index 36b4dcc..3a1dbc0 100644 --- a/fsck.cpm.1.in +++ b/fsck.cpm.1.in @@ -49,7 +49,7 @@ The number of used blocks includes the blocks used for system tracks and the directory. .\"}}} .SH AUTHORS .\"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/fsed.cpm.1 b/fsed.cpm.1 index 13b6e62..f2f0840 100644 --- a/fsed.cpm.1 +++ b/fsed.cpm.1 @@ -1,4 +1,4 @@ -.TH FSED.CPM 1 "December 20, 2009" "CP/M tools" "User commands" +.TH FSED.CPM 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME ..\"{{{roff}}}\"{{{ fsed.cpm \- edit a CP/M file system .\"}}} @@ -30,7 +30,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/fsed.cpm.1.in b/fsed.cpm.1.in index 4c91f97..aee1b1a 100644 --- a/fsed.cpm.1.in +++ b/fsed.cpm.1.in @@ -30,7 +30,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/mkfs.cpm.1 b/mkfs.cpm.1 index 4fe2851..726c00a 100644 --- a/mkfs.cpm.1 +++ b/mkfs.cpm.1 @@ -1,4 +1,4 @@ -.TH MKFS.CPM 1 "December 20, 2009" "CP/M tools" "User commands" +.TH MKFS.CPM 1 "March 30, 2010" "CP/M tools" "User commands" .SH NAME \"{{{roff}}}\"{{{ mkfs.cpm \- make a CP/M file system .\"}}} @@ -38,7 +38,7 @@ Any errors are indicated by exit code 1. ${prefix}/share/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP diff --git a/mkfs.cpm.1.in b/mkfs.cpm.1.in index e678544..966088d 100644 --- a/mkfs.cpm.1.in +++ b/mkfs.cpm.1.in @@ -38,7 +38,7 @@ Any errors are indicated by exit code 1. @DATADIR@/diskdefs CP/M disk format definitions .\"}}} .SH AUTHORS \"{{{ -This program is copyright 1997\(en2009 Michael Haardt +This program is copyright 1997\(en2010 Michael Haardt . The Windows port is copyright 2000, 2001 John Elliott . .PP -- 2.30.2