File: qt-fix-pc-files

package info (click to toggle)
wireshark 4.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 331,868 kB
  • sloc: ansic: 2,972,126; cpp: 123,960; xml: 100,952; python: 55,025; perl: 24,371; lex: 7,164; sh: 5,792; pascal: 4,330; makefile: 145; ruby: 114; objc: 70; tcl: 35
file content (21 lines) | stat: -rwxr-xr-x 668 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /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 tools/macos-setup-patches/qt-fix-pc-file {} ";"