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

(-)tqt-interface.orig//ConfigureChecks.cmake (-2 / +6 lines)
Lines 93-99 Link Here
93
    tde_message_fatal( "moc was NOT found.\n MOC_EXECUTABLE may not be set correctly." )
93
    tde_message_fatal( "moc was NOT found.\n MOC_EXECUTABLE may not be set correctly." )
94
  endif( )
94
  endif( )
95
else( )
95
else( )
96
  find_program( MOC_EXECUTABLE NAMES moc HINTS "${QT_BINARY_DIR}" )
96
  if( QT_VERSION STREQUAL "3" )
97
    find_program( MOC_EXECUTABLE NAMES moc-qt3 moc HINTS "${QT_BINARY_DIR}" )
98
  elseif( QT_VERSION STREQUAL "4" )
99
    find_program( MOC_EXECUTABLE NAMES moc-qt4 moc HINTS "${QT_BINARY_DIR}" )
100
  endif( )
97
  if( NOT MOC_EXECUTABLE )
101
  if( NOT MOC_EXECUTABLE )
98
    tde_message_fatal( "moc was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." )
102
    tde_message_fatal( "moc was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." )
99
  endif( )
103
  endif( )
Lines 129-135 Link Here
129
      tde_message_fatal( "uic was NOT found.\n MOC_EXECUTABLE may not be set correctly" )
133
      tde_message_fatal( "uic was NOT found.\n MOC_EXECUTABLE may not be set correctly" )
130
    endif( )
134
    endif( )
131
  else( )
135
  else( )
132
    find_program( UIC_EXECUTABLE NAMES uic HINTS "${QT_BINARY_DIR}" )
136
    find_program( UIC_EXECUTABLE NAMES uic-qt3 uic HINTS "${QT_BINARY_DIR}" )
133
    if( NOT UIC_EXECUTABLE )
137
    if( NOT UIC_EXECUTABLE )
134
      tde_message_fatal( "uic was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." )
138
      tde_message_fatal( "uic was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." )
135
    endif( )
139
    endif( )

Return to bug 523