diff options
author | trav90 <travawine@palemoon.org> | 2023-09-20 14:11:15 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2023-09-20 17:17:43 -0500 |
commit | 85734b9adf31c8455f372e67f27ee115785665fc (patch) | |
tree | 12dee65e6467e8f1605ac25789e9c4f53b31183d /config | |
parent | 2b46202164c33e861b919bd916c2288259047deb (diff) | |
download | uxp-85734b9adf31c8455f372e67f27ee115785665fc.tar.gz |
Issue #2311 - Part 6 - Remove now unused libav source files
Diffstat (limited to 'config')
-rw-r--r-- | config/external/lgpllibs/lgpllibs.def | 10 | ||||
-rw-r--r-- | config/external/lgpllibs/moz.build | 8 |
2 files changed, 2 insertions, 16 deletions
diff --git a/config/external/lgpllibs/lgpllibs.def b/config/external/lgpllibs/lgpllibs.def deleted file mode 100644 index 359d97e714..0000000000 --- a/config/external/lgpllibs/lgpllibs.def +++ /dev/null @@ -1,10 +0,0 @@ -; This Source Code Form is subject to the terms of the Mozilla Public -; 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/. - -LIBRARY lgpllibs.dll - -EXPORTS - av_rdft_init - av_rdft_calc - av_rdft_end diff --git a/config/external/lgpllibs/moz.build b/config/external/lgpllibs/moz.build index aecb9b1bd1..be913e933e 100644 --- a/config/external/lgpllibs/moz.build +++ b/config/external/lgpllibs/moz.build @@ -4,14 +4,10 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. # The lgpllibs library stores symbols from third-party LGPL licensed libraries, -# such as libav and libsoundtouch. It fulfills the requirement of dynamically -# linking these symbols into gecko. +# such as libsoundtouch. It fulfills the requirement of dynamically linking +# these symbols into Goanna. # # Any library added here should also be reflected in the about:license page. GeckoSharedLibrary('lgpllibs', linkage=None) SHARED_LIBRARY_NAME = 'lgpllibs' - -if CONFIG['MOZ_LIBAV_FFT']: - DIRS += ['/media/libav'] - DEFFILE = SRCDIR + '/lgpllibs.def' |