Skip to content

Fix xmlreader extension phpize build #14978

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ext/dom/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ if test "$PHP_DOM" != "no"; then
$ext_builddir/$LEXBOR_DIR/tag
])])
PHP_SUBST([DOM_SHARED_LIBADD])
PHP_INSTALL_HEADERS([ext/dom], [xml_common.h xpath_callbacks.h namespace_compat.h])
PHP_INSTALL_HEADERS([ext/dom], [m4_normalize([
dom_ce.h
namespace_compat.h
xml_common.h
xpath_callbacks.h
])])
PHP_ADD_EXTENSION_DEP(dom, libxml)
])
fi
7 changes: 6 additions & 1 deletion ext/dom/config.w32
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ if (PHP_DOM == "yes") {
WARNING("dom support can't be enabled, libxml is not found")
}
}
PHP_INSTALL_HEADERS("ext/dom", "xml_common.h xpath_callbacks.h namespace_compat.h");
PHP_INSTALL_HEADERS("ext/dom",
"dom_ce.h " +
"namespace_compat.h " +
"xml_common.h " +
"xpath_callbacks.h "
);
} else {
WARNING("dom support can't be enabled, libxml is not enabled")
PHP_DOM = "no"
Expand Down
Loading