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

(-)a/CMakeLists.txt (+10 lines)
Lines 23-28 set( VERSION 0.6.0 ) Link Here
23
23
24
include( FindPkgConfig )
24
include( FindPkgConfig )
25
include( CheckIncludeFile )
25
include( CheckIncludeFile )
26
include( CheckLibraryExists )
26
27
27
28
28
##### include our cmake modules #################
29
##### include our cmake modules #################
Lines 83-88 if( NOT LIBGLADE_FOUND ) Link Here
83
    tde_message_fatal( "libglade-2.0 are required, but not found on your system" )
84
    tde_message_fatal( "libglade-2.0 are required, but not found on your system" )
84
endif( NOT LIBGLADE_FOUND )
85
endif( NOT LIBGLADE_FOUND )
85
86
87
set( DL_LIBRARIES dl )
88
check_library_exists( ${DL_LIBRARIES} dlopen /lib HAVE_LIBDL )
89
if( NOT HAVE_LIBDL )
90
  unset( DL_LIBRARIES )
91
  check_function_exists( dlopen HAVE_DLOPEN )
92
  if( HAVE_DLOPEN )
93
    set( HAVE_LIBDL 1 )
94
  endif( HAVE_DLOPEN )
95
endif( NOT HAVE_LIBDL )
86
96
87
set( EXTRA_LIBRARIES "-lm -lpthread" )
97
set( EXTRA_LIBRARIES "-lm -lpthread" )
88
if( UNIX )
98
if( UNIX )
(-)a/src/CMakeLists.txt (-1 / +1 lines)
Lines 40-46 tde_add_library( Link Here
40
  ${target} SHARED
40
  ${target} SHARED
41
  VERSION 0.0.0
41
  VERSION 0.0.0
42
  SOURCES ${${target}_SRCS}
42
  SOURCES ${${target}_SRCS}
43
  LINK ${BACKEND_LIBRARIES} ${ZLIB_LIBRARIES} ${EXTRA_LIBRARIES}
43
  LINK ${BACKEND_LIBRARIES} ${ZLIB_LIBRARIES} ${DL_LIBRARIES} ${EXTRA_LIBRARIES}
44
  DESTINATION ${LIB_INSTALL_DIR}
44
  DESTINATION ${LIB_INSTALL_DIR}
45
)
45
)
46
46

Return to bug 2628