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 1151
Collapse All | Expand All

(-)a/qmake/generators/unix/unixmake2.cpp (+5 lines)
Lines 1543-1553 UnixMakefileGenerator::writePkgConfigFile() // ### does make sense only for Link Here
1543
    TQString includeDir = project->first("QMAKE_PKGCONFIG_INCDIR");
1543
    TQString includeDir = project->first("QMAKE_PKGCONFIG_INCDIR");
1544
    if(includeDir.isEmpty())
1544
    if(includeDir.isEmpty())
1545
	includeDir = prefix + "/include";
1545
	includeDir = prefix + "/include";
1546
    TQString pluginsDir = project->first("QMAKE_PKGCONFIG_PLUGINS");
1547
    if(pluginsDir.isEmpty())
1548
	pluginsDir = prefix + "/plugins";
1546
1549
1547
    t << "prefix=" << prefix << endl;
1550
    t << "prefix=" << prefix << endl;
1548
    t << "exec_prefix=${prefix}\n"
1551
    t << "exec_prefix=${prefix}\n"
1549
      << "libdir=" << pkgConfigFixPath(libDir) << "\n"
1552
      << "libdir=" << pkgConfigFixPath(libDir) << "\n"
1550
      << "includedir=" << pkgConfigFixPath(includeDir) << endl;
1553
      << "includedir=" << pkgConfigFixPath(includeDir) << endl;
1554
    // non-standard entry. Provides path for plugins
1555
    t << "pluginsdir=" << pkgConfigFixPath(pluginsDir) << endl;
1551
    // non-standard entry. Provides useful info normally only
1556
    // non-standard entry. Provides useful info normally only
1552
    // contained in the internal .qmake.cache file
1557
    // contained in the internal .qmake.cache file
1553
    t << varGlue("CONFIG", "qt_config=", " ", "") << endl << endl;
1558
    t << varGlue("CONFIG", "qt_config=", " ", "") << endl << endl;
(-)a/src/qt.pro (+1 lines)
Lines 177-182 unix { Link Here
177
   CONFIG     += create_libtool create_pc
177
   CONFIG     += create_libtool create_pc
178
   QMAKE_PKGCONFIG_LIBDIR = $$target.path
178
   QMAKE_PKGCONFIG_LIBDIR = $$target.path
179
   QMAKE_PKGCONFIG_INCDIR = $$headers.path
179
   QMAKE_PKGCONFIG_INCDIR = $$headers.path
180
   QMAKE_PKGCONFIG_PLUGINS = $$plugins.path
180
}
181
}
181
182
182
wince-* {
183
wince-* {

Return to bug 1151