From cdb28f8ec96ddb6090363bb45bd1ac5d8620fdbc Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Fri, 28 Jun 2024 17:58:28 +0200 Subject: [PATCH] Follow-up on GH-13516: include config.h from build dir for new files in ext-dom 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 c207a87d159a9..fbe5aba65eeaf 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 8fa42453c7519..eb276d179464b 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 7d4c8f4d31d7e..262ed4a839ae7 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"