Skip to content

Commit 3066499

Browse files
ninthclowdjonasstein
authored andcommitted
1 parent db613c9 commit 3066499

12 files changed

+3351
-2367
lines changed

ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2014-01-06 John Coleman <[email protected]>
2+
* Version upgraded to 1.0.7
3+
* Included unistd.h in scsiencrypt.cpp to prevent compile issue on ArchLinux per report by [email protected]
4+
* Remove the --enable-swapbit and modified code to use the BYTE_ORDER and__BYTE_ORDER macros
5+
* -kd argument added to specify a uKAD via command line
6+
* -k option now required to set the output key file when using the -g option
7+
* status is now simplified, --detail argument added to restore previous behavior
8+
* the program now sets the umask when creating a new key file to prevent other users from being able to read it
9+
* Some devices will issue an I/O error on the first command sent to the device after a tape is inserted. Modified the program to retry 1 time if the first command fails.
10+
111
2012-02-29 John Coleman <[email protected]>
212
* Version upgraded to 1.0.6
313
* The --protect option now should work properly and the --unprotect option has been added. If you specify neither, the drive will use it's default.

Makefile.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
139139
PACKAGE_NAME = @PACKAGE_NAME@
140140
PACKAGE_STRING = @PACKAGE_STRING@
141141
PACKAGE_TARNAME = @PACKAGE_TARNAME@
142-
PACKAGE_URL = @PACKAGE_URL@
143142
PACKAGE_VERSION = @PACKAGE_VERSION@
144143
PATH_SEPARATOR = @PATH_SEPARATOR@
145144
SET_MAKE = @SET_MAKE@
@@ -502,7 +501,7 @@ distcheck: dist
502501
*.zip*) \
503502
unzip $(distdir).zip ;;\
504503
esac
505-
chmod -R a-w $(distdir); chmod a+w $(distdir)
504+
chmod -R a-w $(distdir); chmod u+w $(distdir)
506505
mkdir $(distdir)/_build
507506
mkdir $(distdir)/_inst
508507
chmod a-w $(distdir)

aclocal.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
m4_ifndef([AC_AUTOCONF_VERSION],
1515
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16-
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
17-
[m4_warning([this file was generated for autoconf 2.67.
16+
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],,
17+
[m4_warning([this file was generated for autoconf 2.63.
1818
You have another version of autoconf. It may work, but is not guaranteed to.
1919
If you have problems, you may need to regenerate the build system entirely.
2020
To do so, use the procedure documented by the package, typically `autoreconf'.])])

config.h.in

+27-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,33 @@
1515
/* "" */
1616
#undef DISABLE_DEVICE_NAME_CONVERSION
1717

18+
/* Define to 1 if you have the <inttypes.h> header file. */
19+
#undef HAVE_INTTYPES_H
20+
21+
/* Define to 1 if you have the <memory.h> header file. */
22+
#undef HAVE_MEMORY_H
23+
24+
/* Define to 1 if you have the <stdint.h> header file. */
25+
#undef HAVE_STDINT_H
26+
27+
/* Define to 1 if you have the <stdlib.h> header file. */
28+
#undef HAVE_STDLIB_H
29+
30+
/* Define to 1 if you have the <strings.h> header file. */
31+
#undef HAVE_STRINGS_H
32+
33+
/* Define to 1 if you have the <string.h> header file. */
34+
#undef HAVE_STRING_H
35+
36+
/* Define to 1 if you have the <sys/stat.h> header file. */
37+
#undef HAVE_SYS_STAT_H
38+
39+
/* Define to 1 if you have the <sys/types.h> header file. */
40+
#undef HAVE_SYS_TYPES_H
41+
42+
/* Define to 1 if you have the <unistd.h> header file. */
43+
#undef HAVE_UNISTD_H
44+
1845
/* "" */
1946
#undef MAX_TAPE_READ_BLOCKS
2047

@@ -39,17 +66,11 @@
3966
/* Define to the one symbol short name of this package. */
4067
#undef PACKAGE_TARNAME
4168

42-
/* Define to the home page for this package. */
43-
#undef PACKAGE_URL
44-
4569
/* Define to the version of this package. */
4670
#undef PACKAGE_VERSION
4771

4872
/* Define to 1 if you have the ANSI C header files. */
4973
#undef STDC_HEADERS
5074

51-
/* "" */
52-
#undef SWAPBIT
53-
5475
/* Version number of package */
5576
#undef VERSION

0 commit comments

Comments
 (0)