-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1540 from hadfl/ffmpeg
package updates
- Loading branch information
Showing
39 changed files
with
225 additions
and
156 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 +1,2 @@ | ||
clang-no-mimpure-text.patch | ||
stdbit-detection.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,15 @@ | ||
__STDC_VERSION_STDBIT_H__ is set unconditionally in the stdbit.h header, so the feature gets detected | ||
even when built with the default std=c17. however, the declarations are not exposed. | ||
|
||
diff -wpruN --no-dereference '--exclude=*.orig' a~/configure a/configure | ||
--- a~/configure 1970-01-01 00:00:00 | ||
+++ a/configure 1970-01-01 00:00:00 | ||
@@ -7789,7 +7789,7 @@ if disabled stdatomic; then | ||
fi | ||
|
||
check_builtin stdbit "stdbit.h assert.h" \ | ||
- 'static_assert(__STDC_VERSION_STDBIT_H__ >= 202311L, "Compiler lacks stdbit.h")' || \ | ||
+ 'static_assert(__STDC_VERSION_STDBIT_H__ >= 202311L && __STDC_VERSION__ >= 202311L, "Compiler lacks stdbit.h")' || \ | ||
add_cppflags '-I\$(SRC_PATH)/compat/stdbit' | ||
|
||
# Check if requested libraries were found. |
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
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
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
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
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,15 @@ | ||
see: https://www.illumos.org/issues/15657 | ||
void **item is not const in illumos before r151051 | ||
|
||
diff -wpruN --no-dereference '--exclude=*.orig' a~/plugin/auth_pam/auth_pam_base.c a/plugin/auth_pam/auth_pam_base.c | ||
--- a~/plugin/auth_pam/auth_pam_base.c 1970-01-01 00:00:00 | ||
+++ a/plugin/auth_pam/auth_pam_base.c 1970-01-01 00:00:00 | ||
@@ -128,7 +128,7 @@ static int conv(int n, const struct pam_ | ||
|
||
#define DO(X) if ((status = (X)) != PAM_SUCCESS) goto end | ||
|
||
-#if defined(SOLARIS) || defined(__sun) | ||
+#if (defined(SOLARIS) || defined(__sun)) && OOCEVER < 151051 | ||
typedef void** pam_get_item_3_arg; | ||
#else | ||
typedef const void** pam_get_item_3_arg; |
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
see: https://www.illumos.org/issues/15657 | ||
void **item is not const in illumos before r151051 | ||
|
||
diff -wpruN --no-dereference '--exclude=*.orig' a~/plugin/auth_pam/auth_pam_base.c a/plugin/auth_pam/auth_pam_base.c | ||
--- a~/plugin/auth_pam/auth_pam_base.c 1970-01-01 00:00:00 | ||
+++ a/plugin/auth_pam/auth_pam_base.c 1970-01-01 00:00:00 | ||
@@ -128,7 +128,7 @@ static int conv(int n, const struct pam_ | ||
|
||
#define DO(X) if ((status = (X)) != PAM_SUCCESS) goto end | ||
|
||
-#if defined(SOLARIS) || defined(__sun) | ||
+#if (defined(SOLARIS) || defined(__sun)) && OOCEVER < 151051 | ||
typedef void** pam_get_item_3_arg; | ||
#else | ||
typedef const void** pam_get_item_3_arg; |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ missing_concurrency.patch | |
08-dtrace-invalid-conversion.patch | ||
cfi.patch | ||
disable_dbug_docs.patch | ||
pam-illumos.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
Oops, something went wrong.