From 59e639b5d4160efb12db01ad0a350234d1699719 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Fri, 28 Jun 2024 09:29:22 -0700 Subject: [PATCH] Follow-up on GH-13516: include config.h from build dir for new files in ext-dom (#14705) GH-13516 was created before the new DOM files were added, and the PR was never rebased to include the new DOM files, so there are three places which were not replaced. --- ext/dom/html_collection.c | 2 +- ext/dom/infra.c | 2 +- ext/dom/xml_serializer.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/dom/html_collection.c b/ext/dom/html_collection.c index c207a87d159..fbe5aba65ee 100644 --- a/ext/dom/html_collection.c +++ b/ext/dom/html_collection.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #include "php.h" diff --git a/ext/dom/infra.c b/ext/dom/infra.c index 8fa42453c75..eb276d17946 100644 --- a/ext/dom/infra.c +++ b/ext/dom/infra.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #include "php.h" diff --git a/ext/dom/xml_serializer.c b/ext/dom/xml_serializer.c index 7d4c8f4d31d..262ed4a839a 100644 --- a/ext/dom/xml_serializer.c +++ b/ext/dom/xml_serializer.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #include "php.h"