v9.1 release

This commit is contained in:
van Hauser 2020-07-29 09:36:37 +02:00
commit 0a17bf5f53
5 changed files with 8 additions and 7 deletions

View file

@ -2,6 +2,7 @@ Changelog for hydra
------------------- -------------------
Release 9.1-dev Release 9.1-dev
* enable gcc 10 support for xhydra too :)
* rdb: support for libfreerdp3 (thanks to animetauren) * rdb: support for libfreerdp3 (thanks to animetauren)
* new module: smb2 which also supports smb3 (uses libsmbclient-dev) (thanks to Karim Kanso for the module!) * new module: smb2 which also supports smb3 (uses libsmbclient-dev) (thanks to Karim Kanso for the module!)
* oracle: added success condition (thanks to kazkansouh), compile on Cygwin (thanks to maaaaz) * oracle: added success condition (thanks to kazkansouh), compile on Cygwin (thanks to maaaaz)

View file

@ -61,7 +61,7 @@ CC = @CC@
MAINT = @MAINT@ MAINT = @MAINT@
MAKEINFO = @MAKEINFO@ MAKEINFO = @MAKEINFO@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ -fcommon -Wl,--allow-multiple-definition
PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_LIBS = @PACKAGE_LIBS@
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG = @PKG_CONFIG@
VERSION = @VERSION@ VERSION = @VERSION@

8
hydra-gtk/configure vendored
View file

@ -2233,15 +2233,15 @@ if test "$ac_test_CFLAGS" = set; then
CFLAGS=$ac_save_CFLAGS CFLAGS=$ac_save_CFLAGS
elif test $ac_cv_prog_cc_g = yes; then elif test $ac_cv_prog_cc_g = yes; then
if test "$GCC" = yes; then if test "$GCC" = yes; then
CFLAGS="-g -O2" CFLAGS="-g -O2 -fcommon -Wl,--allow-multiple-definition"
else else
CFLAGS="-g" CFLAGS="-g -fcommon -Wl,--allow-multiple-definition"
fi fi
else else
if test "$GCC" = yes; then if test "$GCC" = yes; then
CFLAGS="-O2" CFLAGS="-O2 -fcommon -Wl,--allow-multiple-definition"
else else
CFLAGS= CFLAGS="-fcommon -Wl,--allow-multiple-definition"
fi fi
fi fi
echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5

View file

@ -61,7 +61,7 @@ CC = @CC@
MAINT = @MAINT@ MAINT = @MAINT@
MAKEINFO = @MAKEINFO@ MAKEINFO = @MAKEINFO@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ -fcommon -Wl,--allow-multiple-definition
PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_LIBS = @PACKAGE_LIBS@
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG = @PKG_CONFIG@
VERSION = @VERSION@ VERSION = @VERSION@

View file

@ -225,7 +225,7 @@ char *SERVICES = "adam6500 asterisk afp cisco cisco-enable cvs firebird ftp[s] "
#define RESTOREFILE "./hydra.restore" #define RESTOREFILE "./hydra.restore"
#define PROGRAM "Hydra" #define PROGRAM "Hydra"
#define VERSION "v9.1-dev" #define VERSION "v9.1"
#define AUTHOR "van Hauser/THC" #define AUTHOR "van Hauser/THC"
#define EMAIL "<vh@thc.org>" #define EMAIL "<vh@thc.org>"
#define AUTHOR2 "David Maciejak" #define AUTHOR2 "David Maciejak"