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

(-)../tdesvn.orig/ConfigureChecks.cmake (+2 lines)
Lines 119-124 Link Here
119
  endif(NOT APU_CONFIG)
119
  endif(NOT APU_CONFIG)
120
120
121
  EXEC_PROGRAM(${APR_CONFIG} ARGS "--includedir" OUTPUT_VARIABLE APR_INCLUDE_DIR_INT)
121
  EXEC_PROGRAM(${APR_CONFIG} ARGS "--includedir" OUTPUT_VARIABLE APR_INCLUDE_DIR_INT)
122
SET(APR_INCLUDE_DIRS ${APR_INCLUDE_DIR_INT})
123
122
  EXEC_PROGRAM(${APU_CONFIG} ARGS "--includedir" OUTPUT_VARIABLE APU_INCLUDE_DIR_INT)
124
  EXEC_PROGRAM(${APU_CONFIG} ARGS "--includedir" OUTPUT_VARIABLE APU_INCLUDE_DIR_INT)
123
  SET(APR_INCLUDE_DIR "${APR_INCLUDE_DIR_INT}" CACHE INTERNAL "")
125
  SET(APR_INCLUDE_DIR "${APR_INCLUDE_DIR_INT}" CACHE INTERNAL "")
124
  SET(APU_INCLUDE_DIR "${APU_INCLUDE_DIR_INT}" CACHE INTERNAL "")
126
  SET(APU_INCLUDE_DIR "${APU_INCLUDE_DIR_INT}" CACHE INTERNAL "")
(-)../tdesvn.orig/src/CMakeLists.txt (-1 / +1 lines)
Lines 25-31 Link Here
25
  ${CMAKE_SOURCE_DIR}/src/svnfrontend
25
  ${CMAKE_SOURCE_DIR}/src/svnfrontend
26
  ${CMAKE_SOURCE_DIR}/src/svnqt/cache
26
  ${CMAKE_SOURCE_DIR}/src/svnqt/cache
27
  ${SUBVERSION_INCLUDE_DIR}
27
  ${SUBVERSION_INCLUDE_DIR}
28
  /usr/include/apr-1.0
28
  ${APR_INCLUDE_DIRS}
29
)
29
)
30
30
31
link_directories(
31
link_directories(

Return to bug 916