Fixed --with-mysql, --with-postgres
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -399,12 +399,12 @@ AC_SUBST(SQLLIBS) | ... | @@ -399,12 +399,12 @@ AC_SUBST(SQLLIBS) |
399 | AC_ARG_WITH([mysql], | 399 | AC_ARG_WITH([mysql], |
400 | AC_HELP_STRING([--with-mysql], | 400 | AC_HELP_STRING([--with-mysql], |
401 | [enable mysql support (default no)]), | 401 | [enable mysql support (default no)]), |
402 | [use_mysql="yes"],,) | 402 | [use_mysql=${withval}],,) |
403 | 403 | ||
404 | AC_ARG_WITH([postgres], | 404 | AC_ARG_WITH([postgres], |
405 | AC_HELP_STRING([--with-postgres], | 405 | AC_HELP_STRING([--with-postgres], |
406 | [enable postgres support (default no)]), | 406 | [enable postgres support (default no)]), |
407 | [use_postgres="yes"],,) | 407 | [use_postgres=${withval}],,) |
408 | 408 | ||
409 | AH_TEMPLATE(USE_SQL,[Enables SQL support]) | 409 | AH_TEMPLATE(USE_SQL,[Enables SQL support]) |
410 | AH_TEMPLATE(HAVE_MYSQL,[Define if you have libmysql]) | 410 | AH_TEMPLATE(HAVE_MYSQL,[Define if you have libmysql]) | ... | ... |
-
Please register or sign in to post a comment