WSDG: Update docbook info
[metze/wireshark/wip.git] / macosx-support-lib-patches / qt-fix-pc-files
1 #! /bin/sh
2 #
3 # Fix the .pc files for versions of Qt installed from binary packages.
4 #
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 2014 Gerald Combs
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #
23 # See bug QTBUG-35256 for the full painful story.  Shorter version:
24 # the macOS Qt packages provide the Qt components as frameworks, but
25 # the .pc files don't generate the right CFLAGS/CXXFLAGS to make
26 # that work, so autoconf doesn't work correctly.
27 #
28 if [ "$#" != 1 ]
29 then
30         echo "Usage: qt-fix-pc-files <top-level Qt directory>" 1>&1
31         exit 1
32 fi
33 find "$1" -name "*.pc" -exec macosx-support-lib-patches/qt-fix-pc-file {} ";"