Skip to content

Commit 084e1d7

Browse files
simonhampgithub-actions[bot]
authored andcommitted
build
1 parent a9de439 commit 084e1d7

File tree

8 files changed

+218
-4
lines changed

8 files changed

+218
-4
lines changed

bin/mac/arm64/php-8.2.zip

757 KB
Binary file not shown.

build-meta/build-libraries-mac.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"libxml2",
77
"curl",
88
"libpng",
9+
"libwebp",
10+
"libjpeg",
11+
"freetype",
912
"sqlite",
1013
"libzip"
1114
]

license-files/lib_curl_0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
COPYRIGHT AND PERMISSION NOTICE
22

3-
Copyright (c) 1996 - 2024, Daniel Stenberg, <[email protected]>, and many
3+
Copyright (c) 1996 - 2025, Daniel Stenberg, <[email protected]>, and many
44
contributors, see the THANKS file.
55

66
All rights reserved.

license-files/lib_freetype_0.txt

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
FREETYPE LICENSES
2+
-----------------
3+
4+
The FreeType 2 font engine is copyrighted work and cannot be used
5+
legally without a software license. In order to make this project
6+
usable to a vast majority of developers, we distribute it under two
7+
mutually exclusive open-source licenses.
8+
9+
This means that *you* must choose *one* of the two licenses described
10+
below, then obey all its terms and conditions when using FreeType 2 in
11+
any of your projects or products.
12+
13+
- The FreeType License, found in the file `docs/FTL.TXT`, which is
14+
similar to the original BSD license *with* an advertising clause
15+
that forces you to explicitly cite the FreeType project in your
16+
product's documentation. All details are in the license file.
17+
This license is suited to products which don't use the GNU General
18+
Public License.
19+
20+
Note that this license is compatible to the GNU General Public
21+
License version 3, but not version 2.
22+
23+
- The GNU General Public License version 2, found in
24+
`docs/GPLv2.TXT` (any later version can be used also), for
25+
programs which already use the GPL. Note that the FTL is
26+
incompatible with GPLv2 due to its advertisement clause.
27+
28+
The contributed BDF and PCF drivers come with a license similar to
29+
that of the X Window System. It is compatible to the above two
30+
licenses (see files `src/bdf/README` and `src/pcf/README`). The same
31+
holds for the source code files `src/base/fthash.c` and
32+
`include/freetype/internal/fthash.h`; they were part of the BDF driver
33+
in earlier FreeType versions.
34+
35+
The gzip module uses the zlib license (see `src/gzip/zlib.h`) which
36+
too is compatible to the above two licenses.
37+
38+
The files `src/autofit/ft-hb.c` and `src/autofit/ft-hb.h` contain code
39+
taken almost verbatim from the HarfBuzz file `hb-ft.cc`, which uses
40+
the 'Old MIT' license, compatible to the above two licenses.
41+
42+
The MD5 checksum support (only used for debugging in development
43+
builds) is in the public domain.
44+
45+
46+
--- end of LICENSE.TXT ---

