Commit b5c7d846 b5c7d846cd4780feff6900c79d1e2bb7643ea9b7 by Sergey Poznyakoff

Fixed --with-mysql, --with-postgres

1 parent 528e05ac
......@@ -399,12 +399,12 @@ AC_SUBST(SQLLIBS)
AC_ARG_WITH([mysql],
AC_HELP_STRING([--with-mysql],
[enable mysql support (default no)]),
[use_mysql="yes"],,)
[use_mysql=${withval}],,)
AC_ARG_WITH([postgres],
AC_HELP_STRING([--with-postgres],
[enable postgres support (default no)]),
[use_postgres="yes"],,)
[use_postgres=${withval}],,)
AH_TEMPLATE(USE_SQL,[Enables SQL support])
AH_TEMPLATE(HAVE_MYSQL,[Define if you have libmysql])
......