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

(-)b/tdefile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake (-3 / +3 lines)
Lines 10-25 Link Here
10
set( CMAKE_REQUIRED_INCLUDES ${DBUS_TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS} ${QT_INCLUDE_DIRS} ${POPPLER_INCLUDE_DIRS})
10
set( CMAKE_REQUIRED_INCLUDES ${DBUS_TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS} ${QT_INCLUDE_DIRS} ${POPPLER_INCLUDE_DIRS})
11
set( CMAKE_REQUIRED_LIBRARIES ${DBUS_TQT_LDFLAGS} ${TQT_LDFLAGS} ${QT_LDFLAGS} ${POPPLER_LDFLAGS} )
11
set( CMAKE_REQUIRED_LIBRARIES ${DBUS_TQT_LDFLAGS} ${TQT_LDFLAGS} ${QT_LDFLAGS} ${POPPLER_LDFLAGS} )
12
check_cxx_source_compiles("
12
check_cxx_source_compiles("
13
  #include <poppler/PSOutputDev.h>
13
  #include <PSOutputDev.h>
14
  int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, (XRef*)0, (Catalog*)0, NULL, 0, 0, psModePS, a, b); } "
14
  int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, (XRef*)0, (Catalog*)0, NULL, 0, 0, psModePS, a, b); } "
15
  HAVE_POPPLER_016 )
15
  HAVE_POPPLER_016 )
16
check_cxx_source_compiles("
16
check_cxx_source_compiles("
17
  #include <poppler/PSOutputDev.h>
17
  #include <PSOutputDev.h>
18
  int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, NULL, 0, 0, psModePS, a, b); } "
18
  int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, NULL, 0, 0, psModePS, a, b); } "
19
  HAVE_POPPLER_020 )
19
  HAVE_POPPLER_020 )
20
check_cxx_source_compiles("
20
check_cxx_source_compiles("
21
  #include <vector>
21
  #include <vector>
22
  #include <poppler/PSOutputDev.h>
22
  #include <PSOutputDev.h>
23
  int main(int, char**) { int a; int b; std::vector<int> p; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, NULL, p, psModePS, a, b); } "
23
  int main(int, char**) { int a; int b; std::vector<int> p; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, NULL, p, psModePS, a, b); } "
24
  HAVE_POPPLER_030 )
24
  HAVE_POPPLER_030 )
25
tde_restore( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES )
25
tde_restore( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES )
(-)b/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt (-1 / +2 lines)
Lines 26-31 Link Here
26
26
27
link_directories(
27
link_directories(
28
  ${TQT_LIBRARY_DIRS}
28
  ${TQT_LIBRARY_DIRS}
29
  ${POPPLER_LIBRARY_DIRS}
29
)
30
)
30
31
31
##### pc files ##################################
32
##### pc files ##################################
Lines 49-54 Link Here
49
    poppler-page-transition.cc poppler-page-transition-private.h
50
    poppler-page-transition.cc poppler-page-transition-private.h
50
    poppler-private.cc poppler-private.h
51
    poppler-private.cc poppler-private.h
51
  VERSION 0.0.0
52
  VERSION 0.0.0
52
  LINK poppler ${TQT_LIBRARIES}
53
  LINK ${POPPLER_LIBRARIES} ${TQT_LIBRARIES}
53
  DESTINATION ${LIB_INSTALL_DIR}
54
  DESTINATION ${LIB_INSTALL_DIR}
54
)
55
)

Return to bug 2489