Skip to content

Commit 48f8d5f

Browse files
committed
[skip ci] Add 'the' before PHP extension
To make this sound a bit better and to be a bit in sync with the COMPILE_DL_<ext>, help texts are: Define to 1 if the PHP extension 'extension_name' is available.
1 parent a8d47c6 commit 48f8d5f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+84
-76
lines changed

ext/bcmath/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ if test "$PHP_BCMATH" != "no"; then
3333
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
3434
PHP_ADD_BUILD_DIR([$ext_builddir/libbcmath/src])
3535
AC_DEFINE([HAVE_BCMATH], [1],
36-
[Define to 1 if PHP extension 'bcmath' is available.])
36+
[Define to 1 if the PHP extension 'bcmath' is available.])
3737
fi

ext/bcmath/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ if (PHP_BCMATH == "yes") {
1010
floor_or_ceil.c nearzero.c num2str.c raise.c rmzero.c str2num.c \
1111
round.c convert.c", "bcmath");
1212

13-
AC_DEFINE('HAVE_BCMATH', 1, "Define to 1 if PHP extension 'bcmath' is available.");
13+
AC_DEFINE('HAVE_BCMATH', 1, "Define to 1 if the PHP extension 'bcmath' is available.");
1414
}

ext/bz2/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if test "$PHP_BZ2" != "no"; then
2222
[$BZIP_DIR/$PHP_LIBDIR],
2323
[BZ2_SHARED_LIBADD])
2424
AC_DEFINE([HAVE_BZ2], [1],
25-
[Define to 1 if PHP extension 'bz2' is available.])
25+
[Define to 1 if the PHP extension 'bz2' is available.])
2626
],
2727
[AC_MSG_ERROR([bz2 module requires libbz2 >= 1.0.0])],
2828
[-L$BZIP_DIR/$PHP_LIBDIR])

ext/bz2/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (PHP_BZ2 != "no") {
66
if (CHECK_LIB("libbz2_a.lib;libbz2.lib", "bz2", PHP_BZ2) &&
77
CHECK_HEADER_ADD_INCLUDE("bzlib.h", "CFLAGS_BZ2")) {
88
EXTENSION("bz2", "bz2.c bz2_filter.c");
9-
AC_DEFINE('HAVE_BZ2', 1, "Define to 1 if PHP extension 'bz2' is available.");
9+
AC_DEFINE('HAVE_BZ2', 1, "Define to 1 if the PHP extension 'bz2' is available.");
1010
// BZ2 extension does this slightly differently from others
1111
if (PHP_BZ2_SHARED) {
1212
ADD_FLAG("CFLAGS_BZ2", "/D PHP_BZ2_EXPORTS ");

ext/calendar/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PHP_ARG_ENABLE([calendar],
55

66
if test "$PHP_CALENDAR" = "yes"; then
77
AC_DEFINE([HAVE_CALENDAR], [1],
8-
[Define to 1 if PHP extension 'calendar' is available.])
8+
[Define to 1 if the PHP extension 'calendar' is available.])
99
PHP_NEW_EXTENSION([calendar],
1010
[calendar.c dow.c french.c gregor.c jewish.c julian.c easter.c cal_unix.c],
1111
[$ext_shared])

ext/calendar/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ ARG_ENABLE("calendar", "calendar conversion support", "yes");
55
if (PHP_CALENDAR == "yes") {
66
EXTENSION("calendar", "calendar.c dow.c french.c gregor.c jewish.c \
77
julian.c easter.c cal_unix.c");
8-
AC_DEFINE('HAVE_CALENDAR', 1, "Define to 1 if PHP extension 'calendar' is available.");
8+
AC_DEFINE('HAVE_CALENDAR', 1, "Define to 1 if the PHP extension 'calendar' is available.");
99
}

ext/com_dotnet/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ if (PHP_COM_DOTNET == "yes") {
88
com_handlers.c com_iterator.c com_misc.c com_olechar.c \
99
com_typeinfo.c com_variant.c com_wrapper.c com_saproxy.c com_persist.c",
1010
null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
11-
AC_DEFINE('HAVE_COM_DOTNET', 1, "Define to 1 if PHP extension 'com_dotnet' is available.");
11+
AC_DEFINE('HAVE_COM_DOTNET', 1, "Define to 1 if the PHP extension 'com_dotnet' is available.");
1212
CHECK_HEADER_ADD_INCLUDE('mscoree.h', 'CFLAGS_COM_DOTNET');
1313
}

ext/ctype/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ PHP_ARG_ENABLE([ctype],
66

77
if test "$PHP_CTYPE" != "no"; then
88
AC_DEFINE([HAVE_CTYPE], [1],
9-
[Define to 1 if PHP extension 'ctype' is available.])
9+
[Define to 1 if the PHP extension 'ctype' is available.])
1010
PHP_NEW_EXTENSION([ctype], [ctype.c], [$ext_shared])
1111
fi

ext/ctype/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ ARG_ENABLE("ctype", "ctype", "yes");
44

55
if (PHP_CTYPE == "yes") {
66
EXTENSION("ctype", "ctype.c");
7-
AC_DEFINE('HAVE_CTYPE', 1, "Define to 1 if PHP extension 'ctype' is available.");
7+
AC_DEFINE('HAVE_CTYPE', 1, "Define to 1 if the PHP extension 'ctype' is available.");
88
}

ext/curl/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ if test "$PHP_CURL" != "no"; then
7474
PHP_CHECK_LIBRARY([curl],
7575
[curl_easy_perform],
7676
[AC_DEFINE([HAVE_CURL], [1],
77-
[Define to 1 if PHP extension 'curl' is available.])],
77+
[Define to 1 if the PHP extension 'curl' is available.])],
7878
[AC_MSG_ERROR([The libcurl check failed. Please, check config.log for details.])],
7979
[$CURL_LIBS])
8080

0 commit comments

Comments
 (0)