By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2130
Collapse All | Expand All

(-)a/configure.py (-1 / +3 lines)
Lines 108-114 def usage(rcode = 2): Link Here
108
    sys.stdout.write("  -a tag  explicitly enable the qtpe module\n")
108
    sys.stdout.write("  -a tag  explicitly enable the qtpe module\n")
109
    sys.stdout.write("  -b dir  where pyuic and pylupdate will be installed [default %s]\n" % opt_pyqtbindir)
109
    sys.stdout.write("  -b dir  where pyuic and pylupdate will be installed [default %s]\n" % opt_pyqtbindir)
110
    sys.stdout.write("  -c      concatenate each module's C/C++ source files\n")
110
    sys.stdout.write("  -c      concatenate each module's C/C++ source files\n")
111
    sys.stdout.write("  -d dir  where the PyTQt modules will be installed [default %\ns]" % opt_pyqtmoddir)
111
    sys.stdout.write("  -d dir  where the PyTQt modules will be installed [default %s]\n" % opt_pyqtmoddir)
112
    sys.stdout.write("  -e lib  explicitly specify the python library\n")
112
    sys.stdout.write("  -e lib  explicitly specify the python library\n")
113
    sys.stdout.write("  -f      keep any existing features file (when cross-compiling) [default remove]\n")
113
    sys.stdout.write("  -f      keep any existing features file (when cross-compiling) [default remove]\n")
114
    sys.stdout.write("  -g dir  where the TQt qconfig.h file can be found [default TQt include directory]\n")
114
    sys.stdout.write("  -g dir  where the TQt qconfig.h file can be found [default TQt include directory]\n")
Lines 1343-1348 def main(argv): Link Here
1343
    global opt_vendorcheck, opt_vendincdir, opt_vendlibdir
1343
    global opt_vendorcheck, opt_vendincdir, opt_vendlibdir
1344
    global opt_libpython
1344
    global opt_libpython
1345
1345
1346
    opt_libpython = None
1347
1346
    for opt, arg in optlist:
1348
    for opt, arg in optlist:
1347
        if opt == "-h":
1349
        if opt == "-h":
1348
            usage(0)
1350
            usage(0)

Return to bug 2130