File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,6 @@ elif test "$PHP_MYSQLI" != "no"; then
57
57
MYSQL_LIB_CFG='--libmysqld-libs'
58
58
dnl mysqlnd doesn't support embedded, so we have to add some extra stuff
59
59
mysqli_extra_sources="mysqli_embedded.c"
60
- elif test "$enable_maintainer_zts" = "yes"; then
61
- MYSQL_LIB_CFG='--libs_r'
62
- MYSQL_LIB_NAME='mysqlclient_r'
63
60
else
64
61
MYSQL_LIB_CFG='--libs'
65
62
fi
Original file line number Diff line number Diff line change @@ -66,13 +66,8 @@ if test "$PHP_PDO_MYSQL" != "no"; then
66
66
if test "x$SED" = "x"; then
67
67
AC_PATH_PROG ( SED , sed )
68
68
fi
69
- if test "$enable_maintainer_zts" = "yes"; then
70
- PDO_MYSQL_LIBNAME=mysqlclient_r
71
- PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs_r | $SED -e "s/'//g"`
72
- else
73
- PDO_MYSQL_LIBNAME=mysqlclient
74
- PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs | $SED -e "s/'//g"`
75
- fi
69
+ PDO_MYSQL_LIBNAME=mysqlclient
70
+ PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs | $SED -e "s/'//g"`
76
71
PDO_MYSQL_INCLUDE=`$PDO_MYSQL_CONFIG --cflags | $SED -e "s/'//g"`
77
72
elif test -n "$PDO_MYSQL_DIR"; then
78
73
AC_MSG_RESULT ( [ not found] )
You can’t perform that action at this time.
0 commit comments