Skip to content

Commit cdb28f8

Browse files
committed
Follow-up on phpGH-13516: include config.h from build dir for new files in ext-dom
phpGH-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.
1 parent a2cecd2 commit cdb28f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/dom/html_collection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#ifdef HAVE_CONFIG_H
18-
#include "config.h"
18+
#include <config.h>
1919
#endif
2020

2121
#include "php.h"

ext/dom/infra.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#ifdef HAVE_CONFIG_H
18-
#include "config.h"
18+
#include <config.h>
1919
#endif
2020

2121
#include "php.h"

ext/dom/xml_serializer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#ifdef HAVE_CONFIG_H
18-
#include "config.h"
18+
#include <config.h>
1919
#endif
2020

2121
#include "php.h"

0 commit comments

Comments
 (0)