-
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
31 changed files
with
803 additions
and
203 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,17 @@ | ||
2016-11-02 André Colomb <[email protected]> | ||
|
||
* Fix offset output showing wrong numbers when using the | ||
length-prefixed string search function (--strings option). | ||
* Refactor internal handling of binary blobs to allow loading an | ||
image file into memory for later processing. | ||
* Add the lpstrings utility, similar to the standard POSIX | ||
strings(1) command. | ||
* Fix a corner case in build system configuration which would | ||
overwrite user-supplied CPPFLAGS / LDFLAGS variables. | ||
* Update German translation. | ||
|
||
* Release version 0.6 | ||
|
||
2016-09-19 André Colomb <[email protected]> | ||
|
||
* Minor clean-ups for the build system and detection of libelf | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
# <http://www.gnu.org/licenses/>. | ||
|
||
|
||
AC_INIT([elf-mangle], [0.5.1], [[email protected]]) | ||
AC_INIT([elf-mangle], [0.6], [[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_SRCDIR([src/elf-mangle.c]) | ||
AC_CONFIG_AUX_DIR([.]) | ||
|
@@ -27,15 +27,17 @@ AM_INIT_AUTOMAKE([foreign -Wall -Werror]) | |
# Checks for programs. | ||
AC_USE_SYSTEM_EXTENSIONS | ||
AC_PROG_CC_C99 | ||
AM_PROG_AR | ||
LT_INIT | ||
|
||
# Use GNU Gnulib if required macros are present | ||
m4_ifdef([gl_EARLY], | ||
[gl_EARLY | ||
gnulib=1], [gnulib=0]) | ||
AM_CONDITIONAL([USE_GNULIB], [test "x$gnulib" = x1]) | ||
|
||
# More checks for programs. | ||
AM_PROG_AR | ||
LT_INIT | ||
|
||
|
||
# Checks for libraries. | ||
m4_ifdef([gl_INIT], [gl_INIT]) | ||
|
@@ -71,15 +73,17 @@ AC_ARG_WITH([cintelhex], | |
[cintelhex=1], [cintelhex_internal=1])], | ||
[cintelhex_internal=1])], | ||
[internal], [cintelhex_internal=1], | ||
[saved_CPPFLAGS="$CPPFLAGS" | ||
CPPFLAGS="-I$with_cintelhex/include $CPPFLAGS" | ||
[AC_SUBST([CINTELHEX_CPPFLAGS], [-I$with_cintelhex/include]) | ||
saved_CPPFLAGS="$CPPFLAGS" | ||
CPPFLAGS="$CINTELHEX_CPPFLAGS $CPPFLAGS" | ||
AC_CHECK_HEADERS([cintelhex.h], | ||
[saved_LDFLAGS="$LDFLAGS" | ||
LDFLAGS="-L$with_cintelhex/lib $LDFLAGS" | ||
[AC_SUBST([CINTELHEX_LDFLAGS], [-L$with_cintelhex/lib]) | ||
saved_LDFLAGS="$LDFLAGS" | ||
LDFLAGS="$CINTELHEX_LDFLAGS $LDFLAGS" | ||
AC_CHECK_LIB([cintelhex], [ihex_byte_copy], | ||
[cintelhex=1], | ||
[LDFLAGS="$saved_LDFLAGS"])], | ||
[CPPFLAGS="$saved_CPPFLAGS"]) | ||
[cintelhex=1]) | ||
LDFLAGS="$saved_LDFLAGS"]) | ||
CPPFLAGS="$saved_CPPFLAGS" | ||
]) | ||
], | ||
[AC_MSG_RESULT([--with-cintelhex not specified]) | ||
|
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.