Skip to content

Commit 28a7c62

Browse files
authored
[skip ci] Add HAVE_XSL_EXSLT help text (#15174)
1 parent c96f08a commit 28a7c62

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ext/xsl/config.m4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ if test "$PHP_XSL" != "no"; then
2222
[
2323
PHP_EVAL_INCLINE([$EXSLT_CFLAGS])
2424
PHP_EVAL_LIBLINE([$EXSLT_LIBS], [XSL_SHARED_LIBADD])
25-
AC_DEFINE(HAVE_XSL_EXSLT, 1, [ ])
25+
AC_DEFINE([HAVE_XSL_EXSLT], [1],
26+
[Define to 1 if system has the EXSLT extension library for XSLT.])
2627
], [ ])
2728

2829
AC_DEFINE(HAVE_XSL,1,[ ])

ext/xsl/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if (PHP_XSL != "no") {
2828
if (ext_xsl_lib_found && CHECK_HEADER_ADD_INCLUDE("libxslt\\xslt.h", "CFLAGS_XSL")) {
2929
if (ext_exslt_lib_found) {
3030
if (CHECK_HEADER_ADD_INCLUDE("libexslt\\exslt.h", "CFLAGS_XSL")) {
31-
AC_DEFINE("HAVE_XSL_EXSLT", 1, "");
31+
AC_DEFINE("HAVE_XSL_EXSLT", 1, "Define to 1 if system has the EXSLT extension library for XSLT.");
3232
}
3333
}
3434
EXTENSION("xsl", "php_xsl.c xsltprocessor.c", PHP_XSL_SHARED);

0 commit comments

Comments
 (0)