-
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
16 changed files
with
525 additions
and
41 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,12 @@ | ||
2022-07-08 André Colomb <[email protected]> | ||
|
||
* Add facility to implement custom post-processors on the output | ||
image data, with the ability to further modify contained fields. | ||
* Implement an example post-processor to calculate and store a CRC | ||
checksum over the binary data. | ||
|
||
* Release version 1.0 | ||
|
||
2021-11-15 André Colomb <[email protected]> | ||
|
||
* Update pointers to available libelf implementations. | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
# <http://www.gnu.org/licenses/>. | ||
|
||
|
||
AC_INIT([elf-mangle], [0.6.2], [[email protected]]) | ||
AC_INIT([elf-mangle],[1.0],[[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_SRCDIR([src/elf-mangle.c]) | ||
AC_CONFIG_AUX_DIR([.]) | ||
|
@@ -26,7 +26,7 @@ AM_INIT_AUTOMAKE([foreign -Wall -Werror]) | |
|
||
# Checks for programs. | ||
AC_USE_SYSTEM_EXTENSIONS | ||
AC_PROG_CC_C99 | ||
AC_PROG_CC | ||
|
||
# Use GNU Gnulib if required macros are present | ||
m4_ifdef([gl_EARLY], | ||
|
@@ -170,6 +170,20 @@ AC_MSG_RESULT([${custom_fields}]) | |
AM_CONDITIONAL([CUSTOM_FIELDS], [test "x$custom_fields" = xyes]) | ||
|
||
|
||
AC_MSG_CHECKING([whether extension module for custom post-processors should be built]) | ||
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], | ||
[no], [custom_post_process=no], | ||
[AC_MSG_ERROR([bad value ${enableval} for --enable-custom-post-process])]) | ||
], | ||
[custom_post_process=no]) | ||
AC_MSG_RESULT([${custom_post_process}]) | ||
AM_CONDITIONAL([CUSTOM_POST_PROCESS], [test "x$custom_post_process" = xyes]) | ||
|
||
|
||
# Ouput definitions | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_FILES([Makefile Doxyfile src/Makefile po/Makefile.in]) | ||
|
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
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
Oops, something went wrong.