Anroid_mySQL

This commit is contained in:
vanhauser-thc 2014-05-29 12:04:46 +02:00
commit 99d32d9284
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@ Changelog for hydra
------------------- -------------------
Release 8.1-pre 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! * 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) * 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) * 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
View file

@ -451,10 +451,15 @@ for i in $LIBDIRS ; do
fi fi
fi fi
done done
MYSQLINSUBDIR=""
for i in $INCDIRS ; do for i in $INCDIRS ; do
if [ "X" != "X$MYSQL_PATH" ]; then if [ "X" != "X$MYSQL_PATH" ]; then
if [ -f "$i/mysql/mysql.h" ]; then if [ -f "$i/mysql/mysql.h" ]; then
MYSQL_IPATH="$i/mysql" MYSQL_IPATH="$i/mysql"
MYSQLINSUBDIR="mysql/"
fi
if [ -f "$i/mysql.h" ]; then
MYSQL_IPATH="$i"
fi fi
fi fi
done done
@ -931,6 +936,11 @@ if [ -n "$SVN_IPATH" ]; then
fi fi
if [ -n "$MYSQL_IPATH" ]; then if [ -n "$MYSQL_IPATH" ]; then
XIPATHS="$XIPATHS -I$MYSQL_IPATH" XIPATHS="$XIPATHS -I$MYSQL_IPATH"
if [ -n "$MYSQLINSUBDIR" ]; then
XDEFINES="$XDEFINES -DHAVE_MYSQL_MYSQL_H"
else
XDEFINES="$XDEFINES -DHAVE_MYSQL_H"
fi
fi fi
if [ -n "$AFP_IPATH" ]; then if [ -n "$AFP_IPATH" ]; then
XIPATHS="$XIPATHS -I$AFP_IPATH" XIPATHS="$XIPATHS -I$AFP_IPATH"