-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
cjs (6.2.0) wilma; urgency=medium | ||
|
||
[ Clement Lefebvre ] | ||
* packaging: Forbid compilation if the symbols file is outdated | ||
|
||
[ Leigh Scott ] | ||
* Port to mozjs115 (#122) | ||
|
||
[ Fabio Fantoni ] | ||
* debian: wrap and sort | ||
|
||
[ Simon McVittie ] | ||
* d/control: libcjs0 Depends on gir1.2-girepository-2.0 | ||
* d/control: libcjs0 Depends on typelibs imported by built-in modules | ||
|
||
-- Clement Lefebvre <[email protected]> Tue, 11 Jun 2024 15:25:49 +0100 | ||
|
||
cjs (6.0.0) virginia; urgency=medium | ||
|
||
[ Dominik Opyd ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,15 @@ | |
# SPDX-FileCopyrightText: 2019 Philip Chimento <[email protected]> | ||
# SPDX-FileCopyrightText: 2019 Chun-wei Fan <[email protected]> | ||
|
||
project('cjs', 'cpp', 'c', version: '6.1.0', license: ['MIT', 'LGPL2+'], | ||
meson_version: '>=0.56.0', | ||
default_options: ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99', | ||
'warning_level=2', 'b_pch=true' ]) | ||
project( | ||
'cjs', | ||
'cpp', | ||
'c', | ||
version : '6.2.0', | ||
license : ['MIT', 'LGPL2+'], | ||
meson_version : '>=0.56.0', | ||
default_options : ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99', 'warning_level=2', 'b_pch=true'] | ||
) | ||
|
||
# cpp_rtti: SpiderMonkey can be compiled with or without runtime type | ||
# information, and the default is without. We must match that option because we | ||
|