aboutsummaryrefslogtreecommitdiffstats
path: root/macosx-support-lib-patches/qt-fix-pc-files
diff options
context:
space:
mode:
Diffstat (limited to 'macosx-support-lib-patches/qt-fix-pc-files')
-rwxr-xr-xmacosx-support-lib-patches/qt-fix-pc-files21
1 files changed, 0 insertions, 21 deletions
diff --git a/macosx-support-lib-patches/qt-fix-pc-files b/macosx-support-lib-patches/qt-fix-pc-files
deleted file mode 100755
index 87dc3966d5..0000000000
--- a/macosx-support-lib-patches/qt-fix-pc-files
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-#
-# Fix the .pc files for versions of Qt installed from binary packages.
-#
-# Wireshark - Network traffic analyzer
-# By Gerald Combs <gerald@wireshark.org>
-# Copyright 2014 Gerald Combs
-#
-# SPDX-License-Identifier: GPL-2.0-or-later
-#
-# See bug QTBUG-35256 for the full painful story. Shorter version:
-# the macOS Qt packages provide the Qt components as frameworks, but
-# the .pc files don't generate the right CFLAGS/CXXFLAGS to make
-# that work, so autoconf doesn't work correctly.
-#
-if [ "$#" != 1 ]
-then
- echo "Usage: qt-fix-pc-files <top-level Qt directory>" 1>&1
- exit 1
-fi
-find "$1" -name "*.pc" -exec macosx-support-lib-patches/qt-fix-pc-file {} ";"