Skip to content

Commit c2def79

Browse files
committed
Attempt to fix json load order
1 parent b89ede9 commit c2def79

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project follows [Semantic Versioning](http://semver.org/).
44

5-
## [1.2.0] - UNRELEASED
5+
## [1.1.3] - UNRELEASED
66
### Fixed
77
- [x] Memory leaks during map when callback throws an exception.
8-
- [x] Memory leaks when structures contain themselves
8+
- [x] Memory leaks when structures contain themselves.
99

1010
## Added
1111
- [ ] Show version info in `phpinfo()`

config.m4

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ dnl Classes
7373
PHP_ADD_BUILD_DIR($ext_builddir/src/php/classes, 1)
7474
PHP_ADD_BUILD_DIR($ext_builddir/src/php/iterators, 1)
7575
PHP_ADD_BUILD_DIR($ext_builddir/src/php/handlers, 1)
76+
77+
PHP_ADD_EXTENSION_DEP(ds, spl)
78+
PHP_ADD_EXTENSION_DEP(ds, json)
7679
fi
7780

7881

config.w32

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,5 @@ if (PHP_DS != "no") {
8888
]);
8989
}
9090

91+
PHP_ADD_EXTENSION_DEP('ds', 'spl')
92+
PHP_ADD_EXTENSION_DEP('ds', 'json')

0 commit comments

Comments
 (0)