-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update cross/dbus - update dbus from 1.12.22 to 1.13.22 * optimize code of cross/opus
- Loading branch information
Showing
5 changed files
with
65 additions
and
14 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
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,3 @@ | ||
lnk:lib/libdbus-1.so | ||
lnk:lib/libdbus-1.so.3 | ||
lib:lib/libdbus-1.so.3.19.14 | ||
lib:lib/libdbus-1.so.3.31.0 |
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,3 @@ | ||
dbus-1.12.22.tar.gz SHA1 eb2590a18c7edc842084db15b2f7f3cfaeb1c6a6 | ||
dbus-1.12.22.tar.gz SHA256 8d25785c798ec4f892e6f9d177fb0ceeb8b29867b119798f9d5228561d3ad474 | ||
dbus-1.12.22.tar.gz MD5 c6430ac3be48162b1b62a92d99a1d448 | ||
dbus-1.13.22.tar.xz SHA1 9f6bf1922a550281481ee67fdff7212dc95c5562 | ||
dbus-1.13.22.tar.xz SHA256 fbe79fa621ccc01317032bd0d6a31542df429b5c293e075620e2c00fbf2e9c17 | ||
dbus-1.13.22.tar.xz MD5 5e7616495162394f811220555ec3d53b |
56 changes: 56 additions & 0 deletions
56
cross/dbus/patches/000-remove-warnings-not-known-by-gcc.patch
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# remove warnings (some are introduced with dbus v1.13.22) | ||
# remove warnings unknown by older gcc: | ||
# - double-promotion | ||
# - jump-misses-init | ||
# - unused-but-set-variable | ||
# remove warnings unknown by gcc of DSM 6 toolchains: | ||
# - duplicated-branches | ||
# - duplicated-cond | ||
# - null-dereference | ||
# - restrict | ||
# ignore further warnings | ||
# - inline | ||
# | ||
--- CMakeLists.txt.orig 2022-02-21 15:28:30.000000000 +0000 | ||
+++ CMakeLists.txt 2023-05-20 14:23:18.386712356 +0000 | ||
@@ -281,9 +281,6 @@ | ||
cast-align | ||
char-subscripts | ||
declaration-after-statement | ||
- double-promotion | ||
- duplicated-branches | ||
- duplicated-cond | ||
extra | ||
float-equal | ||
format-nonliteral | ||
@@ -291,8 +288,6 @@ | ||
format=2 | ||
implicit-function-declaration | ||
init-self | ||
- inline | ||
- jump-misses-init | ||
logical-op | ||
missing-declarations | ||
missing-format-attribute | ||
@@ -306,13 +301,11 @@ | ||
no-missing-field-initializers | ||
no-unused-label | ||
no-unused-parameter | ||
- null-dereference | ||
old-style-definition | ||
packed | ||
pointer-arith | ||
pointer-sign | ||
redundant-decls | ||
- restrict | ||
return-type | ||
shadow | ||
sign-compare | ||
@@ -321,7 +314,6 @@ | ||
switch-default | ||
switch-enum | ||
undef | ||
- unused-but-set-variable | ||
write-strings | ||
) | ||
set(WARNINGS_C |
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