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

(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1225-1231 Link Here
1225
</listitem>
1225
</listitem>
1226
</varlistentry>
1226
</varlistentry>
1227
1227
1228
<varlistentry><term>$<envar>KDE_IS_PRELINKED</envar></term><listitem><para>
1228
<varlistentry><term>$<envar>TDE_IS_PRELINKED</envar></term><listitem><para>
1229
(Since &kde; 3.2) - Set this variable to indicate that you have prelinked
1229
(Since &kde; 3.2) - Set this variable to indicate that you have prelinked
1230
your &kde; binaries and libraries. This will turn off
1230
your &kde; binaries and libraries. This will turn off
1231
<command>tdeinit</command>.</para>
1231
<command>tdeinit</command>.</para>
(-)tdelibs/kinit/kinit.cpp (-2 / +2 lines)
Lines 590-596 Link Here
590
        exitWithErrorMsg(errorMsg);
590
        exitWithErrorMsg(errorMsg);
591
     }
591
     }
592
592
593
     if ( getenv("KDE_IS_PRELINKED") && !execpath.isEmpty() && !launcher)
593
     if ( getenv("TDE_IS_PRELINKED") && !execpath.isEmpty() && !launcher)
594
         libpath.truncate(0);
594
         libpath.truncate(0);
595
595
596
     if ( !libpath.isEmpty() )
596
     if ( !libpath.isEmpty() )
Lines 1804-1810 Link Here
1804
      }
1804
      }
1805
   }
1805
   }
1806
#ifndef __CYGWIN__
1806
#ifndef __CYGWIN__
1807
   if (!d.suicide && !getenv("KDE_IS_PRELINKED"))
1807
   if (!d.suicide && !getenv("TDE_IS_PRELINKED"))
1808
   {
1808
   {
1809
      TQString konq = locate("lib", "libkonq.la", s_instance);
1809
      TQString konq = locate("lib", "libkonq.la", s_instance);
1810
      if (!konq.isEmpty())
1810
      if (!konq.isEmpty())

Return to bug 860