-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://svn.code.sf.net/p/ssdeep/code/tags/release-2.11.1@223 d1b3761f-3242-0410-b1a5-fe525d664610
- Loading branch information
jessekornblum
committed
Sep 26, 2014
1 parent
79f0583
commit 9320c62
Showing
12 changed files
with
66 additions
and
27 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,7 @@ | ||
2014-09-26: Jesse Kornblum <[email protected]>: | ||
|
||
* Makefile.am: Made libfuzzy compile as a shared library again. | ||
|
||
2014-09-09: Jesse Kornblum <[email protected]>: | ||
|
||
* fuzzy.c: Fixing edge case bug for signature creation. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /bin/sh | ||
# Guess values for system-dependent variables and create Makefiles. | ||
# Generated by GNU Autoconf 2.69 for SSDEEP 2.11. | ||
# Generated by GNU Autoconf 2.69 for SSDEEP 2.11.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
|
@@ -590,8 +590,8 @@ MAKEFLAGS= | |
# Identity of this package. | ||
PACKAGE_NAME='SSDEEP' | ||
PACKAGE_TARNAME='ssdeep' | ||
PACKAGE_VERSION='2.11' | ||
PACKAGE_STRING='SSDEEP 2.11' | ||
PACKAGE_VERSION='2.11.1' | ||
PACKAGE_STRING='SSDEEP 2.11.1' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
|
@@ -1322,7 +1322,7 @@ if test "$ac_init_help" = "long"; then | |
# Omit some internal or obsolete options to make the list less imposing. | ||
# This message is too long to be a string in the A/UX 3.1 sh. | ||
cat <<_ACEOF | ||
\`configure' configures SSDEEP 2.11 to adapt to many kinds of systems. | ||
\`configure' configures SSDEEP 2.11.1 to adapt to many kinds of systems. | ||
|
||
Usage: $0 [OPTION]... [VAR=VALUE]... | ||
|
||
|
@@ -1392,7 +1392,7 @@ fi | |
|
||
if test -n "$ac_init_help"; then | ||
case $ac_init_help in | ||
short | recursive ) echo "Configuration of SSDEEP 2.11:";; | ||
short | recursive ) echo "Configuration of SSDEEP 2.11.1:";; | ||
esac | ||
cat <<\_ACEOF | ||
|
||
|
@@ -1501,7 +1501,7 @@ fi | |
test -n "$ac_init_help" && exit $ac_status | ||
if $ac_init_version; then | ||
cat <<\_ACEOF | ||
SSDEEP configure 2.11 | ||
SSDEEP configure 2.11.1 | ||
generated by GNU Autoconf 2.69 | ||
|
||
Copyright (C) 2012 Free Software Foundation, Inc. | ||
|
@@ -1991,7 +1991,7 @@ cat >config.log <<_ACEOF | |
This file contains any messages produced by compilers while | ||
running configure, to aid debugging if configure makes a mistake. | ||
|
||
It was created by SSDEEP $as_me 2.11, which was | ||
It was created by SSDEEP $as_me 2.11.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
|
||
$ $0 $@ | ||
|
@@ -2854,7 +2854,7 @@ fi | |
|
||
# Define the identity of the package. | ||
PACKAGE='ssdeep' | ||
VERSION='2.11' | ||
VERSION='2.11.1' | ||
|
||
|
||
cat >>confdefs.h <<_ACEOF | ||
|
@@ -16579,7 +16579,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
# report actual input values of CONFIG_FILES etc. instead of their | ||
# values after options handling. | ||
ac_log=" | ||
This file was extended by SSDEEP $as_me 2.11, which was | ||
This file was extended by SSDEEP $as_me 2.11.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
|
||
CONFIG_FILES = $CONFIG_FILES | ||
|
@@ -16645,7 +16645,7 @@ _ACEOF | |
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | ||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" | ||
ac_cs_version="\\ | ||
SSDEEP config.status 2.11 | ||
SSDEEP config.status 2.11.1 | ||
configured by $0, generated by GNU Autoconf 2.69, | ||
with options \\"\$ac_cs_config\\" | ||
|
||
|
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 @@ | ||
AC_INIT([SSDEEP],[2.11],[[email protected]]) | ||
AC_INIT([SSDEEP],[2.11.1],[[email protected]]) | ||
AM_INIT_AUTOMAKE | ||
|
||
AC_CONFIG_FILES([Makefile]) | ||
|
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
Binary file not shown.
Binary file not shown.