Commits
Michael Dickens authored 60febb0d791
1 + | --- configure.py.orig |
2 + | +++ configure.py |
3 + | |
4 + | if sys.platform == 'darwin': |
5 + | g = optparse.OptionGroup(p, title="MacOS X Configuration") |
6 + | g.add_option("--use-arch", action="append", metavar="ARCH", |
7 + | - dest="use_arch", choices=["i386", "x86_64", "ppc"], |
8 + | + dest="use_arch", choices=["i386", "x86_64", "ppc", "ppc64"], |
9 + | help="add ARCH to the list of architectures to use when " |
10 + | "running pyuic4 [default: system default]") |
11 + | p.add_option_group(g) |
12 + | |
13 + | qmake_archs.append('x86_64') |
14 + | elif a == 'ppc': |
15 + | qmake_archs.append('ppc') |
16 + | + elif a == 'ppc64': |
17 + | + qmake_archs.append('ppc64') |
18 + | |
19 + | return 'CONFIG += %s\n' % ' '.join(qmake_archs) |
20 + |