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

(-)artsc/CMakeLists.txt.orig (-2 / +4 lines)
Lines 17-24 Link Here
17
set( prefix ${CMAKE_INSTALL_PREFIX} )
17
set( prefix ${CMAKE_INSTALL_PREFIX} )
18
set( exec_prefix $prefix )
18
set( exec_prefix $prefix )
19
set( libdir ${LIB_INSTALL_DIR} )
19
set( libdir ${LIB_INSTALL_DIR} )
20
set( includedir ${INCLUDE_INSTALL_DIR} )
20
set( includedir ${CMAKE_INSTALL_PREFIX}/include/artsc )
21
set( LIBDL -l${DL_LIBRARIES} )
21
if( NOT "${DL_LIBRARIES}" STREQUAL "" )
22
  set( LIBDL -l${DL_LIBRARIES} )
23
endif( )
22
set( USE_THREADS )
24
set( USE_THREADS )
23
set( LIBPTHREAD ${CMAKE_THREAD_LIBS_INIT} )
25
set( LIBPTHREAD ${CMAKE_THREAD_LIBS_INIT} )
24
foreach( LIB ${GTHREAD2_LIBRARIES} )
26
foreach( LIB ${GTHREAD2_LIBRARIES} )
(-)artsc/artsc-config.in.orig (-1 / +1 lines)
Lines 18-24 Link Here
18
prefix=@prefix@
18
prefix=@prefix@
19
exec_prefix=@exec_prefix@
19
exec_prefix=@exec_prefix@
20
libdir=@libdir@
20
libdir=@libdir@
21
includedir=@includedir@c
21
includedir=@includedir@
22
libdl=@LIBDL@
22
libdl=@LIBDL@
23
23
24
flags=""
24
flags=""

Return to bug 2160