Browse Source

dont test for the socket -- enables installs over NFS etc.

# my previous commit was the revision before the fixed one (ie, i had the fix) so apologies for that.
experimental/new_apache_hooks
James Cox 24 years ago
parent
commit
210744928f
  1. 4
      ext/mysql/config.m4

4
ext/mysql/config.m4

@ -53,13 +53,9 @@ if test "$PHP_MYSQL" != "no"; then
AC_MSG_CHECKING(for MySQL UNIX socket location)
if test "$PHP_MYSQL_SOCK" != "no"; then
if test -r $PHP_MYSQL_SOCK; then
MYSQL_SOCK=$PHP_MYSQL_SOCK
AC_DEFINE_UNQUOTED(MYSQL_UNIX_ADDR, "$MYSQL_SOCK", [ ])
AC_MSG_RESULT([$MYSQL_SOCK])
else
AC_MSG_RESULT([warning: The specified $PHP_MYSQL_SOCK was not found!])
fi
else
PHP_MYSQL_SOCKET_SEARCH
fi

Loading…
Cancel
Save