summaryrefslogtreecommitdiff
path: root/libs/ffvpx/libavcodec/moz.build
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-06-07 20:20:19 -0500
committerMatt A. Tobin <email@mattatobin.com>2022-06-07 20:20:19 -0500
commit878ab758d5d4c1ef7badf2bc20ebc7c67dc2165b (patch)
tree3683d6df35e3618c0e7b456de7c749ca4c8c21a6 /libs/ffvpx/libavcodec/moz.build
parenta621951327b0c19c0c24dfd9fd973f7bd13ae68f (diff)
parentcfb9884423faf741de03c5fcc72bf9ac8c6ada4d (diff)
downloadaura-central-878ab758d5d4c1ef7badf2bc20ebc7c67dc2165b.tar.gz
Merge branch 'TRUNK' into ARE-5.0
Diffstat (limited to 'libs/ffvpx/libavcodec/moz.build')
-rw-r--r--libs/ffvpx/libavcodec/moz.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ffvpx/libavcodec/moz.build b/libs/ffvpx/libavcodec/moz.build
index 671da54db..01327e912 100644
--- a/libs/ffvpx/libavcodec/moz.build
+++ b/libs/ffvpx/libavcodec/moz.build
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-# Due to duplicate file names, we compile libavutil/x86 in its own
+# Due to duplicate file names, we compile libavcodec/x86 in its own
# moz.build file.
if CONFIG['FFVPX_ASFLAGS']:
DIRS += ['x86']
@@ -33,6 +33,7 @@ SOURCES += [
'null_bsf.c',
'options.c',
'parser.c',
+ 'parsers.c',
'profiles.c',
'pthread.c',
'pthread_frame.c',
@@ -66,6 +67,9 @@ SOURCES += [
SYMBOLS_FILE = 'avcodec.symbols'
NO_VISIBILITY_FLAGS = True
+if CONFIG['GNU_CXX']:
+ CXXFLAGS += ['-Wno-attributes']
+
# GCC 10 defaults -fno-common, we don't care to solve this "properly" yet
# so use GCC < 10 behavior.
if CONFIG['GNU_CC'] and CONFIG['CC_VERSION'] >= '10.0.0':