mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
Anroid_mySQL
This commit is contained in:
parent
90a74214b5
commit
99d32d9284
2 changed files with 11 additions and 0 deletions
1
CHANGES
1
CHANGES
|
@ -2,6 +2,7 @@ Changelog for hydra
|
|||
-------------------
|
||||
|
||||
Release 8.1-pre
|
||||
* Added patch by tux-mind for better MySQL compilation and an Android patches and Makefile. Thanks!
|
||||
* Added xhydra gtk patch by Petar Kaleychev to support -e r reverse login attempt, thanks!
|
||||
* Fixed a crash in the cisco module (thanks to Anatoly Mamaev for reporting)
|
||||
* Small fix for HTTP form module for redirect pages where a S= string match would not work (thanks to mkosmach for reporting)
|
||||
|
|
10
configure
vendored
10
configure
vendored
|
@ -451,10 +451,15 @@ for i in $LIBDIRS ; do
|
|||
fi
|
||||
fi
|
||||
done
|
||||
MYSQLINSUBDIR=""
|
||||
for i in $INCDIRS ; do
|
||||
if [ "X" != "X$MYSQL_PATH" ]; then
|
||||
if [ -f "$i/mysql/mysql.h" ]; then
|
||||
MYSQL_IPATH="$i/mysql"
|
||||
MYSQLINSUBDIR="mysql/"
|
||||
fi
|
||||
if [ -f "$i/mysql.h" ]; then
|
||||
MYSQL_IPATH="$i"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
@ -931,6 +936,11 @@ if [ -n "$SVN_IPATH" ]; then
|
|||
fi
|
||||
if [ -n "$MYSQL_IPATH" ]; then
|
||||
XIPATHS="$XIPATHS -I$MYSQL_IPATH"
|
||||
if [ -n "$MYSQLINSUBDIR" ]; then
|
||||
XDEFINES="$XDEFINES -DHAVE_MYSQL_MYSQL_H"
|
||||
else
|
||||
XDEFINES="$XDEFINES -DHAVE_MYSQL_H"
|
||||
fi
|
||||
fi
|
||||
if [ -n "$AFP_IPATH" ]; then
|
||||
XIPATHS="$XIPATHS -I$AFP_IPATH"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue