-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
martijn van brummelen
committed
Jul 27, 2016
1 parent
3c0c840
commit d01b00b
Showing
3 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.64]) | ||
AC_INIT(nwipe, 0.17, [email protected]) | ||
AM_INIT_AUTOMAKE(nwipe, 0.17) | ||
AC_INIT(nwipe, 0.18, [email protected]) | ||
AM_INIT_AUTOMAKE(nwipe, 0.18) | ||
AC_OUTPUT(Makefile src/Makefile man/Makefile) | ||
AC_CONFIG_SRCDIR([src/nwipe.c]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
* used by configure to dynamically assign those values | ||
* to documentation files. | ||
*/ | ||
const char *version_string = "0.17"; | ||
const char *version_string = "0.18"; | ||
const char *program_name = "nwipe"; | ||
const char *author_name = "Andy Beverley"; | ||
const char *email_address = "[email protected]"; | ||
const char *years = "2012"; | ||
const char *author_name = "Martijn van Brummelen"; | ||
const char *email_address = "[email protected]"; | ||
const char *years = "2016"; | ||
const char *copyright = "Copyright Darik Horn <[email protected]>\n\ | ||
Modifications to original dwipe Copyright Andy Beverley <[email protected]>\n\ | ||
This is free software; see the source for copying conditions.\n\ | ||
|