diff --git a/ChangeLog b/ChangeLog index 420bbde..fbe1f03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-09-26: Jesse Kornblum : + + * Makefile.am: Made libfuzzy compile as a shared library again. + 2014-09-09: Jesse Kornblum : * fuzzy.c: Fixing edge case bug for signature creation. diff --git a/Makefile.am b/Makefile.am index ea90344..d4fe6e1 100755 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES=libfuzzy.la libfuzzy_la_SOURCES=fuzzy.c edit_dist.c find-file-size.c -libfuzzy_la_LDFLAGS=-static -no-undefined -version-info 2:0:0 +libfuzzy_la_LDFLAGS=-no-undefined -version-info 2:0:0 include_HEADERS=fuzzy.h @@ -21,7 +21,7 @@ ssdeep_SOURCES = main.cpp match.cpp engine.cpp filedata.cpp \ dll: $(libfuzzy_la_SOURCES) $(CC) $(CFLAGS) -shared -o fuzzy.dll $(libfuzzy_la_SOURCES) \ -Wl,--output-def,fuzzy.def,--out-implib,libfuzzy.a - $(STRIP) fuzzy.dll + $(STRIP) fuzzy.dll CLEANFILES=fuzzy.dll fuzzy.def diff --git a/Makefile.in b/Makefile.in index 8da03d0..46d9e76 100644 --- a/Makefile.in +++ b/Makefile.in @@ -373,7 +373,7 @@ ssdeep_LDFLAGS = -static ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES = libfuzzy.la libfuzzy_la_SOURCES = fuzzy.c edit_dist.c find-file-size.c -libfuzzy_la_LDFLAGS = -static -no-undefined -version-info 2:0:0 +libfuzzy_la_LDFLAGS = -no-undefined -version-info 2:0:0 include_HEADERS = fuzzy.h man_MANS = ssdeep.1 ssdeep_SOURCES = main.cpp match.cpp engine.cpp filedata.cpp \ @@ -1029,7 +1029,7 @@ uninstall-man: uninstall-man1 dll: $(libfuzzy_la_SOURCES) $(CC) $(CFLAGS) -shared -o fuzzy.dll $(libfuzzy_la_SOURCES) \ -Wl,--output-def,fuzzy.def,--out-implib,libfuzzy.a - $(STRIP) fuzzy.dll + $(STRIP) fuzzy.dll README.TXT: ssdeep.1 man ./ssdeep.1 | col -bx > README.TXT diff --git a/NEWS b/NEWS index ce4d88a..5f7e13d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +** Version 2.11.1 - 27 Sep 2014 + +* Bug Fixes + + - Made libfuzzy compile as a shared library again. + + ** Version 2.11 - 11 Sep 2014 * New Features diff --git a/configure b/configure index 78da9d1..d9cbebd 100755 --- a/configure +++ b/configure @@ -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 . # @@ -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='research@jessekornblum.com' 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\\" diff --git a/configure.ac b/configure.ac index a83dab6..2383793 100755 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([SSDEEP],[2.11],[research@jessekornblum.com]) +AC_INIT([SSDEEP],[2.11.1],[research@jessekornblum.com]) AM_INIT_AUTOMAKE AC_CONFIG_FILES([Makefile]) diff --git a/doc/Makefile b/doc/Makefile index 4068b96..ae5e0c2 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -10,8 +10,6 @@ ALL_FILES = manpage.html index.html usage.html changes.txt style.css api USERNAME = jessekornblum,ssdeep DESTDIR = web.sourceforge.net:htdocs/ -RMAN = rman - preflight: rm -f *~ grep RBF *.html *.txt diff --git a/doc/changes.txt b/doc/changes.txt index ce4d88a..5f7e13d 100644 --- a/doc/changes.txt +++ b/doc/changes.txt @@ -1,3 +1,10 @@ +** Version 2.11.1 - 27 Sep 2014 + +* Bug Fixes + + - Made libfuzzy compile as a shared library again. + + ** Version 2.11 - 11 Sep 2014 * New Features diff --git a/doc/index.html b/doc/index.html index f3ce7aa..1139c7f 100644 --- a/doc/index.html +++ b/doc/index.html @@ -32,7 +32,7 @@

-ssdeep - Latest version 2.11 +ssdeep - Latest version 2.11.1


@@ -133,9 +133,9 @@

Stable Version

The latest stable version of ssdeep is -version 2.11 +version 2.11.1 and was released on -11 Sep 2014 +27 Sep 2014 You can take a look at the complete changelog, but here are the changes in the latest version: @@ -144,6 +144,7 @@

Stable Version

  • Fixed bug in signature computation.
  • Added fuzzy_clone function to the API.
  • Windows version has more modern compiler.
  • +
  • Made libfuzzy a shared library again.
  • @@ -156,22 +157,22 @@

    Stable Version

    - Version 2.11 + Version 2.11.1 - 11 Sep 2014 + 27 Sep 2014 - + Windows binary - SHA256 3b74deff08d97048bd49764ca5bfdbaa6d5d95dd4f7b6e21162561057471413e + SHA256 01aa313038baa1d822eee07a91bfcf1aab265d2bde7527030bdd6ec7e9fa55d8 - + source code - SHA256 82cc0e06f44127fc5c9c507881951714981da6187cdcfed0158c9167f39effc7 + SHA256 a632ac30fca29ad5627e1bf5fae05d9a8873e6606314922479259531e0c19608 @@ -276,6 +277,28 @@

    Older Versions

    + + + 2.11 + + + + 11 Sep 2014 + + + + Windows binary + SHA256 3b74deff08d97048bd49764ca5bfdbaa6d5d95dd4f7b6e21162561057471413e + + + + + source code + SHA256 82cc0e06f44127fc5c9c507881951714981da6187cdcfed0158c9167f39effc7 + + + + 2.10 diff --git a/doc/manpage.html b/doc/manpage.html index b0301f6..692d0ae 100644 --- a/doc/manpage.html +++ b/doc/manpage.html @@ -121,7 +121,7 @@

    SEE ALSO

     
     
     
    -Facebook                  Version 2.11 - 11 Sep 2014                 SSDEEP(1)
    +Facebook                 Version 2.11.1 - 27 Sep 2014                SSDEEP(1)
     

    diff --git a/ssdeep-2.11.1.tar.gz b/ssdeep-2.11.1.tar.gz new file mode 100644 index 0000000..83b5ca4 Binary files /dev/null and b/ssdeep-2.11.1.tar.gz differ diff --git a/ssdeep-2.11.1.zip b/ssdeep-2.11.1.zip new file mode 100644 index 0000000..5c243d9 Binary files /dev/null and b/ssdeep-2.11.1.zip differ