MYSQL_config=""
if test "x$MYSQL_config_check" != "xskip"; then
AC_MSG_CHECKING([for mysql_config])
- if test "x$MYSQL_config_check" == "x"; then
+ if test "x$MYSQL_config_check" = "x"; then
# check if it's in path
for m in /bin /usr/bin /usr/local/bin /opt/csw/bin; do
if test -x $m/mysql_config; then
fi
done
- if test "x$MYSQL_config" == "x"; then
+ if test "x$MYSQL_config" = "x"; then
AC_MSG_RESULT([not found])
else
AC_MSG_RESULT([$MYSQL_config])
[location of pg_config]
),
[PGSQL_pg_config="$withval"
- if test "x$PGSQL_pg_config" == "xyes" || test ! -x "$PGSQL_pg_config"; then
+ if test "x$PGSQL_pg_config" = "xyes" || test ! -x "$PGSQL_pg_config"; then
AC_MSG_ERROR([--with-pgsql-config must provide a valid path to pg_config executable])
fi
],
)
if test "x$PGSQL_pg_config" != "x"; then
- if test "x$PGSQL_lib_check" == "x"; then
+ if test "x$PGSQL_lib_check" = "x"; then
PGSQL_lib_check=$($PGSQL_pg_config --libdir)
fi
- if test "x$PGSQL_inc_check" == "x"; then
+ if test "x$PGSQL_inc_check" = "x"; then
PGSQL_inc_check=$($PGSQL_pg_config --includedir)
fi
PGSQL_CFLAGS=