Skip to content
Snippets Groups Projects
Commit 758045ec authored by Danny Auble's avatar Danny Auble
Browse files

fix for finding databases

parent 070404d1
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,9 @@ AC_DEFUN([X_AC_DATABASES], ...@@ -49,7 +49,9 @@ AC_DEFUN([X_AC_DATABASES],
AC_SUBST(MYSQL_CFLAGS) AC_SUBST(MYSQL_CFLAGS)
AC_DEFINE(HAVE_MYSQL, 1, [Define to 1 if using MySQL libaries]) AC_DEFINE(HAVE_MYSQL, 1, [Define to 1 if using MySQL libaries])
else else
AC_MSG_WARN([*** MySQL test program execution failed.]) MYSQL_CFLAGS=""
MYSQL_LIBS=""
AC_MSG_WARN([*** MySQL test program execution failed.])
fi fi
fi fi
...@@ -88,6 +90,8 @@ AC_DEFUN([X_AC_DATABASES], ...@@ -88,6 +90,8 @@ AC_DEFUN([X_AC_DATABASES],
AC_SUBST(PGSQL_CFLAGS) AC_SUBST(PGSQL_CFLAGS)
AC_DEFINE(HAVE_PGSQL, 1, [Define to 1 if using PostgreSQL libaries]) AC_DEFINE(HAVE_PGSQL, 1, [Define to 1 if using PostgreSQL libaries])
else else
PGSQL_CFLAGS=""
PGSQL_LIBS=""
AC_MSG_WARN([*** PostgreSQL test program execution failed.]) AC_MSG_WARN([*** PostgreSQL test program execution failed.])
fi fi
fi fi
......
...@@ -25059,7 +25059,9 @@ cat >>confdefs.h <<\_ACEOF ...@@ -25059,7 +25059,9 @@ cat >>confdefs.h <<\_ACEOF
_ACEOF _ACEOF
   
else else
{ echo "$as_me:$LINENO: WARNING: *** MySQL test program execution failed." >&5 MYSQL_CFLAGS=""
MYSQL_LIBS=""
{ echo "$as_me:$LINENO: WARNING: *** MySQL test program execution failed." >&5
echo "$as_me: WARNING: *** MySQL test program execution failed." >&2;} echo "$as_me: WARNING: *** MySQL test program execution failed." >&2;}
fi fi
fi fi
...@@ -25185,6 +25187,8 @@ cat >>confdefs.h <<\_ACEOF ...@@ -25185,6 +25187,8 @@ cat >>confdefs.h <<\_ACEOF
_ACEOF _ACEOF
   
else else
PGSQL_CFLAGS=""
PGSQL_LIBS=""
{ echo "$as_me:$LINENO: WARNING: *** PostgreSQL test program execution failed." >&5 { echo "$as_me:$LINENO: WARNING: *** PostgreSQL test program execution failed." >&5
echo "$as_me: WARNING: *** PostgreSQL test program execution failed." >&2;} echo "$as_me: WARNING: *** PostgreSQL test program execution failed." >&2;}
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment