mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-19 19:46:16 +08:00
On RHEL8, openssl1.x.x is default, and openssl3 pc files are with the suffix "3", so FFmpeg cannot find them. The patch fixes pc files so that ffmpeg can find them. Task-number: QTBUG-130257 Change-Id: I5a95daae0a78aadede109535b2823483bfcbc09d Pick-to: 6.8 Reviewed-by: Tim Blechmann <tim.blechmann@qt.io> Reviewed-by: Pavel Dubsky <pavel.dubsky@qt.io> Reviewed-by: Jøger Hansegård <joger.hansegard@qt.io>
9 lines
474 B
Bash
Executable File
9 lines
474 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#Copyright (C) 2023 The Qt Company Ltd
|
|
#SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# TODO: investigate why the FFmpeg plugin can't find shared FFmpeg on rhel-8.8
|
|
source "${BASH_SOURCE%/*}/../common/unix/install-ffmpeg.sh" "linux"
|
|
source "${BASH_SOURCE%/*}/../common/unix/install-ffmpeg-android.sh" "android-x86_64"
|
|
source "${BASH_SOURCE%/*}/../common/unix/install-ffmpeg-android.sh" "android-x86"
|