Anroid_mySQL

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

View file

@ -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
View file

@ -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"