-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
5 changed files
with
33 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2023-08-01 André Colomb <[email protected]> | ||
|
||
* Fix exit code when writing to the output image file was | ||
successful. The number of bytes written was returned and used as | ||
exit code, when it should be zero on success and non-zero only on | ||
error. | ||
* Fix building without the custom post-processor module. An | ||
undefined reference regarding the demo --skip-checksum error would | ||
otherwise fail the build. | ||
|
||
* Release version 1.2 | ||
|
||
2023-07-03 André Colomb <[email protected]> | ||
|
||
* Extend the --print option to accept a "defines" format | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2014, 2015, 2016, 2019, 2022 Andre Colomb | ||
# Copyright (C) 2014, 2015, 2016, 2019, 2022, 2023 Andre Colomb | ||
# | ||
# This file is part of elf-mangle. | ||
# | ||
|
@@ -17,7 +17,7 @@ | |
# <http://www.gnu.org/licenses/>. | ||
|
||
|
||
AC_INIT([elf-mangle],[1.1],[[email protected]]) | ||
AC_INIT([elf-mangle],[1.2],[[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_SRCDIR([src/elf-mangle.c]) | ||
AC_CONFIG_AUX_DIR([.]) | ||
|
@@ -147,7 +147,9 @@ AC_ARG_ENABLE([custom-options], | |
[AS_HELP_STRING([--enable-custom-options], | ||
[Build extension module with custom options])], | ||
[AS_CASE([$enableval], | ||
[yes], [custom_options=yes], | ||
[yes], [custom_options=yes | ||
AC_DEFINE([WITH_CUSTOM_OPTIONS], [1], | ||
[Building extension module with custom options])], | ||
[no], [custom_options=no], | ||
[AC_MSG_ERROR([bad value ${enableval} for --enable-custom-options])]) | ||
], | ||
|
@@ -161,7 +163,9 @@ AC_ARG_ENABLE([custom-fields], | |
[AS_HELP_STRING([--enable-custom-fields], | ||
[Build extension module with custom known fields])], | ||
[AS_CASE([$enableval], | ||
[yes], [custom_fields=yes], | ||
[yes], [custom_fields=yes | ||
AC_DEFINE([WITH_CUSTOM_FIELDS], [1], | ||
[Building extension module with custom known fields])], | ||
[no], [custom_fields=no], | ||
[AC_MSG_ERROR([bad value ${enableval} for --enable-custom-fields])]) | ||
], | ||
|
@@ -175,7 +179,9 @@ AC_ARG_ENABLE([custom-post-process], | |
[AS_HELP_STRING([--enable-custom-post-process], | ||
[Build extension module with custom post-processors])], | ||
[AS_CASE([$enableval], | ||
[yes], [custom_post_process=yes], | ||
[yes], [custom_post_process=yes | ||
AC_DEFINE([WITH_CUSTOM_POST_PROCESS], [1], | ||
[Building extension module with custom post-processors])], | ||
[no], [custom_post_process=no], | ||
[AC_MSG_ERROR([bad value ${enableval} for --enable-custom-post-process])]) | ||
], | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: elf-mangle 0.7\n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2023-07-03 01:23+0200\n" | ||
"POT-Creation-Date: 2023-08-01 11:24+0200\n" | ||
"PO-Revision-Date: 2023-07-03 01:25+0200\n" | ||
"Last-Translator: André Colomb <[email protected]>\n" | ||
"Language-Team: German\n" | ||
|
@@ -88,16 +88,16 @@ msgstr "NUMMER" | |
msgid "Override system serial number in output" | ||
msgstr "System-Seriennummer in Ausgabe überschreiben" | ||
|
||
#: src/custom_options.c:72 | ||
#: src/custom_options.c:73 | ||
msgid "Skip CRC update post-processor" | ||
msgstr "Anpassung der Prüfsumme in Post-Prozessor überspringen" | ||
|
||
#: src/custom_options.c:113 | ||
#: src/custom_options.c:115 | ||
#, c-format | ||
msgid "Invalid serial number `%s' specified." | ||
msgstr "Ungültige Seriennummer '%s' angegeben." | ||
|
||
#: src/custom_options.c:138 | ||
#: src/custom_options.c:142 | ||
msgid "Example-specific options:" | ||
msgstr "Optionen spezifisch für Beispiel:" | ||
|
||
|
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