Skip to content

Commit

Permalink
Fixes a regression (typo) introduced a few hours ago.
Browse files Browse the repository at this point in the history
git-svn-id: svn://cherokee-project.com/cherokee/trunk@6148 5dc97367-97f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed Jan 20, 2011
1 parent d5e1cfc commit 35b0b78
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions m4/mysql.m4
@@ -1,6 +1,4 @@

AC_DEFUN([AX_LIB_MYSQL],[
AC_DEFUN([AX_LIB_MYSQL],
[
AC_ARG_WITH([mysql], AC_ARG_WITH([mysql],
AC_HELP_STRING([--with-mysql=@<:@ARG@:>@], AC_HELP_STRING([--with-mysql=@<:@ARG@:>@],
[use MySQL client library @<:@default=yes@:>@, optionally specify path to mysql_config] [use MySQL client library @<:@default=yes@:>@, optionally specify path to mysql_config]
Expand Down Expand Up @@ -46,7 +44,7 @@ AC_DEFUN([AX_LIB_MYSQL],
fi fi
dnl dnl
dnl Detect mysql.h (alo) dnl Detect mysql.h - alo
dnl dnl
if test "$want_mysql" = "yes"; then if test "$want_mysql" = "yes"; then
AC_MSG_CHECKING([for mysql.h (using mysql_config --cflags)]) AC_MSG_CHECKING([for mysql.h (using mysql_config --cflags)])
Expand All @@ -57,7 +55,7 @@ AC_DEFUN([AX_LIB_MYSQL],
#include <mysql.h> #include <mysql.h>
],[ ],[
int a = 1; int a = 1;
],[ ],
have_mysql_h=yes, have_mysql_h=yes,
have_mysql_h=no have_mysql_h=no
) )
Expand Down Expand Up @@ -128,3 +126,4 @@ AC_DEFUN([AX_LIB_MYSQL],
AC_SUBST([MYSQL_CFLAGS]) AC_SUBST([MYSQL_CFLAGS])
AC_SUBST([MYSQL_LDFLAGS]) AC_SUBST([MYSQL_LDFLAGS])
]) ])

0 comments on commit 35b0b78

Please sign in to comment.