Imported Upstream version 1.4.16_pre1

This commit is contained in:
Jan Wagner 2013-11-26 23:58:53 +01:00
parent 047baae1ca
commit 212b4b8677
69 changed files with 10803 additions and 2698 deletions

View file

@ -42,6 +42,12 @@ AC_DEFUN([np_mysqlclient],
fi
np_mysql_libs="`$np_mysql_config --libs`"
np_mysql_cflags="`$np_mysql_config --cflags`"
# On Solaris, cflags may contain -xstrconst, which is not acceptable to the
# gcc compiler. In this case, use the include flags as the cflags
echo $np_mysql_cflags | grep -- -xstrconst > /dev/null 2> /dev/null
if test $? -eq 0 -a "$CC" = "gcc" ; then
np_mysql_cflags="`$np_mysql_config --include`"
fi
dnl Test a mysql_init. Some systems have mysql_config, but no headers
_savedcppflags="$CPPFLAGS"