license-files/lib_libjpeg_0.txt

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
libjpeg-turbo Licenses
2+
======================
3+
4+
libjpeg-turbo is covered by two compatible BSD-style open source licenses:
5+
6+
- The IJG (Independent JPEG Group) License, which is listed in
7+
[README.ijg](README.ijg)
8+
9+
This license applies to the libjpeg API library and associated programs,
10+
including any code inherited from libjpeg and any modifications to that
11+
code. Note that the libjpeg-turbo SIMD source code bears the
12+
[zlib License](https://opensource.org/licenses/Zlib), but in the context of
13+
the overall libjpeg API library, the terms of the zlib License are subsumed
14+
by the terms of the IJG License.
15+
16+
- The Modified (3-clause) BSD License, which is listed below
17+
18+
This license applies to the TurboJPEG API library and associated programs, as
19+
well as the build system. Note that the TurboJPEG API library wraps the
20+
libjpeg API library, so in the context of the overall TurboJPEG API library,
21+
both the terms of the IJG License and the terms of the Modified (3-clause)
22+
BSD License apply.
23+
24+
25+
Complying with the libjpeg-turbo Licenses
26+
=========================================
27+
28+
This section provides a roll-up of the libjpeg-turbo licensing terms, to the
29+
best of our understanding. This is not a license in and of itself. It is
30+
intended solely for clarification.
31+
32+
1. If you are distributing a modified version of the libjpeg-turbo source,
33+
then:
34+
35+
1. You cannot alter or remove any existing copyright or license notices
36+
from the source.
37+
38+
**Origin**
39+
- Clause 1 of the IJG License
40+
- Clause 1 of the Modified BSD License
41+
- Clauses 1 and 3 of the zlib License
42+
43+
2. You must add your own copyright notice to the header of each source
44+
file you modified, so others can tell that you modified that file. (If
45+
there is not an existing copyright header in that file, then you can
46+
simply add a notice stating that you modified the file.)
47+
48+
**Origin**
49+
- Clause 1 of the IJG License
50+
- Clause 2 of the zlib License
51+
52+
3. You must include the IJG README file, and you must not alter any of the
53+
copyright or license text in that file.
54+
55+
**Origin**
56+
- Clause 1 of the IJG License
57+
58+
2. If you are distributing only libjpeg-turbo binaries without the source, or
59+
if you are distributing an application that statically links with
60+
libjpeg-turbo, then:
61+
62+
1. Your product documentation must include a message stating:
63+
64+
This software is based in part on the work of the Independent JPEG
65+
Group.
66+
67+
**Origin**
68+
- Clause 2 of the IJG license
69+
70+
2. If your binary distribution includes or uses the TurboJPEG API, then
71+
your product documentation must include the text of the Modified BSD
72+
License (see below.)
73+
74+
**Origin**
75+
- Clause 2 of the Modified BSD License
76+
77+
3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
78+
contributors thereof in advertising, publicity, etc.
79+
80+
**Origin**
81+
- IJG License
82+
- Clause 3 of the Modified BSD License
83+
84+
4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
85+
free of defects, nor do we accept any liability for undesirable
86+
consequences resulting from your use of the software.
87+
88+
**Origin**
89+
- IJG License
90+
- Modified BSD License
91+
- zlib License
92+
93+
94+
The Modified (3-clause) BSD License
95+
===================================
96+
97+
Copyright (C)2009-2024 D. R. Commander. All Rights Reserved.<br>
98+
Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
99+
100+
Redistribution and use in source and binary forms, with or without
101+
modification, are permitted provided that the following conditions are met:
102+
103+
- Redistributions of source code must retain the above copyright notice,
104+
this list of conditions and the following disclaimer.
105+
- Redistributions in binary form must reproduce the above copyright notice,
106+
this list of conditions and the following disclaimer in the documentation
107+
and/or other materials provided with the distribution.
108+
- Neither the name of the libjpeg-turbo Project nor the names of its
109+
contributors may be used to endorse or promote products derived from this
110+
software without specific prior written permission.
111+
112+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
113+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
114+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
115+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
116+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
117+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
118+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
119+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
120+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
121+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
122+
POSSIBILITY OF SUCH DAMAGE.
123+
124+
125+
Why Two Licenses?
126+
=================
127+
128+
The zlib License could have been used instead of the Modified (3-clause) BSD
129+
License, and since the IJG License effectively subsumes the distribution
130+
conditions of the zlib License, this would have effectively placed
131+
libjpeg-turbo binary distributions under the IJG License. However, the IJG
132+
License specifically refers to the Independent JPEG Group and does not extend
133+
attribution and endorsement protections to other entities. Thus, it was
134+
desirable to choose a license that granted us the same protections for new code
135+
that were granted to the IJG for code derived from their software.

license-files/lib_libpng_0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
44
PNG Reference Library License version 2
55
---------------------------------------
66

7-
* Copyright (c) 1995-2024 The PNG Reference Library Authors.
8-
* Copyright (c) 2018-2024 Cosmin Truta.
7+
* Copyright (c) 1995-2025 The PNG Reference Library Authors.
8+
* Copyright (c) 2018-2025 Cosmin Truta.
99
* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
1010
* Copyright (c) 1996-1997 Andreas Dilger.
1111
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.

license-files/lib_libwebp_0.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Copyright (c) 2010, Google Inc. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in
12+
the documentation and/or other materials provided with the
13+
distribution.
14+
15+
* Neither the name of Google nor the names of its contributors may
16+
be used to endorse or promote products derived from this software
17+
without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+

license-files/src_php-src_0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--------------------------------------------------------------------
22
The PHP License, version 3.01
3-
Copyright (c) 1999 - 2021 The PHP Group. All rights reserved.
3+
Copyright (c) 1999 - 2024 The PHP Group. All rights reserved.
44
--------------------------------------------------------------------
55

66
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)